File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ Attention: The newest changes should be on top -->
3737
3838
3939### Fixed
40-
40+ - BUG: Non-overshootable simulations error on time parsing. [ # 807 ] ( https://github.com/RocketPy-Team/RocketPy/pull/807 )
4141
4242## v1.9.0 - 2025-03-24
4343
Original file line number Diff line number Diff line change @@ -1267,14 +1267,13 @@ def __set_ode_solver(self, solver):
12671267 else :
12681268 try :
12691269 self ._solver = ODE_SOLVER_MAP [solver ]
1270+ self .__is_lsoda = issubclass (self ._solver , LSODA )
12701271 except KeyError as e : # pragma: no cover
12711272 raise ValueError (
12721273 f"Invalid ``ode_solver`` input: { solver } . "
12731274 f"Available options are: { ', ' .join (ODE_SOLVER_MAP .keys ())} "
12741275 ) from e
12751276
1276- self .__is_lsoda = hasattr (self ._solver , "_lsoda_solver" )
1277-
12781277 @cached_property
12791278 def effective_1rl (self ):
12801279 """Original rail length minus the distance measured from nozzle exit
You can’t perform that action at this time.
0 commit comments