diff --git a/include/sim.h b/include/sim.h index 9d11248..97a1238 100644 --- a/include/sim.h +++ b/include/sim.h @@ -95,7 +95,7 @@ void burnStartTimeCalc(Vehicle &State) { h = integral(velocity, h, State.stepSize); } - State.z = h + (pow(velocity, 2) / (2 * -g)); // starting height + State.z = 18.88;//h + (pow(velocity, 2) / (2 * -g)); // starting height State.burnVelocity = velocity; // terminal velocity std::cout << State.z << std::endl;