1
0
mirror of https://gitlab.com/lander-team/lander-cpp.git synced 2025-06-16 15:17:23 +00:00

fixed issue where while loop didnt work on linux

This commit is contained in:
Anson Biggs 2021-09-16 05:05:10 +00:00
parent dbb6888602
commit e18a0f03f7

View File

@ -19,7 +19,7 @@ bool sim(struct Vehicle &State, struct Vehicle &PrevState) {
// defining a few random values here cause I'm lazy
State.burnElapsed = 2000;
State.mass = State.massInitial;
PrevState.thrust = 0;
PrevState.thrust = 0.0;
burnStartTimeCalc(State);
@ -52,7 +52,7 @@ bool sim(struct Vehicle &State, struct Vehicle &PrevState) {
vehicleDynamics(State, PrevState, t);
write2CSV(State, outfile, t);
t++;
} while ((State.z > 0) && (State.thrust != 0));
} while ((State.z > 0.0) || (State.thrust > 1.0));
outfile.close();