get_simple_optimal_profile
calculates optimal profile using Load~TOV profile. This is done by
assuming same 'surface' under the profile and getting the profile tha maximize TOV at bodyweight
get_simple_optimal_profile(L0, TOV0, bodyweight, gravity_const = 9.81)
L0 | Numeric vector |
---|---|
TOV0 | Numeric vector |
bodyweight | Numeric vector |
gravity_const | Numeric vector. Default is 9.81 |
List
get_simple_optimal_profile(L0 = 250, TOV0 = 3, bodyweight = 75)#> $L0 #> [1] 250 #> #> $TOV0 #> [1] 3 #> #> $Sfv #> [1] -83.33333 #> #> $Sfv_rel #> [1] -1.111111 #> #> $take_off_velocity #> [1] 2.1 #> #> $height #> [1] 0.2247706 #> #> $optimal_L0 #> [1] 150 #> #> $optimal_TOV0 #> [1] 5 #> #> $optimal_Sfv #> [1] -30 #> #> $optimal_Sfv_rel #> [1] -0.4 #> #> $optimal_take_off_velocity #> [1] 2.5 #> #> $optimal_height #> [1] 0.3185525 #> #> $Sfv_perc #> [1] 277.7778 #> #> $FV_imbalance #> [1] 177.7778 #> #> $probe_IMB #> [1] 256.6667 #>