Orbiter Flight Data Log Record
==============================
Columns:
TIME: simulation time (seconds)
ALT: altitude (km)
AIRSPEED: airspeed (m/s)
MACH: Mach number
TEMP: freestream temperature (K)
STP: static pressure (kPa)
DNP: dynamic pressure (kPa)
AOA: angle of attack (deg)
SLIP: horizontal slip angle (deg)
LIFT: total lift force (kN)
DRAG: total drag force (kN)
L/D: lift/drag ratio
MASS: vessel mass (kg)
# Log started for GL-01
# ____TIME _______ALT _______STP _______DNP
276.24 10.9236 22.9737 54.6051
277.25 10.9713 22.8027 55.0872
278.26 11.0175 22.6379 55.5751
279.26 11.0618 22.4807 55.9923
# Log stopped for GL-01
By step-wise integration?. The roughest approximation to a solution would be to assume the thrust for each time step is the same value as it was at the previous time step (pseudocode):To go back to the original problem, how do I get thrust(t) from thrust(h)?
t0 = 0
h(t0) = 0
h(t+n) = h(t+(n-1)) + someFunction(thrust(t+(n-1)),mass(t+(n-1)),pitchProgram(t+(n-1)),drag(t+(n-1)))