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 c438427 commit a23f60eCopy full SHA for a23f60e
CHANGELOG.md
@@ -42,7 +42,7 @@ Attention: The newest changes should be on top -->
42
43
44
### Fixed
45
-
+- BUG: Non-overshootable simulations error on time parsing. [#807](https://github.com/RocketPy-Team/RocketPy/pull/807)
46
47
## v1.9.0 - 2025-03-24
48
rocketpy/simulation/flight.py
@@ -1277,8 +1277,8 @@ def __set_ode_solver(self, solver):
1277
f"Invalid ``ode_solver`` input: {solver}. "
1278
f"Available options are: {', '.join(ODE_SOLVER_MAP.keys())}"
1279
) from e
1280
1281
- self.__is_lsoda = hasattr(self._solver, "_lsoda_solver")
+
+ self.__is_lsoda = issubclass(self._solver, LSODA)
1282
1283
@cached_property
1284
def effective_1rl(self):
0 commit comments