get_simple_profile take the rofile_data and performs Load~TOV profile and returns the optimal profile using get_simple_optimal_profile function

get_simple_profile(profile_data)

Arguments

profile_data

Data frame returned from vj_profile function

Value

List returned by get_simple_optimal_profile function

Examples

fv_profile <- vj_profile(mass = 75) get_simple_profile(fv_profile)
#> $L0 #> [1] 253.9068 #> #> $TOV0 #> [1] 3.646926 #> #> $Sfv #> [1] -69.62216 #> #> $Sfv_rel #> [1] -0.9282954 #> #> $take_off_velocity #> [1] 2.569682 #> #> $height #> [1] 0.336558 #> #> $optimal_L0 #> [1] 150 #> #> $optimal_TOV0 #> [1] 6.173195 #> #> $optimal_Sfv #> [1] -24.2986 #> #> $optimal_Sfv_rel #> [1] -0.3239813 #> #> $optimal_take_off_velocity #> [1] 3.086598 #> #> $optimal_height #> [1] 0.4855803 #> #> $Sfv_perc #> [1] 286.5274 #> #> $FV_imbalance #> [1] 186.5274 #> #> $probe_IMB #> [1] 262.3967 #>