Skip to content

Commit

Permalink
Slightly increased reverse thrust force based on feedback of stopping…
Browse files Browse the repository at this point in the history
… distances
  • Loading branch information
aguther committed Apr 7, 2024
1 parent 171f496 commit ff4112d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ impl ReverserThrust {
fn reverse_thrust_ratio_from_n1(engine_n1: Ratio) -> Ratio {
let n1_breakpoints = [0., 15., 20., 50., 55., 100.];

let reverse_thrust_ratio = [0., 0., 0.04, 0.15, 0.15, 0.15];
let reverse_thrust_ratio = [0., 0., 0.04, 0.16, 0.16, 0.16];

Ratio::new::<ratio>(interpolation(
&n1_breakpoints,
Expand Down

0 comments on commit ff4112d

Please sign in to comment.