Commercial Aircraft Range Maximization by Differential Inclusion#
In this example we seek to maximize the range of a commercial aircraft flying at a constant Mach number with a fixed initial fuel load. The initial and final altitudes are constrained to 10000 ft (that is, in this simplified example we’re ignoring the aircraft behavior near the ground).
This example is simplified in several ways. The Mach number is fixed at 0.8. When only considering fuel burn, the aircraft will tend to fly slower to conserve fuel, ignoring the running costs of being airborne.
For a more detailed optimization of commercial aircraft performance, see Betts [CBC95].
Differential Inclusion#
In this case we also use the steady flight assumption to allow the problem to be parameterized with a different control set. Rather than providing throttle/thrust and angle of attack as control variables, we use a differential inclusion approach. Whereas altitude and velocity are often treated as state variables to be integrated, here we take a slightly different approach.
Rather than using the differential equations to compute rates for the flight path angle and true airspeed, we use a nonlinear solver to determine the alpha and thrust time-history which is needed to make the given altitude and airspeed time-history possible. This technique is known as differential inclusion. It was demonstrated by Seywald [CSey94]. Since the collocation techniques in Dymos are based on polynomial approximations, rates of the control variables can be easily calculated, which can then be applied to the reordered dynamics equations to solve for angle of attack and thrust.
The use of collocation/psuedospectral techniques in solving problems via differential inclusion has been examined by Fahroo and Ross [CFR01] and Kumar and Seywald [CKS96]. Since the differential inclusion approach demonstrated here relies on nonlinear solvers running within the ODE model, obtaining accurate derivatives is paramount. Computing derivatives with finite differences in the presence of nonlinear solvers can lead to inaccurate derivatives based on the properties of the solver. With OpenMDAO’s unified derivatives framework, the sensitivity to solver tolerances is greatly reduced.
Pitfalls of Differential Inclusion#
Differential inclusion works well in this case but it is highly dependent on the parameterization of the problem. For instance, it is possible for the optimizer to suggest a flight profile that requires thrust well beyond the capabilities of the vehicle. In our case, the throttle parameter \(\tau\) is path constrained within the optimizer, so that the optimizer can make the solution physically attainable by our model.
We have two options for how to tackle this problem. We could specify altitude as a control variable, and use it’s approximate derivative (\(alt\_rate\)) to provide the altitude rate for the flight equilibrium conditions. In practice, however, this noisy derivative of altitude can cause numerical difficulties. Other times, the optimizer will shape the control to satisfy our equilibrium conditions at the collocation nodes but be wildly wrong in between these nodes. One simple way to get around this is to still integrate altitude, but to provide \(climb\_rate\) as the control variable. This makes it easy to constraint \(climb\_rate\) with bounds constraints, and the time-history of altitude will be smoother since it is the time integral of the rate of climb.
Solver Options#
In general, openmdao.api.AnalysisError should be raised when the design variables provided by the optimizer result in nonconvergence of the solvers. This informs pyoptsparse to backtrack along its line search for a solution. This error can be raised by the compute method of a component. The nonlinear solver can also raise this error if it fails to converge by setting the following options:
self.nonlinear_solver.options['maxiter'] = 150
self.nonlinear_solver.options['err_on_maxiter'] = True
In the course of solving, an outer NewtonSolver won’t necessarily force subsystems to be solved, instead relying on the derivative at the at the previous solution. In the context of OpenMDAO, even explicit components constitute subsystems. This can lead to poorly converged solutions.
Setting the solve_subsystems option to True will force subsystems to be updated, making sure that all derivative information is up-to-date.
self.nonlinear_solver.options['solve_subsystems'] = True
self.nonlinear_solver.options['max_sub_solves'] = 10
The Impact of Choice of Transcription#
The high-order Gauss-Lobatto method used by Dymos evaluates the ordinary differential equations in a two-step process. First, the ODEs are evaluated at the state discretization nodes. Using the state values and derivatives, values and rates at the collocation nodes are then interpolated. If a large rate is found at one of the state discretization nodes, the interpolation at the collocation node can be outside of the expected range, leading to nonconvergence of solvers within the ODEs.
There is also an overhead cost to invoking solvers. While differential inclusion reduces the number of design variables for the optimizer, it also slows down each evaluation of the ODE somewhat. Since evaluating the collocation constraints in the Gauss-Lobatto method requires two evaluations of the ODE, it typically suffers greater slowdown that the Radau Pseudospectral method, which evaluates the defects of the ODE with a single evaluation that encompasses all the nodes.
For these reasons the Radau Pseudospectral transcription is typically preferable when using a differential inclusion approach to problems.
Problem Formulation#
State Variables#
Name |
Description |
Fixed Initial Value |
Fixed Final Value |
---|---|---|---|
range |
distance flown along ground |
True (0 NM) |
False |
mass_fuel |
mass of fuel aboard aircraft |
True (30000 lbm) |
True (0 lbm) |
alt |
aircraft altitude |
True (10000 ft) |
True (10000 ft) |
Dynamic Controls#
Name |
Description |
Optimized |
Fixed Initial Value |
Fixed Final Value |
---|---|---|---|---|
climb_rate |
aircraft rate of climb |
True |
False |
False |
Parameters#
Name |
Description |
Optimized |
---|---|---|
mach |
mach number |
False (0.8) |
S |
aerodynamic reference area |
False (427.8 m**2) |
mass_empty |
aircraft empty mass |
False (330693.393 lbm) |
mass_payload |
aircraft payload mass |
False (74100 lbm) |
Objective#
Name |
Description |
Location |
Minimized or Maximized |
---|---|---|---|
r |
range |
final |
Maximized |
Nonlinear Path Constraints#
Name |
Description |
Lower |
Upper |
---|---|---|---|
tau |
engine throttle parameter |
0.01 |
1.0 |
Nonlinear Boundary Constraints#
None
Models#
Atmosphere#
This problem uses an analytic fit to the 1976 standard atmosphere.
Name |
Description |
Input or Output |
---|---|---|
alt |
altitude (m) |
input |
pres |
static pressure (Pa) |
output |
temp |
temperature (K) |
output |
sos |
speed of sound (m/s) |
output |
rho |
density (kg/m**3) |
output |
True Airspeed#
TrueAirspeedComp uses the Mach number, provided as a control, and the speed of sound from the atmosphere model to compute the true airspeed of the aircraft.
Name |
Description |
Input or Output |
---|---|---|
mach |
Mach number |
input |
sos |
speed of sound (m/s) |
input |
TAS |
true airspeed (m/s) |
output |
Flight Path Angle#
SteadyFlightPathAngleComp uses the true airspeed and the climb rate, obtained by differentiating the altitude time history at the nodes, to compute the flight path angle.
Name |
Description |
Input or Output |
---|---|---|
TAS |
true airspeed (m/s) |
input |
alt_rate |
climb rate (m/s) |
input |
gamma |
flight path angle (rad) |
output |
Range Rate#
RangeRateComp uses the true airspeed and the flight path angle to determine the velocity projected along the ground. This is the derivative of the state variable range.
Name |
Description |
Input or Output |
---|---|---|
TAS |
true airspeed (m/s) |
input |
gamma |
flight path angle (rad) |
input |
dXdt:range |
range rate (m/s) |
output |
Mass#
The component MassComp defined in
mass_comp.py
computes the aircraft total mass based on
its empty mass, payload mass, and current fuel mass. It also computes
total weight which simplifies some equations later on.
Name |
Description |
Input or Output |
---|---|---|
mass_empty |
aircraft empty mass (kg) |
input |
mass_payload |
payload mass (kg) |
input |
mass_fuel |
fuel mass (kg) |
input |
mass_total |
total aircraft mass (kg) |
output |
W_total |
total aircraft weight (N) |
output |
Dynamic Pressure#
The DynamicPressureComp computes the dynamic pressure from true airspeed and atmospheric density.
Name |
Description |
Input or Output |
---|---|---|
TAS |
true airspeed (m/s) |
input |
rho |
atmospheric density (kg/m**3) |
input |
q |
dynamic pressure (Pa) |
output |
Aerodynamics#
The aerodynamics group computes the aerodynamic coefficients and forces on the vehicle. It consists of an interpolation component which outputs lift, drag, and moment coefficients as a function of Mach number, angle of attack, altitude, and tail rotation angle. A second component then uses these coefficients, along with dynamic pressure and aerodynamic reference area, to compute the lift and drag forces on the vehicle.
The aerodynamics group resides within the flight equilibrium group. As that group iterates to find the combination of thrust coefficient, angle of attack, and tail rotation angle, aerodynamics needs to update the values of the interpolated coefficients and resulting forces.
Organizationally speaking, we logically could have put the dynamic pressure component within the aerodynamics group. However, since that group doesn’t need to be updated with changes in alpha and tail angle, it’s more efficient to leave it outside of flight equilibrium group.
Name |
Description |
Input or Output |
---|---|---|
mach |
mach number |
input |
alt |
altitude (m) |
input |
alpha |
angle of attack (deg) |
input |
eta |
tail rotation angle (deg) |
input |
CL |
lift coefficient |
output |
CD |
drag coefficient |
output |
CM |
moment coefficient |
output |
L |
lift force (N) |
output |
D |
drag force (N) |
output |
Note
This example uses openmdao.api.MetaModelStructuredComp to interpolate aerodynamic properties of the vehicle. This component is somewhat easier to use since it is distributed as part of OpenMDAO, but it can be significantly slower than alternatives such as SMT.
Flight Equilibrium#
The steady flight equilibrium group uses balances to solve for the angle of attack and tail plane rotation angle such that the aircraft is in steady flight (the rates of change in flight path angle and true airspeed are zero) and the aerodynamic moment in the pitch axis is zero.
Of course, in reality the vehicle will accelerate, but the flight profile being modeled is so benign that assuming steady flight at discrete points (nodes) in the trajectory is not terribly inaccurate.
The thrust necessary for steady flight is computed by balancing the drag equation
The lift coefficient required for steady flight is found by balancing lift and weight:
Using coefficients in the balance equations is better scaled from a numerical standpoint.
Propulsion#
Having determined the thrust, the propulsion group then computes the rate of fuel burn. In addition, by normalizing thrust at any point by the maximum possible thrust, we obtain the throttle parameter \(\tau\). The propulsion group uses a number of components to perform these calculations.
Maximum thrust is computed by multiplying sea-level thrust by the ratio of pressure to sea-level atmospheric pressure.
The throttle parameter is then the ratio current thrust to maximum possible thrust.
The thrust specific fuel consumption is computed as follows:
Finally, fuel burn rate is:
The ODE System: aircraft_ode.py#
class AircraftODE(om.Group):
def initialize(self):
self.options.declare('num_nodes', types=int,
desc='Number of nodes to be evaluated in the RHS')
def setup(self):
nn = self.options['num_nodes']
self.add_subsystem(name='mass_comp',
subsys=MassComp(num_nodes=nn),
promotes_inputs=['mass_fuel'])
self.connect('mass_comp.W_total', 'flight_equilibrium.W_total')
self.add_subsystem(name='atmos',
subsys=USatm1976Comp(num_nodes=nn),
promotes_inputs=[('h', 'alt')])
self.connect('atmos.pres', 'propulsion.pres')
self.connect('atmos.sos', 'tas_comp.sos')
self.connect('atmos.rho', 'q_comp.rho')
self.add_subsystem(name='tas_comp',
subsys=TrueAirspeedComp(num_nodes=nn))
self.connect('tas_comp.TAS',
('gam_comp.TAS', 'q_comp.TAS', 'range_rate_comp.TAS'))
self.add_subsystem(name='gam_comp',
subsys=SteadyFlightPathAngleComp(num_nodes=nn))
self.connect('gam_comp.gam', ('flight_equilibrium.gam', 'range_rate_comp.gam'))
self.add_subsystem(name='q_comp',
subsys=DynamicPressureComp(num_nodes=nn))
self.connect('q_comp.q', ('aero.q', 'flight_equilibrium.q', 'propulsion.q'))
self.add_subsystem(name='flight_equilibrium',
subsys=SteadyFlightEquilibriumGroup(num_nodes=nn),
promotes_inputs=['aero.*', 'alt'],
promotes_outputs=['aero.*'])
self.connect('flight_equilibrium.CT', 'propulsion.CT')
self.add_subsystem(name='propulsion', subsys=PropulsionGroup(num_nodes=nn),
promotes_inputs=['alt'])
self.add_subsystem(name='range_rate_comp', subsys=RangeRateComp(num_nodes=nn))
# We promoted multiple inputs to the group named 'alt'.
# In order to automatically create a source variable for 'alt', we must specify their units
# since they have different units in different components.
self.set_input_defaults('alt', val=np.ones(nn,), units='m')
In this case the system has only two integrated states: range and mass_fuel. There are six parameters. Two of them (alt and climb_rate) will be varied dynamically in the phase The other four (mach, S, mass_empty, and mass_payload), will be set to fixed values as non-optimized parameters. More details on the various models involved can be found in the examples code.
Building the problem#
In the following code we define and solve the optimal control problem. Note that we demonstrate the use of externally-connected design parameters in this case. The four parameters are connected to a source provided by the assumptions IndepVarComp.
import openmdao.api as om
import dymos as dm
from dymos.examples.aircraft_steady_flight.aircraft_ode import AircraftODE
from dymos.utils.lgl import lgl
p = om.Problem(model=om.Group())
p.driver = om.pyOptSparseDriver()
p.driver.options['optimizer'] = 'IPOPT'
p.driver.opt_settings['print_level'] = 0
p.driver.declare_coloring()
num_seg = 15
seg_ends, _ = lgl(num_seg + 1)
traj = p.model.add_subsystem('traj', dm.Trajectory())
phase = traj.add_phase('phase0',
dm.Phase(ode_class=AircraftODE,
transcription=dm.Radau(num_segments=num_seg,
segment_ends=seg_ends,
order=3, compressed=False)))
# Pass Reference Area from an external source
assumptions = p.model.add_subsystem('assumptions', om.IndepVarComp())
assumptions.add_output('S', val=427.8, units='m**2')
assumptions.add_output('mass_empty', val=1.0, units='kg')
assumptions.add_output('mass_payload', val=1.0, units='kg')
phase.set_time_options(fix_initial=True,
duration_bounds=(300, 10000),
duration_ref=1000)
phase.add_state('range', units='NM',
rate_source='range_rate_comp.dXdt:range',
fix_initial=True, fix_final=False, ref=1e-3,
defect_ref=1e-3, lower=0, upper=2000)
phase.add_state('mass_fuel', units='lbm',
rate_source='propulsion.dXdt:mass_fuel',
fix_initial=True, fix_final=True,
upper=1.5E5, lower=0.0, ref=1e2, defect_ref=1e2)
phase.add_state('alt', units='kft',
rate_source='climb_rate',
fix_initial=True, fix_final=True,
lower=0.0, upper=60, ref=1e-3, defect_ref=1e-3)
phase.add_control('climb_rate', units='ft/min', opt=True, lower=-3000, upper=3000,
targets=['gam_comp.climb_rate'],
rate_continuity=True, rate2_continuity=False)
phase.add_control('mach', targets=['tas_comp.mach', 'aero.mach'], units=None, opt=False)
phase.add_parameter('S',
targets=['aero.S', 'flight_equilibrium.S', 'propulsion.S'],
units='m**2')
phase.add_parameter('mass_empty', targets=['mass_comp.mass_empty'], units='kg')
phase.add_parameter('mass_payload', targets=['mass_comp.mass_payload'], units='kg')
phase.add_path_constraint('propulsion.tau', lower=0.01, upper=2.0)
p.model.connect('assumptions.S', 'traj.phase0.parameters:S')
p.model.connect('assumptions.mass_empty', 'traj.phase0.parameters:mass_empty')
p.model.connect('assumptions.mass_payload', 'traj.phase0.parameters:mass_payload')
phase.add_objective('range', loc='final', ref=-1.0)
phase.add_timeseries_output('aero.CL')
phase.add_timeseries_output('aero.CD')
p.setup()
<openmdao.core.problem.Problem at 0x7f39bbe9fe00>
Set the initial guesses and assumptions#
phase.set_time_val(initial=0.0, duration=3600)
phase.set_state_val('range', (0, 724.0))
phase.set_state_val('mass_fuel', (30000, 1e-3))
phase.set_state_val('alt', 10.0)
phase.set_control_val('mach', 0.8)
p['assumptions.S'] = 427.8
p['assumptions.mass_empty'] = 0.15E6
p['assumptions.mass_payload'] = 84.02869 * 400
Run the problem#
The dymos run_problem
method is used to automatically run the driver and follow the driver execution with a simulation run to help verify the results.
Plots of the resulting solution and simulation will be generated.
dm.run_problem(p, simulate=True, make_plots=True)
Jacobian shape: (224, 221) (2.51% nonzero)
FWD solves: 11 REV solves: 0
Total colors vs. total size: 11 vs 221 (95.02% improvement)
Sparsity computed using tolerance: 1e-25.
Dense total jacobian for Problem 'problem' was computed 3 times.
Time to compute sparsity: 0.6722 sec
Time to compute coloring: 0.1945 sec
Memory to compute coloring: 0.2500 MB
Coloring created on: 2025-07-30 17:06:07
Optimization Problem -- Optimization using pyOpt_sparse
================================================================================
Objective Function: _objfunc
Solution:
--------------------------------------------------------------------------------
Total Time: 37.5139
User Objective Time : 32.5180
User Sensitivity Time : 3.7056
Interface Time : 0.2590
Opt Solver Time: 1.0313
Calls to Objective Function : 70
Calls to Sens Function : 70
Objectives
Index Name Value
0 traj.phase0.states:range -7.260052E+02
Variables (c - continuous, i - integer, d - discrete)
Index Name Type Lower Bound Value Upper Bound Status
0 traj.phase0.t_duration_0 c 3.000000E-01 5.637564E+00 1.000000E+01
1 traj.phase0.states:range_0 c 0.000000E+00 4.300778E+03 2.000000E+06
2 traj.phase0.states:range_1 c 0.000000E+00 1.019478E+04 2.000000E+06
3 traj.phase0.states:range_2 c 0.000000E+00 1.205044E+04 2.000000E+06
4 traj.phase0.states:range_3 c 0.000000E+00 1.205044E+04 2.000000E+06
5 traj.phase0.states:range_4 c 0.000000E+00 2.179716E+04 2.000000E+06
6 traj.phase0.states:range_5 c 0.000000E+00 3.502521E+04 2.000000E+06
7 traj.phase0.states:range_6 c 0.000000E+00 3.915789E+04 2.000000E+06
8 traj.phase0.states:range_7 c 0.000000E+00 3.915789E+04 2.000000E+06
9 traj.phase0.states:range_8 c 0.000000E+00 5.336791E+04 2.000000E+06
10 traj.phase0.states:range_9 c 0.000000E+00 7.250027E+04 2.000000E+06
11 traj.phase0.states:range_10 c 0.000000E+00 7.845561E+04 2.000000E+06
12 traj.phase0.states:range_11 c 0.000000E+00 7.845561E+04 2.000000E+06
13 traj.phase0.states:range_12 c 0.000000E+00 9.625935E+04 2.000000E+06
14 traj.phase0.states:range_13 c 0.000000E+00 1.208337E+05 2.000000E+06
15 traj.phase0.states:range_14 c 0.000000E+00 1.286109E+05 2.000000E+06
16 traj.phase0.states:range_15 c 0.000000E+00 1.286109E+05 2.000000E+06
17 traj.phase0.states:range_16 c 0.000000E+00 1.498279E+05 2.000000E+06
18 traj.phase0.states:range_17 c 0.000000E+00 1.791031E+05 2.000000E+06
19 traj.phase0.states:range_18 c 0.000000E+00 1.883686E+05 2.000000E+06
20 traj.phase0.states:range_19 c 0.000000E+00 1.883686E+05 2.000000E+06
21 traj.phase0.states:range_20 c 0.000000E+00 2.121241E+05 2.000000E+06
22 traj.phase0.states:range_21 c 0.000000E+00 2.449018E+05 2.000000E+06
23 traj.phase0.states:range_22 c 0.000000E+00 2.552758E+05 2.000000E+06
24 traj.phase0.states:range_23 c 0.000000E+00 2.552758E+05 2.000000E+06
25 traj.phase0.states:range_24 c 0.000000E+00 2.805971E+05 2.000000E+06
26 traj.phase0.states:range_25 c 0.000000E+00 3.155354E+05 2.000000E+06
27 traj.phase0.states:range_26 c 0.000000E+00 3.265932E+05 2.000000E+06
28 traj.phase0.states:range_27 c 0.000000E+00 3.265932E+05 2.000000E+06
29 traj.phase0.states:range_28 c 0.000000E+00 3.524437E+05 2.000000E+06
30 traj.phase0.states:range_29 c 0.000000E+00 3.881121E+05 2.000000E+06
31 traj.phase0.states:range_30 c 0.000000E+00 3.994010E+05 2.000000E+06
32 traj.phase0.states:range_31 c 0.000000E+00 3.994010E+05 2.000000E+06
33 traj.phase0.states:range_32 c 0.000000E+00 4.247223E+05 2.000000E+06
34 traj.phase0.states:range_33 c 0.000000E+00 4.596605E+05 2.000000E+06
35 traj.phase0.states:range_34 c 0.000000E+00 4.707183E+05 2.000000E+06
36 traj.phase0.states:range_35 c 0.000000E+00 4.707183E+05 2.000000E+06
37 traj.phase0.states:range_36 c 0.000000E+00 4.944738E+05 2.000000E+06
38 traj.phase0.states:range_37 c 0.000000E+00 5.272515E+05 2.000000E+06
39 traj.phase0.states:range_38 c 0.000000E+00 5.376255E+05 2.000000E+06
40 traj.phase0.states:range_39 c 0.000000E+00 5.376255E+05 2.000000E+06
41 traj.phase0.states:range_40 c 0.000000E+00 5.588425E+05 2.000000E+06
42 traj.phase0.states:range_41 c 0.000000E+00 5.881176E+05 2.000000E+06
43 traj.phase0.states:range_42 c 0.000000E+00 5.973831E+05 2.000000E+06
44 traj.phase0.states:range_43 c 0.000000E+00 5.973831E+05 2.000000E+06
45 traj.phase0.states:range_44 c 0.000000E+00 6.151931E+05 2.000000E+06
46 traj.phase0.states:range_45 c 0.000000E+00 6.397625E+05 2.000000E+06
47 traj.phase0.states:range_46 c 0.000000E+00 6.475361E+05 2.000000E+06
48 traj.phase0.states:range_47 c 0.000000E+00 6.475361E+05 2.000000E+06
49 traj.phase0.states:range_48 c 0.000000E+00 6.612680E+05 2.000000E+06
50 traj.phase0.states:range_49 c 0.000000E+00 6.805947E+05 2.000000E+06
51 traj.phase0.states:range_50 c 0.000000E+00 6.868473E+05 2.000000E+06
52 traj.phase0.states:range_51 c 0.000000E+00 6.868473E+05 2.000000E+06
53 traj.phase0.states:range_52 c 0.000000E+00 6.963491E+05 2.000000E+06
54 traj.phase0.states:range_53 c 0.000000E+00 7.096820E+05 2.000000E+06
55 traj.phase0.states:range_54 c 0.000000E+00 7.139547E+05 2.000000E+06
56 traj.phase0.states:range_55 c 0.000000E+00 7.139547E+05 2.000000E+06
57 traj.phase0.states:range_56 c 0.000000E+00 7.182109E+05 2.000000E+06
58 traj.phase0.states:range_57 c 0.000000E+00 7.241240E+05 2.000000E+06
59 traj.phase0.states:range_58 c 0.000000E+00 7.260052E+05 2.000000E+06
60 traj.phase0.states:mass_fuel_0 c 0.000000E+00 2.957208E+02 1.500000E+03
61 traj.phase0.states:mass_fuel_1 c 0.000000E+00 2.900371E+02 1.500000E+03
62 traj.phase0.states:mass_fuel_2 c 0.000000E+00 2.882890E+02 1.500000E+03
63 traj.phase0.states:mass_fuel_3 c 0.000000E+00 2.882890E+02 1.500000E+03
64 traj.phase0.states:mass_fuel_4 c 0.000000E+00 2.794117E+02 1.500000E+03
65 traj.phase0.states:mass_fuel_5 c 0.000000E+00 2.680940E+02 1.500000E+03
66 traj.phase0.states:mass_fuel_6 c 0.000000E+00 2.647067E+02 1.500000E+03
67 traj.phase0.states:mass_fuel_7 c 0.000000E+00 2.647067E+02 1.500000E+03
68 traj.phase0.states:mass_fuel_8 c 0.000000E+00 2.535688E+02 1.500000E+03
69 traj.phase0.states:mass_fuel_9 c 0.000000E+00 2.401846E+02 1.500000E+03
70 traj.phase0.states:mass_fuel_10 c 0.000000E+00 2.364961E+02 1.500000E+03
71 traj.phase0.states:mass_fuel_11 c 0.000000E+00 2.364961E+02 1.500000E+03
72 traj.phase0.states:mass_fuel_12 c 0.000000E+00 2.271299E+02 1.500000E+03
73 traj.phase0.states:mass_fuel_13 c 0.000000E+00 2.167573E+02 1.500000E+03
74 traj.phase0.states:mass_fuel_14 c 0.000000E+00 2.137292E+02 1.500000E+03
75 traj.phase0.states:mass_fuel_15 c 0.000000E+00 2.137292E+02 1.500000E+03
76 traj.phase0.states:mass_fuel_16 c 0.000000E+00 2.055422E+02 1.500000E+03
77 traj.phase0.states:mass_fuel_17 c 0.000000E+00 1.942336E+02 1.500000E+03
78 traj.phase0.states:mass_fuel_18 c 0.000000E+00 1.906363E+02 1.500000E+03
79 traj.phase0.states:mass_fuel_19 c 0.000000E+00 1.906363E+02 1.500000E+03
80 traj.phase0.states:mass_fuel_20 c 0.000000E+00 1.813581E+02 1.500000E+03
81 traj.phase0.states:mass_fuel_21 c 0.000000E+00 1.684992E+02 1.500000E+03
82 traj.phase0.states:mass_fuel_22 c 0.000000E+00 1.644355E+02 1.500000E+03
83 traj.phase0.states:mass_fuel_23 c 0.000000E+00 1.644355E+02 1.500000E+03
84 traj.phase0.states:mass_fuel_24 c 0.000000E+00 1.545567E+02 1.500000E+03
85 traj.phase0.states:mass_fuel_25 c 0.000000E+00 1.410094E+02 1.500000E+03
86 traj.phase0.states:mass_fuel_26 c 0.000000E+00 1.367383E+02 1.500000E+03
87 traj.phase0.states:mass_fuel_27 c 0.000000E+00 1.367383E+02 1.500000E+03
88 traj.phase0.states:mass_fuel_28 c 0.000000E+00 1.267738E+02 1.500000E+03
89 traj.phase0.states:mass_fuel_29 c 0.000000E+00 1.130185E+02 1.500000E+03
90 traj.phase0.states:mass_fuel_30 c 0.000000E+00 1.086503E+02 1.500000E+03
91 traj.phase0.states:mass_fuel_31 c 0.000000E+00 1.086503E+02 1.500000E+03
92 traj.phase0.states:mass_fuel_32 c 0.000000E+00 9.882576E+01 1.500000E+03
93 traj.phase0.states:mass_fuel_33 c 0.000000E+00 8.534598E+01 1.500000E+03
94 traj.phase0.states:mass_fuel_34 c 0.000000E+00 8.113325E+01 1.500000E+03
95 traj.phase0.states:mass_fuel_35 c 0.000000E+00 8.113325E+01 1.500000E+03
96 traj.phase0.states:mass_fuel_36 c 0.000000E+00 7.218115E+01 1.500000E+03
97 traj.phase0.states:mass_fuel_37 c 0.000000E+00 5.977772E+01 1.500000E+03
98 traj.phase0.states:mass_fuel_38 c 0.000000E+00 5.576977E+01 1.500000E+03
99 traj.phase0.states:mass_fuel_39 c 0.000000E+00 5.576977E+01 1.500000E+03
100 traj.phase0.states:mass_fuel_40 c 0.000000E+00 4.741803E+01 1.500000E+03
101 traj.phase0.states:mass_fuel_41 c 0.000000E+00 3.592793E+01 1.500000E+03
102 traj.phase0.states:mass_fuel_42 c 0.000000E+00 3.239651E+01 1.500000E+03
103 traj.phase0.states:mass_fuel_43 c 0.000000E+00 3.239651E+01 1.500000E+03
104 traj.phase0.states:mass_fuel_44 c 0.000000E+00 2.595941E+01 1.500000E+03
105 traj.phase0.states:mass_fuel_45 c 0.000000E+00 1.877799E+01 1.500000E+03
106 traj.phase0.states:mass_fuel_46 c 0.000000E+00 1.714587E+01 1.500000E+03
107 traj.phase0.states:mass_fuel_47 c 0.000000E+00 1.714587E+01 1.500000E+03
108 traj.phase0.states:mass_fuel_48 c 0.000000E+00 1.500523E+01 1.500000E+03
109 traj.phase0.states:mass_fuel_49 c 0.000000E+00 1.243555E+01 1.500000E+03
110 traj.phase0.states:mass_fuel_50 c 0.000000E+00 1.141787E+01 1.500000E+03
111 traj.phase0.states:mass_fuel_51 c 0.000000E+00 1.141787E+01 1.500000E+03
112 traj.phase0.states:mass_fuel_52 c 0.000000E+00 9.500576E+00 1.500000E+03
113 traj.phase0.states:mass_fuel_53 c 0.000000E+00 5.938689E+00 1.500000E+03
114 traj.phase0.states:mass_fuel_54 c 0.000000E+00 4.560755E+00 1.500000E+03
115 traj.phase0.states:mass_fuel_55 c 0.000000E+00 4.560755E+00 1.500000E+03
116 traj.phase0.states:mass_fuel_56 c 0.000000E+00 3.066294E+00 1.500000E+03
117 traj.phase0.states:mass_fuel_57 c 0.000000E+00 7.801232E-01 1.500000E+03
118 traj.phase0.states:alt_0 c 0.000000E+00 1.152283E+04 6.000000E+04
119 traj.phase0.states:alt_1 c 0.000000E+00 1.362403E+04 6.000000E+04
120 traj.phase0.states:alt_2 c 0.000000E+00 1.428905E+04 6.000000E+04
121 traj.phase0.states:alt_3 c 0.000000E+00 1.428905E+04 6.000000E+04
122 traj.phase0.states:alt_4 c 0.000000E+00 1.781028E+04 6.000000E+04
123 traj.phase0.states:alt_5 c 0.000000E+00 2.266886E+04 6.000000E+04
124 traj.phase0.states:alt_6 c 0.000000E+00 2.420659E+04 6.000000E+04
125 traj.phase0.states:alt_7 c 0.000000E+00 2.420659E+04 6.000000E+04
126 traj.phase0.states:alt_8 c 0.000000E+00 2.947162E+04 6.000000E+04
127 traj.phase0.states:alt_9 c 0.000000E+00 3.563844E+04 6.000000E+04
128 traj.phase0.states:alt_10 c 0.000000E+00 3.710397E+04 6.000000E+04
129 traj.phase0.states:alt_11 c 0.000000E+00 3.710397E+04 6.000000E+04
130 traj.phase0.states:alt_12 c 0.000000E+00 3.977281E+04 6.000000E+04
131 traj.phase0.states:alt_13 c 0.000000E+00 4.064816E+04 6.000000E+04
132 traj.phase0.states:alt_14 c 0.000000E+00 4.061936E+04 6.000000E+04
133 traj.phase0.states:alt_15 c 0.000000E+00 4.061936E+04 6.000000E+04
134 traj.phase0.states:alt_16 c 0.000000E+00 4.049114E+04 6.000000E+04
135 traj.phase0.states:alt_17 c 0.000000E+00 4.035336E+04 6.000000E+04
136 traj.phase0.states:alt_18 c 0.000000E+00 4.033653E+04 6.000000E+04
137 traj.phase0.states:alt_19 c 0.000000E+00 4.033653E+04 6.000000E+04
138 traj.phase0.states:alt_20 c 0.000000E+00 4.037083E+04 6.000000E+04
139 traj.phase0.states:alt_21 c 0.000000E+00 4.051554E+04 6.000000E+04
140 traj.phase0.states:alt_22 c 0.000000E+00 4.056201E+04 6.000000E+04
141 traj.phase0.states:alt_23 c 0.000000E+00 4.056201E+04 6.000000E+04
142 traj.phase0.states:alt_24 c 0.000000E+00 4.064375E+04 6.000000E+04
143 traj.phase0.states:alt_25 c 0.000000E+00 4.069400E+04 6.000000E+04
144 traj.phase0.states:alt_26 c 0.000000E+00 4.069891E+04 6.000000E+04
145 traj.phase0.states:alt_27 c 0.000000E+00 4.069891E+04 6.000000E+04
146 traj.phase0.states:alt_28 c 0.000000E+00 4.070254E+04 6.000000E+04
147 traj.phase0.states:alt_29 c 0.000000E+00 4.075183E+04 6.000000E+04
148 traj.phase0.states:alt_30 c 0.000000E+00 4.079374E+04 6.000000E+04
149 traj.phase0.states:alt_31 c 0.000000E+00 4.079374E+04 6.000000E+04
150 traj.phase0.states:alt_32 c 0.000000E+00 4.093550E+04 6.000000E+04
151 traj.phase0.states:alt_33 c 0.000000E+00 4.107641E+04 6.000000E+04
152 traj.phase0.states:alt_34 c 0.000000E+00 4.106576E+04 6.000000E+04
153 traj.phase0.states:alt_35 c 0.000000E+00 4.106576E+04 6.000000E+04
154 traj.phase0.states:alt_36 c 0.000000E+00 4.093919E+04 6.000000E+04
155 traj.phase0.states:alt_37 c 0.000000E+00 4.085650E+04 6.000000E+04
156 traj.phase0.states:alt_38 c 0.000000E+00 4.093624E+04 6.000000E+04
157 traj.phase0.states:alt_39 c 0.000000E+00 4.093624E+04 6.000000E+04
158 traj.phase0.states:alt_40 c 0.000000E+00 4.129894E+04 6.000000E+04
159 traj.phase0.states:alt_41 c 0.000000E+00 4.178377E+04 6.000000E+04
160 traj.phase0.states:alt_42 c 0.000000E+00 4.181539E+04 6.000000E+04
161 traj.phase0.states:alt_43 c 0.000000E+00 4.181539E+04 6.000000E+04
162 traj.phase0.states:alt_44 c 0.000000E+00 4.146281E+04 6.000000E+04
163 traj.phase0.states:alt_45 c 0.000000E+00 3.890556E+04 6.000000E+04
164 traj.phase0.states:alt_46 c 0.000000E+00 3.730605E+04 6.000000E+04
165 traj.phase0.states:alt_47 c 0.000000E+00 3.730605E+04 6.000000E+04
166 traj.phase0.states:alt_48 c 0.000000E+00 3.341148E+04 6.000000E+04
167 traj.phase0.states:alt_49 c 0.000000E+00 2.654155E+04 6.000000E+04
168 traj.phase0.states:alt_50 c 0.000000E+00 2.420659E+04 6.000000E+04
169 traj.phase0.states:alt_51 c 0.000000E+00 2.420659E+04 6.000000E+04
170 traj.phase0.states:alt_52 c 0.000000E+00 2.068536E+04 6.000000E+04
171 traj.phase0.states:alt_53 c 0.000000E+00 1.582678E+04 6.000000E+04
172 traj.phase0.states:alt_54 c 0.000000E+00 1.428905E+04 6.000000E+04
173 traj.phase0.states:alt_55 c 0.000000E+00 1.428905E+04 6.000000E+04
174 traj.phase0.states:alt_56 c 0.000000E+00 1.276622E+04 6.000000E+04
175 traj.phase0.states:alt_57 c 0.000000E+00 1.066502E+04 6.000000E+04
176 traj.phase0.controls:climb_rate_0 c -3.000000E+03 3.000000E+03 3.000000E+03 U
177 traj.phase0.controls:climb_rate_1 c -3.000000E+03 3.000000E+03 3.000000E+03 U
178 traj.phase0.controls:climb_rate_2 c -3.000000E+03 3.000000E+03 3.000000E+03 U
179 traj.phase0.controls:climb_rate_3 c -3.000000E+03 3.000000E+03 3.000000E+03 U
180 traj.phase0.controls:climb_rate_4 c -3.000000E+03 3.000000E+03 3.000000E+03 U
181 traj.phase0.controls:climb_rate_5 c -3.000000E+03 3.000000E+03 3.000000E+03 U
182 traj.phase0.controls:climb_rate_6 c -3.000000E+03 3.000000E+03 3.000000E+03 U
183 traj.phase0.controls:climb_rate_7 c -3.000000E+03 2.834019E+03 3.000000E+03
184 traj.phase0.controls:climb_rate_8 c -3.000000E+03 2.059977E+03 3.000000E+03
185 traj.phase0.controls:climb_rate_9 c -3.000000E+03 1.683329E+03 3.000000E+03
186 traj.phase0.controls:climb_rate_10 c -3.000000E+03 6.801700E+02 3.000000E+03
187 traj.phase0.controls:climb_rate_11 c -3.000000E+03 8.662703E-01 3.000000E+03
188 traj.phase0.controls:climb_rate_12 c -3.000000E+03 -4.385211E+01 3.000000E+03
189 traj.phase0.controls:climb_rate_13 c -3.000000E+03 -4.577834E+01 3.000000E+03
190 traj.phase0.controls:climb_rate_14 c -3.000000E+03 -2.088417E+01 3.000000E+03
191 traj.phase0.controls:climb_rate_15 c -3.000000E+03 -6.349193E+00 3.000000E+03
192 traj.phase0.controls:climb_rate_16 c -3.000000E+03 2.513490E+01 3.000000E+03
193 traj.phase0.controls:climb_rate_17 c -3.000000E+03 3.612048E+01 3.000000E+03
194 traj.phase0.controls:climb_rate_18 c -3.000000E+03 3.175659E+01 3.000000E+03
195 traj.phase0.controls:climb_rate_19 c -3.000000E+03 1.816895E+01 3.000000E+03
196 traj.phase0.controls:climb_rate_20 c -3.000000E+03 4.887485E+00 3.000000E+03
197 traj.phase0.controls:climb_rate_21 c -3.000000E+03 2.004604E+00 3.000000E+03
198 traj.phase0.controls:climb_rate_22 c -3.000000E+03 2.210339E+00 3.000000E+03
199 traj.phase0.controls:climb_rate_23 c -3.000000E+03 2.286248E+01 3.000000E+03
200 traj.phase0.controls:climb_rate_24 c -3.000000E+03 3.431941E+01 3.000000E+03
201 traj.phase0.controls:climb_rate_25 c -3.000000E+03 4.562364E+01 3.000000E+03
202 traj.phase0.controls:climb_rate_26 c -3.000000E+03 5.244050E+00 3.000000E+03
203 traj.phase0.controls:climb_rate_27 c -3.000000E+03 -2.105900E+01 3.000000E+03
204 traj.phase0.controls:climb_rate_28 c -3.000000E+03 -4.837038E+01 3.000000E+03
205 traj.phase0.controls:climb_rate_29 c -3.000000E+03 3.274566E+01 3.000000E+03
206 traj.phase0.controls:climb_rate_30 c -3.000000E+03 8.711855E+01 3.000000E+03
207 traj.phase0.controls:climb_rate_31 c -3.000000E+03 1.552957E+02 3.000000E+03
208 traj.phase0.controls:climb_rate_32 c -3.000000E+03 6.174546E+01 3.000000E+03
209 traj.phase0.controls:climb_rate_33 c -3.000000E+03 -1.318857E+01 3.000000E+03
210 traj.phase0.controls:climb_rate_34 c -3.000000E+03 -3.453089E+02 3.000000E+03
211 traj.phase0.controls:climb_rate_35 c -3.000000E+03 -1.352388E+03 3.000000E+03
212 traj.phase0.controls:climb_rate_36 c -3.000000E+03 -1.803710E+03 3.000000E+03
213 traj.phase0.controls:climb_rate_37 c -3.000000E+03 -2.502392E+03 3.000000E+03
214 traj.phase0.controls:climb_rate_38 c -3.000000E+03 -2.971240E+03 3.000000E+03
215 traj.phase0.controls:climb_rate_39 c -3.000000E+03 -3.000000E+03 3.000000E+03 L
216 traj.phase0.controls:climb_rate_40 c -3.000000E+03 -3.000000E+03 3.000000E+03 L
217 traj.phase0.controls:climb_rate_41 c -3.000000E+03 -3.000000E+03 3.000000E+03 L
218 traj.phase0.controls:climb_rate_42 c -3.000000E+03 -3.000000E+03 3.000000E+03 L
219 traj.phase0.controls:climb_rate_43 c -3.000000E+03 -3.000000E+03 3.000000E+03 L
220 traj.phase0.controls:climb_rate_44 c -3.000000E+03 -3.000000E+03 3.000000E+03 L
Constraints (i - inequality, e - equality)
Index Name Type Lower Value Upper Status Lagrange Multiplier
0 traj.phase0.collocation_constraint.defects:range e 0.000000E+00 1.190451E-12 0.000000E+00 2.22222E-04
1 traj.phase0.collocation_constraint.defects:range e 0.000000E+00 0.000000E+00 0.000000E+00 1.02497E-03
2 traj.phase0.collocation_constraint.defects:range e 0.000000E+00 1.190451E-12 0.000000E+00 7.52806E-04
3 traj.phase0.collocation_constraint.defects:range e 0.000000E+00 1.376334E-11 0.000000E+00 2.22222E-04
4 traj.phase0.collocation_constraint.defects:range e 0.000000E+00 -8.258006E-12 0.000000E+00 1.02497E-03
5 traj.phase0.collocation_constraint.defects:range e 0.000000E+00 8.258006E-12 0.000000E+00 7.52806E-04
6 traj.phase0.collocation_constraint.defects:range e 0.000000E+00 -1.677278E-11 0.000000E+00 2.22222E-04
7 traj.phase0.collocation_constraint.defects:range e 0.000000E+00 3.773876E-11 0.000000E+00 1.02497E-03
8 traj.phase0.collocation_constraint.defects:range e 0.000000E+00 -8.386390E-12 0.000000E+00 7.52806E-04
9 traj.phase0.collocation_constraint.defects:range e 0.000000E+00 -4.369362E-11 0.000000E+00 2.22222E-04
10 traj.phase0.collocation_constraint.defects:range e 0.000000E+00 1.092341E-11 0.000000E+00 1.02497E-03
11 traj.phase0.collocation_constraint.defects:range e 0.000000E+00 -1.092341E-11 0.000000E+00 7.52806E-04
12 traj.phase0.collocation_constraint.defects:range e 0.000000E+00 -5.205236E-11 0.000000E+00 2.22222E-04
13 traj.phase0.collocation_constraint.defects:range e 0.000000E+00 3.903927E-11 0.000000E+00 1.02497E-03
14 traj.phase0.collocation_constraint.defects:range e 0.000000E+00 3.253272E-11 0.000000E+00 7.52806E-04
15 traj.phase0.collocation_constraint.defects:range e 0.000000E+00 -8.741987E-11 0.000000E+00 2.22222E-04
16 traj.phase0.collocation_constraint.defects:range e 0.000000E+00 2.913996E-11 0.000000E+00 1.02497E-03
17 traj.phase0.collocation_constraint.defects:range e 0.000000E+00 -7.284989E-11 0.000000E+00 7.52806E-04
18 traj.phase0.collocation_constraint.defects:range e 0.000000E+00 -2.096598E-10 0.000000E+00 2.22222E-04
19 traj.phase0.collocation_constraint.defects:range e 0.000000E+00 3.416678E-10 0.000000E+00 1.02497E-03
20 traj.phase0.collocation_constraint.defects:range e 0.000000E+00 8.541696E-11 0.000000E+00 7.52806E-04
21 traj.phase0.collocation_constraint.defects:range e 0.000000E+00 8.720201E-11 0.000000E+00 2.22222E-04
22 traj.phase0.collocation_constraint.defects:range e 0.000000E+00 9.512946E-11 0.000000E+00 1.02497E-03
23 traj.phase0.collocation_constraint.defects:range e 0.000000E+00 7.927455E-12 0.000000E+00 7.52806E-04
24 traj.phase0.collocation_constraint.defects:range e 0.000000E+00 2.329553E-11 0.000000E+00 2.22222E-04
25 traj.phase0.collocation_constraint.defects:range e 0.000000E+00 1.553036E-11 0.000000E+00 1.02497E-03
26 traj.phase0.collocation_constraint.defects:range e 0.000000E+00 -7.765178E-12 0.000000E+00 7.52806E-04
27 traj.phase0.collocation_constraint.defects:range e 0.000000E+00 -2.039797E-10 0.000000E+00 2.22222E-04
28 traj.phase0.collocation_constraint.defects:range e 0.000000E+00 2.913996E-11 0.000000E+00 1.02497E-03
29 traj.phase0.collocation_constraint.defects:range e 0.000000E+00 8.741987E-11 0.000000E+00 7.52806E-04
30 traj.phase0.collocation_constraint.defects:range e 0.000000E+00 -5.270301E-10 0.000000E+00 2.22222E-04
31 traj.phase0.collocation_constraint.defects:range e 0.000000E+00 8.458508E-11 0.000000E+00 1.02497E-03
32 traj.phase0.collocation_constraint.defects:range e 0.000000E+00 3.448469E-10 0.000000E+00 7.52806E-04
33 traj.phase0.collocation_constraint.defects:range e 0.000000E+00 -2.676234E-10 0.000000E+00 2.22222E-04
34 traj.phase0.collocation_constraint.defects:range e 0.000000E+00 -8.738725E-11 0.000000E+00 1.02497E-03
35 traj.phase0.collocation_constraint.defects:range e 0.000000E+00 -1.693128E-10 0.000000E+00 7.52806E-04
36 traj.phase0.collocation_constraint.defects:range e 0.000000E+00 -2.012734E-10 0.000000E+00 2.22222E-04
37 traj.phase0.collocation_constraint.defects:range e 0.000000E+00 2.264325E-10 0.000000E+00 1.02497E-03
38 traj.phase0.collocation_constraint.defects:range e 0.000000E+00 -3.773876E-11 0.000000E+00 7.52806E-04
39 traj.phase0.collocation_constraint.defects:range e 0.000000E+00 1.734181E-10 0.000000E+00 2.22222E-04
40 traj.phase0.collocation_constraint.defects:range e 0.000000E+00 -3.578469E-11 0.000000E+00 1.02497E-03
41 traj.phase0.collocation_constraint.defects:range e 0.000000E+00 4.184056E-10 0.000000E+00 7.52806E-04
42 traj.phase0.collocation_constraint.defects:range e 0.000000E+00 -2.166621E-10 0.000000E+00 2.22222E-04
43 traj.phase0.collocation_constraint.defects:range e 0.000000E+00 -5.190367E-10 0.000000E+00 1.02497E-03
44 traj.phase0.collocation_constraint.defects:range e 0.000000E+00 2.976128E-10 0.000000E+00 7.52806E-04
45 traj.phase0.collocation_constraint.defects:mass_fuel e 0.000000E+00 2.102813E-13 0.000000E+00 5.63115E-01
46 traj.phase0.collocation_constraint.defects:mass_fuel e 0.000000E+00 -3.352310E-14 0.000000E+00 2.59803E+00
47 traj.phase0.collocation_constraint.defects:mass_fuel e 0.000000E+00 -7.771265E-14 0.000000E+00 1.90893E+00
48 traj.phase0.collocation_constraint.defects:mass_fuel e 0.000000E+00 7.046832E-15 0.000000E+00 5.63576E-01
49 traj.phase0.collocation_constraint.defects:mass_fuel e 0.000000E+00 -2.994903E-14 0.000000E+00 2.60129E+00
50 traj.phase0.collocation_constraint.defects:mass_fuel e 0.000000E+00 4.580441E-14 0.000000E+00 1.91264E+00
51 traj.phase0.collocation_constraint.defects:mass_fuel e 0.000000E+00 1.476005E-13 0.000000E+00 5.64783E-01
52 traj.phase0.collocation_constraint.defects:mass_fuel e 0.000000E+00 -1.341822E-14 0.000000E+00 2.60873E+00
53 traj.phase0.collocation_constraint.defects:mass_fuel e 0.000000E+00 1.610187E-14 0.000000E+00 1.91986E+00
54 traj.phase0.collocation_constraint.defects:mass_fuel e 0.000000E+00 1.835132E-13 0.000000E+00 5.67101E-01
55 traj.phase0.collocation_constraint.defects:mass_fuel e 0.000000E+00 -2.097294E-14 0.000000E+00 2.62004E+00
56 traj.phase0.collocation_constraint.defects:mass_fuel e 0.000000E+00 1.852610E-13 0.000000E+00 1.92820E+00
57 traj.phase0.collocation_constraint.defects:mass_fuel e 0.000000E+00 1.665676E-13 0.000000E+00 5.69516E-01
58 traj.phase0.collocation_constraint.defects:mass_fuel e 0.000000E+00 2.790006E-13 0.000000E+00 2.63088E+00
59 traj.phase0.collocation_constraint.defects:mass_fuel e 0.000000E+00 -3.539560E-14 0.000000E+00 1.93640E+00
60 traj.phase0.collocation_constraint.defects:mass_fuel e 0.000000E+00 -3.496795E-14 0.000000E+00 5.71992E-01
61 traj.phase0.collocation_constraint.defects:mass_fuel e 0.000000E+00 9.301475E-13 0.000000E+00 2.64283E+00
62 traj.phase0.collocation_constraint.defects:mass_fuel e 0.000000E+00 2.699526E-12 0.000000E+00 1.94576E+00
63 traj.phase0.collocation_constraint.defects:mass_fuel e 0.000000E+00 2.253765E-12 0.000000E+00 5.74816E-01
64 traj.phase0.collocation_constraint.defects:mass_fuel e 0.000000E+00 -6.212142E-14 0.000000E+00 2.65625E+00
65 traj.phase0.collocation_constraint.defects:mass_fuel e 0.000000E+00 9.509548E-12 0.000000E+00 1.95596E+00
66 traj.phase0.collocation_constraint.defects:mass_fuel e 0.000000E+00 1.256216E-11 0.000000E+00 5.77857E-01
67 traj.phase0.collocation_constraint.defects:mass_fuel e 0.000000E+00 7.889403E-12 0.000000E+00 2.67034E+00
68 traj.phase0.collocation_constraint.defects:mass_fuel e 0.000000E+00 -1.192289E-13 0.000000E+00 1.96642E+00
69 traj.phase0.collocation_constraint.defects:mass_fuel e 0.000000E+00 1.008852E-12 0.000000E+00 5.80949E-01
70 traj.phase0.collocation_constraint.defects:mass_fuel e 0.000000E+00 4.022983E-12 0.000000E+00 2.68466E+00
71 traj.phase0.collocation_constraint.defects:mass_fuel e 0.000000E+00 4.358439E-12 0.000000E+00 1.97695E+00
72 traj.phase0.collocation_constraint.defects:mass_fuel e 0.000000E+00 4.261427E-12 0.000000E+00 5.84070E-01
73 traj.phase0.collocation_constraint.defects:mass_fuel e 0.000000E+00 6.002831E-12 0.000000E+00 2.69852E+00
74 traj.phase0.collocation_constraint.defects:mass_fuel e 0.000000E+00 8.443594E-12 0.000000E+00 1.98669E+00
75 traj.phase0.collocation_constraint.defects:mass_fuel e 0.000000E+00 7.341465E-12 0.000000E+00 5.86889E-01
76 traj.phase0.collocation_constraint.defects:mass_fuel e 0.000000E+00 4.424451E-12 0.000000E+00 2.71147E+00
77 traj.phase0.collocation_constraint.defects:mass_fuel e 0.000000E+00 7.245689E-13 0.000000E+00 1.99607E+00
78 traj.phase0.collocation_constraint.defects:mass_fuel e 0.000000E+00 2.184681E-13 0.000000E+00 5.89593E-01
79 traj.phase0.collocation_constraint.defects:mass_fuel e 0.000000E+00 8.738725E-15 0.000000E+00 2.72332E+00
80 traj.phase0.collocation_constraint.defects:mass_fuel e 0.000000E+00 -2.184681E-14 0.000000E+00 2.00243E+00
81 traj.phase0.collocation_constraint.defects:mass_fuel e 0.000000E+00 1.006367E-14 0.000000E+00 5.91220E-01
82 traj.phase0.collocation_constraint.defects:mass_fuel e 0.000000E+00 5.702745E-15 0.000000E+00 2.72632E+00
83 traj.phase0.collocation_constraint.defects:mass_fuel e 0.000000E+00 5.702745E-15 0.000000E+00 2.00075E+00
84 traj.phase0.collocation_constraint.defects:mass_fuel e 0.000000E+00 4.844697E-15 0.000000E+00 5.90383E-01
85 traj.phase0.collocation_constraint.defects:mass_fuel e 0.000000E+00 -4.404270E-16 0.000000E+00 2.72139E+00
86 traj.phase0.collocation_constraint.defects:mass_fuel e 0.000000E+00 1.761708E-15 0.000000E+00 1.99692E+00
87 traj.phase0.collocation_constraint.defects:mass_fuel e 0.000000E+00 -7.618887E-16 0.000000E+00 5.89291E-01
88 traj.phase0.collocation_constraint.defects:mass_fuel e 0.000000E+00 4.190388E-15 0.000000E+00 2.71717E+00
89 traj.phase0.collocation_constraint.defects:mass_fuel e 0.000000E+00 -3.809444E-16 0.000000E+00 1.99478E+00
90 traj.phase0.collocation_constraint.defects:alt e 0.000000E+00 -5.952256E-13 0.000000E+00 9.86172E-04
91 traj.phase0.collocation_constraint.defects:alt e 0.000000E+00 3.571353E-12 0.000000E+00 4.33069E-03
92 traj.phase0.collocation_constraint.defects:alt e 0.000000E+00 -8.630771E-12 0.000000E+00 2.97359E-03
93 traj.phase0.collocation_constraint.defects:alt e 0.000000E+00 1.720418E-11 0.000000E+00 8.59420E-04
94 traj.phase0.collocation_constraint.defects:alt e 0.000000E+00 -2.064501E-12 0.000000E+00 3.55092E-03
95 traj.phase0.collocation_constraint.defects:alt e 0.000000E+00 8.946173E-12 0.000000E+00 2.26233E-03
96 traj.phase0.collocation_constraint.defects:alt e 0.000000E+00 -2.411087E-11 0.000000E+00 6.40075E-04
97 traj.phase0.collocation_constraint.defects:alt e 0.000000E+00 7.338092E-12 0.000000E+00 2.61395E-03
98 traj.phase0.collocation_constraint.defects:alt e 0.000000E+00 -1.257959E-11 0.000000E+00 1.73900E-03
99 traj.phase0.collocation_constraint.defects:alt e 0.000000E+00 -5.461703E-12 0.000000E+00 5.01148E-04
100 traj.phase0.collocation_constraint.defects:alt e 0.000000E+00 -5.461703E-12 0.000000E+00 2.25923E-03
101 traj.phase0.collocation_constraint.defects:alt e 0.000000E+00 -1.072539E-11 0.000000E+00 1.65120E-03
102 traj.phase0.collocation_constraint.defects:alt e 0.000000E+00 6.585335E-11 0.000000E+00 4.89950E-04
103 traj.phase0.collocation_constraint.defects:alt e 0.000000E+00 -4.066591E-12 0.000000E+00 2.27350E-03
104 traj.phase0.collocation_constraint.defects:alt e 0.000000E+00 -5.019698E-12 0.000000E+00 1.67327E-03
105 traj.phase0.collocation_constraint.defects:alt e 0.000000E+00 -2.540498E-11 0.000000E+00 4.93864E-04
106 traj.phase0.collocation_constraint.defects:alt e 0.000000E+00 9.860347E-12 0.000000E+00 2.26910E-03
107 traj.phase0.collocation_constraint.defects:alt e 0.000000E+00 1.024452E-12 0.000000E+00 1.66187E-03
108 traj.phase0.collocation_constraint.defects:alt e 0.000000E+00 4.398245E-12 0.000000E+00 4.90212E-04
109 traj.phase0.collocation_constraint.defects:alt e 0.000000E+00 -1.384689E-11 0.000000E+00 2.26333E-03
110 traj.phase0.collocation_constraint.defects:alt e 0.000000E+00 1.410472E-12 0.000000E+00 1.66370E-03
111 traj.phase0.collocation_constraint.defects:alt e 0.000000E+00 2.053861E-11 0.000000E+00 4.91299E-04
112 traj.phase0.collocation_constraint.defects:alt e 0.000000E+00 -4.679831E-12 0.000000E+00 2.26301E-03
113 traj.phase0.collocation_constraint.defects:alt e 0.000000E+00 -3.220529E-12 0.000000E+00 1.65718E-03
114 traj.phase0.collocation_constraint.defects:alt e 0.000000E+00 -1.195109E-11 0.000000E+00 4.88465E-04
115 traj.phase0.collocation_constraint.defects:alt e 0.000000E+00 2.608614E-11 0.000000E+00 2.25224E-03
116 traj.phase0.collocation_constraint.defects:alt e 0.000000E+00 -2.144524E-11 0.000000E+00 1.65844E-03
117 traj.phase0.collocation_constraint.defects:alt e 0.000000E+00 1.728762E-11 0.000000E+00 4.90474E-04
118 traj.phase0.collocation_constraint.defects:alt e 0.000000E+00 -1.223651E-12 0.000000E+00 2.26078E-03
119 traj.phase0.collocation_constraint.defects:alt e 0.000000E+00 2.561129E-13 0.000000E+00 1.64896E-03
120 traj.phase0.collocation_constraint.defects:alt e 0.000000E+00 -3.898844E-11 0.000000E+00 4.85126E-04
121 traj.phase0.collocation_constraint.defects:alt e 0.000000E+00 1.148812E-11 0.000000E+00 2.23199E-03
122 traj.phase0.collocation_constraint.defects:alt e 0.000000E+00 -8.641505E-12 0.000000E+00 1.65675E-03
123 traj.phase0.collocation_constraint.defects:alt e 0.000000E+00 -3.155947E-11 0.000000E+00 4.87938E-04
124 traj.phase0.collocation_constraint.defects:alt e 0.000000E+00 1.194748E-11 0.000000E+00 2.30358E-03
125 traj.phase0.collocation_constraint.defects:alt e 0.000000E+00 0.000000E+00 0.000000E+00 1.65114E-03
126 traj.phase0.collocation_constraint.defects:alt e 0.000000E+00 -2.725577E-11 0.000000E+00 4.74112E-04
127 traj.phase0.collocation_constraint.defects:alt e 0.000000E+00 4.193195E-12 0.000000E+00 2.03005E-03
128 traj.phase0.collocation_constraint.defects:alt e 0.000000E+00 -6.289793E-12 0.000000E+00 1.15805E-03
129 traj.phase0.collocation_constraint.defects:alt e 0.000000E+00 6.193504E-12 0.000000E+00 2.98366E-04
130 traj.phase0.collocation_constraint.defects:alt e 0.000000E+00 6.193504E-12 0.000000E+00 1.02310E-03
131 traj.phase0.collocation_constraint.defects:alt e 0.000000E+00 2.064501E-12 0.000000E+00 3.20758E-04
132 traj.phase0.collocation_constraint.defects:alt e 0.000000E+00 -9.523609E-12 0.000000E+00 4.92442E-05
133 traj.phase0.collocation_constraint.defects:alt e 0.000000E+00 1.785677E-12 0.000000E+00 8.25943E-06
134 traj.phase0.collocation_constraint.defects:alt e 0.000000E+00 1.488064E-12 0.000000E+00 -2.29632E-04
135 traj.phase0.continuity_comp.defect_states:range e 0.000000E+00 0.000000E+00 0.000000E+00 1.00000E+00
136 traj.phase0.continuity_comp.defect_states:range e 0.000000E+00 0.000000E+00 0.000000E+00 1.00000E+00
137 traj.phase0.continuity_comp.defect_states:range e 0.000000E+00 0.000000E+00 0.000000E+00 1.00000E+00
138 traj.phase0.continuity_comp.defect_states:range e 0.000000E+00 0.000000E+00 0.000000E+00 1.00000E+00
139 traj.phase0.continuity_comp.defect_states:range e 0.000000E+00 0.000000E+00 0.000000E+00 1.00000E+00
140 traj.phase0.continuity_comp.defect_states:range e 0.000000E+00 0.000000E+00 0.000000E+00 1.00000E+00
141 traj.phase0.continuity_comp.defect_states:range e 0.000000E+00 0.000000E+00 0.000000E+00 1.00000E+00
142 traj.phase0.continuity_comp.defect_states:range e 0.000000E+00 0.000000E+00 0.000000E+00 1.00000E+00
143 traj.phase0.continuity_comp.defect_states:range e 0.000000E+00 0.000000E+00 0.000000E+00 1.00000E+00
144 traj.phase0.continuity_comp.defect_states:range e 0.000000E+00 0.000000E+00 0.000000E+00 1.00000E+00
145 traj.phase0.continuity_comp.defect_states:range e 0.000000E+00 0.000000E+00 0.000000E+00 1.00000E+00
146 traj.phase0.continuity_comp.defect_states:range e 0.000000E+00 0.000000E+00 0.000000E+00 1.00000E+00
147 traj.phase0.continuity_comp.defect_states:range e 0.000000E+00 0.000000E+00 0.000000E+00 1.00000E+00
148 traj.phase0.continuity_comp.defect_states:range e 0.000000E+00 0.000000E+00 0.000000E+00 1.00000E+00
149 traj.phase0.continuity_comp.defect_states:mass_fuel e 0.000000E+00 0.000000E+00 0.000000E+00 2.53609E-02
150 traj.phase0.continuity_comp.defect_states:mass_fuel e 0.000000E+00 0.000000E+00 0.000000E+00 2.54162E-02
151 traj.phase0.continuity_comp.defect_states:mass_fuel e 0.000000E+00 0.000000E+00 0.000000E+00 2.55189E-02
152 traj.phase0.continuity_comp.defect_states:mass_fuel e 0.000000E+00 0.000000E+00 0.000000E+00 2.56281E-02
153 traj.phase0.continuity_comp.defect_states:mass_fuel e 0.000000E+00 0.000000E+00 0.000000E+00 2.57397E-02
154 traj.phase0.continuity_comp.defect_states:mass_fuel e 0.000000E+00 0.000000E+00 0.000000E+00 2.58667E-02
155 traj.phase0.continuity_comp.defect_states:mass_fuel e 0.000000E+00 0.000000E+00 0.000000E+00 2.60035E-02
156 traj.phase0.continuity_comp.defect_states:mass_fuel e 0.000000E+00 0.000000E+00 0.000000E+00 2.61430E-02
157 traj.phase0.continuity_comp.defect_states:mass_fuel e 0.000000E+00 0.000000E+00 0.000000E+00 2.62826E-02
158 traj.phase0.continuity_comp.defect_states:mass_fuel e 0.000000E+00 0.000000E+00 0.000000E+00 2.64107E-02
159 traj.phase0.continuity_comp.defect_states:mass_fuel e 0.000000E+00 0.000000E+00 0.000000E+00 2.65344E-02
160 traj.phase0.continuity_comp.defect_states:mass_fuel e 0.000000E+00 0.000000E+00 0.000000E+00 2.66036E-02
161 traj.phase0.continuity_comp.defect_states:mass_fuel e 0.000000E+00 0.000000E+00 0.000000E+00 2.65671E-02
162 traj.phase0.continuity_comp.defect_states:mass_fuel e 0.000000E+00 0.000000E+00 0.000000E+00 2.65181E-02
163 traj.phase0.continuity_comp.defect_states:alt e 0.000000E+00 0.000000E+00 0.000000E+00 3.86731E+00
164 traj.phase0.continuity_comp.defect_states:alt e 0.000000E+00 0.000000E+00 0.000000E+00 2.88325E+00
165 traj.phase0.continuity_comp.defect_states:alt e 0.000000E+00 0.000000E+00 0.000000E+00 2.28597E+00
166 traj.phase0.continuity_comp.defect_states:alt e 0.000000E+00 0.000000E+00 0.000000E+00 2.20437E+00
167 traj.phase0.continuity_comp.defect_states:alt e 0.000000E+00 0.000000E+00 0.000000E+00 2.22084E+00
168 traj.phase0.continuity_comp.defect_states:alt e 0.000000E+00 0.000000E+00 0.000000E+00 2.20694E+00
169 traj.phase0.continuity_comp.defect_states:alt e 0.000000E+00 0.000000E+00 0.000000E+00 2.21026E+00
170 traj.phase0.continuity_comp.defect_states:alt e 0.000000E+00 0.000000E+00 0.000000E+00 2.19868E+00
171 traj.phase0.continuity_comp.defect_states:alt e 0.000000E+00 0.000000E+00 0.000000E+00 2.20641E+00
172 traj.phase0.continuity_comp.defect_states:alt e 0.000000E+00 0.000000E+00 0.000000E+00 2.18237E+00
173 traj.phase0.continuity_comp.defect_states:alt e 0.000000E+00 0.000000E+00 0.000000E+00 2.21551E+00
174 traj.phase0.continuity_comp.defect_states:alt e 0.000000E+00 0.000000E+00 0.000000E+00 2.14585E+00
175 traj.phase0.continuity_comp.defect_states:alt e 0.000000E+00 0.000000E+00 0.000000E+00 1.34246E+00
176 traj.phase0.continuity_comp.defect_states:alt e 0.000000E+00 0.000000E+00 0.000000E+00 2.21634E-01
177 traj.phase0.continuity_comp.defect_control_rates:climb_rate_rate e 0.000000E+00 4.657482E-11 0.000000E+00 7.72690E-07
178 traj.phase0.continuity_comp.defect_control_rates:climb_rate_rate e 0.000000E+00 1.444252E-11 0.000000E+00 2.65100E-05
179 traj.phase0.continuity_comp.defect_control_rates:climb_rate_rate e 0.000000E+00 -3.505014E-11 0.000000E+00 -4.96014E-06
180 traj.phase0.continuity_comp.defect_control_rates:climb_rate_rate e 0.000000E+00 -2.366667E-12 0.000000E+00 1.94067E-06
181 traj.phase0.continuity_comp.defect_control_rates:climb_rate_rate e 0.000000E+00 -5.476584E-13 0.000000E+00 -1.05426E-06
182 traj.phase0.continuity_comp.defect_control_rates:climb_rate_rate e 0.000000E+00 1.955923E-13 0.000000E+00 7.50197E-07
183 traj.phase0.continuity_comp.defect_control_rates:climb_rate_rate e 0.000000E+00 8.801653E-14 0.000000E+00 -7.11009E-07
184 traj.phase0.continuity_comp.defect_control_rates:climb_rate_rate e 0.000000E+00 7.823692E-14 0.000000E+00 9.23484E-07
185 traj.phase0.continuity_comp.defect_control_rates:climb_rate_rate e 0.000000E+00 0.000000E+00 0.000000E+00 -1.40286E-06
186 traj.phase0.continuity_comp.defect_control_rates:climb_rate_rate e 0.000000E+00 3.129477E-13 0.000000E+00 2.21033E-06
187 traj.phase0.continuity_comp.defect_control_rates:climb_rate_rate e 0.000000E+00 3.129477E-12 0.000000E+00 -3.86715E-06
188 traj.phase0.continuity_comp.defect_control_rates:climb_rate_rate e 0.000000E+00 5.007163E-12 0.000000E+00 9.52328E-06
189 traj.phase0.continuity_comp.defect_control_rates:climb_rate_rate e 0.000000E+00 -2.269541E-11 0.000000E+00 -4.10011E-05
190 traj.phase0.continuity_comp.defect_control_rates:climb_rate_rate e 0.000000E+00 -1.066690E-11 0.000000E+00 3.54593E-06
191 traj.phase0.continuity_comp.defect_controls:climb_rate e 0.000000E+00 4.547474E-13 0.000000E+00 2.45211E-04
192 traj.phase0.continuity_comp.defect_controls:climb_rate e 0.000000E+00 -4.547474E-13 0.000000E+00 -1.05783E-03
193 traj.phase0.continuity_comp.defect_controls:climb_rate e 0.000000E+00 0.000000E+00 0.000000E+00 -9.04777E-05
194 traj.phase0.continuity_comp.defect_controls:climb_rate e 0.000000E+00 4.263256E-14 0.000000E+00 1.91175E-05
195 traj.phase0.continuity_comp.defect_controls:climb_rate e 0.000000E+00 0.000000E+00 0.000000E+00 -4.36001E-06
196 traj.phase0.continuity_comp.defect_controls:climb_rate e 0.000000E+00 -7.105427E-15 0.000000E+00 1.02418E-06
197 traj.phase0.continuity_comp.defect_controls:climb_rate e 0.000000E+00 8.881784E-16 0.000000E+00 1.12687E-06
198 traj.phase0.continuity_comp.defect_controls:climb_rate e 0.000000E+00 0.000000E+00 0.000000E+00 -3.50837E-06
199 traj.phase0.continuity_comp.defect_controls:climb_rate e 0.000000E+00 -3.552714E-15 0.000000E+00 6.23205E-06
200 traj.phase0.continuity_comp.defect_controls:climb_rate e 0.000000E+00 0.000000E+00 0.000000E+00 -1.07647E-05
201 traj.phase0.continuity_comp.defect_controls:climb_rate e 0.000000E+00 5.329071E-15 0.000000E+00 2.96748E-05
202 traj.phase0.continuity_comp.defect_controls:climb_rate e 0.000000E+00 2.273737E-13 0.000000E+00 -1.40766E-04
203 traj.phase0.continuity_comp.defect_controls:climb_rate e 0.000000E+00 0.000000E+00 0.000000E+00 1.70638E-03
204 traj.phase0.continuity_comp.defect_controls:climb_rate e 0.000000E+00 0.000000E+00 0.000000E+00 1.17877E-03
205 traj.phase0.tau[path] i 1.000000E-02 5.293064E-01 2.000000E+00 -1.24568E-11
206 traj.phase0.tau[path] i 1.000000E-02 5.459977E-01 2.000000E+00 -1.17794E-11
207 traj.phase0.tau[path] i 1.000000E-02 5.710745E-01 2.000000E+00 -1.08249E-11
208 traj.phase0.tau[path] i 1.000000E-02 5.795573E-01 2.000000E+00 -1.05176E-11
209 traj.phase0.tau[path] i 1.000000E-02 5.795573E-01 2.000000E+00 -1.05176E-11
210 traj.phase0.tau[path] i 1.000000E-02 6.296025E-01 2.000000E+00 -8.84184E-12
211 traj.phase0.tau[path] i 1.000000E-02 7.166094E-01 2.000000E+00 -6.35978E-12
212 traj.phase0.tau[path] i 1.000000E-02 7.497818E-01 2.000000E+00 -5.51874E-12
213 traj.phase0.tau[path] i 1.000000E-02 7.497818E-01 2.000000E+00 -5.51874E-12
214 traj.phase0.tau[path] i 1.000000E-02 8.706198E-01 2.000000E+00 -2.76643E-12
215 traj.phase0.tau[path] i 1.000000E-02 9.783659E-01 2.000000E+00 -5.40619E-13
216 traj.phase0.tau[path] i 1.000000E-02 9.719173E-01 2.000000E+00 -6.70503E-13
217 traj.phase0.tau[path] i 1.000000E-02 9.719173E-01 2.000000E+00 -6.70503E-13
218 traj.phase0.tau[path] i 1.000000E-02 8.846865E-01 2.000000E+00 -2.46492E-12
219 traj.phase0.tau[path] i 1.000000E-02 7.714099E-01 2.000000E+00 -4.99174E-12
220 traj.phase0.tau[path] i 1.000000E-02 7.598735E-01 2.000000E+00 -5.27069E-12
221 traj.phase0.tau[path] i 1.000000E-02 7.598735E-01 2.000000E+00 -5.27069E-12
222 traj.phase0.tau[path] i 1.000000E-02 7.532675E-01 2.000000E+00 -5.43533E-12
223 traj.phase0.tau[path] i 1.000000E-02 7.518366E-01 2.000000E+00 -5.47031E-12
224 traj.phase0.tau[path] i 1.000000E-02 7.538610E-01 2.000000E+00 -5.41885E-12
225 traj.phase0.tau[path] i 1.000000E-02 7.538610E-01 2.000000E+00 -5.41885E-12
226 traj.phase0.tau[path] i 1.000000E-02 7.607275E-01 2.000000E+00 -5.24664E-12
227 traj.phase0.tau[path] i 1.000000E-02 7.668862E-01 2.000000E+00 -5.09763E-12
228 traj.phase0.tau[path] i 1.000000E-02 7.671536E-01 2.000000E+00 -5.09350E-12
229 traj.phase0.tau[path] i 1.000000E-02 7.671536E-01 2.000000E+00 -5.09350E-12
230 traj.phase0.tau[path] i 1.000000E-02 7.659280E-01 2.000000E+00 -5.12945E-12
231 traj.phase0.tau[path] i 1.000000E-02 7.630009E-01 2.000000E+00 -5.20229E-12
232 traj.phase0.tau[path] i 1.000000E-02 7.619392E-01 2.000000E+00 -5.22599E-12
233 traj.phase0.tau[path] i 1.000000E-02 7.619392E-01 2.000000E+00 -5.22599E-12
234 traj.phase0.tau[path] i 1.000000E-02 7.606807E-01 2.000000E+00 -5.25062E-12
235 traj.phase0.tau[path] i 1.000000E-02 7.651017E-01 2.000000E+00 -5.14128E-12
236 traj.phase0.tau[path] i 1.000000E-02 7.685948E-01 2.000000E+00 -5.05890E-12
237 traj.phase0.tau[path] i 1.000000E-02 7.685948E-01 2.000000E+00 -5.05890E-12
238 traj.phase0.tau[path] i 1.000000E-02 7.751751E-01 2.000000E+00 -4.90630E-12
239 traj.phase0.tau[path] i 1.000000E-02 7.698305E-01 2.000000E+00 -5.03398E-12
240 traj.phase0.tau[path] i 1.000000E-02 7.629943E-01 2.000000E+00 -5.19614E-12
241 traj.phase0.tau[path] i 1.000000E-02 7.629943E-01 2.000000E+00 -5.19614E-12
242 traj.phase0.tau[path] i 1.000000E-02 7.508299E-01 2.000000E+00 -5.48775E-12
243 traj.phase0.tau[path] i 1.000000E-02 7.635160E-01 2.000000E+00 -5.17782E-12
244 traj.phase0.tau[path] i 1.000000E-02 7.778111E-01 2.000000E+00 -4.83835E-12
245 traj.phase0.tau[path] i 1.000000E-02 7.778111E-01 2.000000E+00 -4.83835E-12
246 traj.phase0.tau[path] i 1.000000E-02 8.060090E-01 2.000000E+00 -4.18894E-12
247 traj.phase0.tau[path] i 1.000000E-02 8.034672E-01 2.000000E+00 -4.24867E-12
248 traj.phase0.tau[path] i 1.000000E-02 7.873297E-01 2.000000E+00 -4.61979E-12
249 traj.phase0.tau[path] i 1.000000E-02 7.873297E-01 2.000000E+00 -4.61979E-12
250 traj.phase0.tau[path] i 1.000000E-02 6.985485E-01 2.000000E+00 -6.83738E-12
251 traj.phase0.tau[path] i 1.000000E-02 4.201178E-01 2.000000E+00 -1.80521E-11
252 traj.phase0.tau[path] i 1.000000E-02 3.127167E-01 2.000000E+00 -2.71076E-11
253 traj.phase0.tau[path] i 1.000000E-02 3.127167E-01 2.000000E+00 -2.71076E-11
254 traj.phase0.tau[path] i 1.000000E-02 1.836617E-01 2.000000E+00 -5.20795E-11
255 traj.phase0.tau[path] i 1.000000E-02 1.531111E-01 2.000000E+00 -6.44618E-11
256 traj.phase0.tau[path] i 1.000000E-02 1.633905E-01 2.000000E+00 -5.97480E-11
257 traj.phase0.tau[path] i 1.000000E-02 1.633905E-01 2.000000E+00 -5.97480E-11
258 traj.phase0.tau[path] i 1.000000E-02 1.816829E-01 2.000000E+00 -5.27466E-11
259 traj.phase0.tau[path] i 1.000000E-02 2.026853E-01 2.000000E+00 -4.63342E-11
260 traj.phase0.tau[path] i 1.000000E-02 2.082759E-01 2.000000E+00 -4.48539E-11
261 traj.phase0.tau[path] i 1.000000E-02 2.082759E-01 2.000000E+00 -4.48539E-11
262 traj.phase0.tau[path] i 1.000000E-02 2.133263E-01 2.000000E+00 -4.35855E-11
263 traj.phase0.tau[path] i 1.000000E-02 2.195263E-01 2.000000E+00 -4.21101E-11
264 traj.phase0.tau[path] i 1.000000E-02 2.213099E-01 2.000000E+00 -4.17013E-11
Exit Status
Inform Description
0 Solve Succeeded
--------------------------------------------------------------------------------
/usr/share/miniconda/envs/test/lib/python3.13/site-packages/openmdao/visualization/opt_report/opt_report.py:611: UserWarning: Attempting to set identical low and high ylims makes transformation singular; automatically expanding.
ax.set_ylim([ymin_plot, ymax_plot])
Simulating trajectory traj
Done simulating trajectory traj
Problem: problem
Driver: pyOptSparseDriver
success : True
iterations : 72
runtime : 3.9145E+01 s
model_evals : 72
model_time : 3.3173E+01 s
deriv_evals : 71
deriv_time : 3.1182E+00 s
exit_status : SUCCESS
from IPython.display import HTML
# Define the path to the HTML file
html_file_path = p.get_reports_dir() / 'traj_results_report.html'
html_content = html_file_path.read_text()
# Inject CSS to control the output cell height and avoid scrollbars
html_with_custom_height = f"""
<div style="height: 800px; overflow: auto;">
{html_content}
</div>
"""
HTML(html_with_custom_height)
References#
John T Betts and Evin J Cramer. Application of direct transcription to commercial aircraft trajectory optimization. Journal of Guidance, Control, and Dynamics, 18(1):151–159, 1995.
Fariba Fahroo and I Michael Ross. Second look at approximating differential inclusions. Journal of Guidance, Control, and Dynamics, 24(1):131–133, 2001.
Renjith R Kumar and Hans Seywald. Should controls be eliminated while solving optimal control problems via direct methods? Journal of Guidance, Control, and Dynamics, 19(2):418–423, mar 1996. URL: https://doi.org/10.2514/3.21634, doi:10.2514/3.21634.
Hans Seywald. Trajectory optimization based on differential inclusion (Revised). Journal of Guidance, Control, and Dynamics, 17(3):480–487, may 1994. URL: https://doi.org/10.2514/3.21224, doi:10.2514/3.21224.