|
1 | 1 | balanced_field_meta = OrderedDict( |
2 | 2 | :grid_size => 200, |
3 | 3 | :parameters => ( |
4 | | - t0 = 0.0, |
5 | | - m = 79015.8, # mass (kg) |
6 | | - g = 9.80665, # gravity (m/s^2) |
7 | | - ρ = 1.225, # air density (kg/m^3) |
8 | | - S = 124.7, # surface (m^2) |
9 | | - CD0 = 0.03, # zero-lift drag coefficient |
10 | | - AR = 9.45, # aspect ratio |
11 | | - e = 0.801, # Oswald efficiency |
12 | | - CL0 = 0.5, # zero-alpha lift coefficient |
13 | | - CL_max = 2.0, # max lift coefficient |
14 | | - h_w = 1.0, # height of wing above CoG (m) |
15 | | - span = 35.7, # wingspan (m) |
16 | | - α_max = 0.1745, # alpha at CL_max (10 degrees in rad) |
17 | | - T = 120102.0, # thrust (N) - one engine out |
18 | | - r_t0 = 600.0, # initial range (m) at V1 |
19 | | - v_t0 = 70.0, # initial velocity (m/s) at V1 |
20 | | - h_t0 = 0.0, # initial altitude (m) |
21 | | - γ_t0 = 0.0, # initial flight path angle (rad) |
22 | | - h_tf = 10.668, # final altitude (35 ft in m) |
23 | | - γ_tf = 0.0873, # final flight path angle (5 degrees in rad) |
24 | | - v_min = 0.0, |
25 | | - v_max = 100.0, |
26 | | - α_min = -0.1745, # -10 degrees |
27 | | - α_max_ctrl = 0.2618, # 15 degrees |
| 4 | + t0=0.0, |
| 5 | + m=79015.8, # mass (kg) |
| 6 | + g=9.80665, # gravity (m/s^2) |
| 7 | + ρ=1.225, # air density (kg/m^3) |
| 8 | + S=124.7, # surface (m^2) |
| 9 | + CD0=0.03, # zero-lift drag coefficient |
| 10 | + AR=9.45, # aspect ratio |
| 11 | + e=0.801, # Oswald efficiency |
| 12 | + CL0=0.5, # zero-alpha lift coefficient |
| 13 | + CL_max=2.0, # max lift coefficient |
| 14 | + h_w=1.0, # height of wing above CoG (m) |
| 15 | + span=35.7, # wingspan (m) |
| 16 | + α_max=0.1745, # alpha at CL_max (10 degrees in rad) |
| 17 | + T=120102.0, # thrust (N) - one engine out |
| 18 | + r_t0=600.0, # initial range (m) at V1 |
| 19 | + v_t0=70.0, # initial velocity (m/s) at V1 |
| 20 | + h_t0=0.0, # initial altitude (m) |
| 21 | + γ_t0=0.0, # initial flight path angle (rad) |
| 22 | + h_tf=10.668, # final altitude (35 ft in m) |
| 23 | + γ_tf=0.0873, # final flight path angle (5 degrees in rad) |
| 24 | + v_min=0.0, |
| 25 | + v_max=100.0, |
| 26 | + α_min=-0.1745, # -10 degrees |
| 27 | + α_max_ctrl=0.2618, # 15 degrees |
28 | 28 | ), |
29 | 29 | ) |
0 commit comments