We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c674725 commit 7ba5a7dCopy full SHA for 7ba5a7d
rocketpy/stochastic/stochastic_flight.py
@@ -87,7 +87,10 @@ def __init__(
87
88
self.initial_solution = initial_solution
89
self.terminate_on_apogee = terminate_on_apogee
90
- self.time_overshoot = time_overshoot
+ if time_overshoot is None:
91
+ self.time_overshoot = flight.time_overshoot
92
+ else:
93
+ self.time_overshoot = time_overshoot
94
95
def _validate_initial_solution(self, initial_solution):
96
if initial_solution is not None:
0 commit comments