File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -32,6 +32,7 @@ Attention: The newest changes should be on top -->
32
32
33
33
### Added
34
34
35
+ - BUG: Fix StochasticFlight time_overshoot None bug [ #805 ] (https://github.com/RocketPy-Team/RocketPy/pull/805 )
35
36
- ENH: Implement Multivariate Rejection Sampling (MRS) [ #738 ] (https://github.com/RocketPy-Team/RocketPy/pull/738 )
36
37
- ENH: Create a rocketpy file to store flight simulations [ #800 ] ( https://github.com/RocketPy-Team/RocketPy/pull/800 )
37
38
- ENH: Support for the RSE file format has been added to the library [ #798 ] ( https://github.com/RocketPy-Team/RocketPy/pull/798 )
Original file line number Diff line number Diff line change @@ -87,7 +87,10 @@ def __init__(
87
87
88
88
self .initial_solution = initial_solution
89
89
self .terminate_on_apogee = terminate_on_apogee
90
- self .time_overshoot = time_overshoot
90
+ if time_overshoot is None :
91
+ self .time_overshoot = flight .time_overshoot
92
+ else :
93
+ self .time_overshoot = time_overshoot
91
94
92
95
def _validate_initial_solution (self , initial_solution ):
93
96
if initial_solution is not None :
You can’t perform that action at this time.
0 commit comments