Skip to content

Commit 9367dcb

Browse files
committedAug 19, 2024
Finished removing mentions of SolveIVP.
1 parent 49c4615 commit 9367dcb

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed
 

‎dymos/examples/min_time_climb/test/test_ex_min_time_climb.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ def _test_mach_rate(self, p, plot=False, time_name='time'):
239239
assert_near_equal(mach_rate_nodes, deriv(time_nodes), tolerance=1.0E-9)
240240

241241
# Comparing the mach rate over the entire trajectory since it is expected to be off at some points due to
242-
# the equidistant time-spacing of nodes in SolveIVP's timeseries outputs.
242+
# the equidistant time-spacing of nodes in ExplicitShooting's timeseries outputs.
243243
assert_timeseries_near_equal(t_ref=time, x_ref=mach_rate, t_check=sim_time, x_check=sim_mach_rate,
244244
abs_tolerance=0.02, rel_tolerance=0.02)
245245

‎dymos/phase/test/test_timeseries.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ def test_timeseries_gl(self, test_smaller_timeseries=False):
9797
assert_near_equal(p.get_val(f'phase0.parameter_vals:{dp}')[0],
9898
p.get_val(f'phase0.timeseries.{dp}')[i])
9999

100-
# call simulate to test SolveIVP transcription
100+
# test simulation
101101
exp_out = phase.simulate()
102102
if test_smaller_timeseries:
103103
with self.assertRaises(KeyError):
@@ -185,7 +185,7 @@ def test_timeseries_radau(self, test_smaller_timeseries=False):
185185
assert_near_equal(p.get_val(f'phase0.parameters:{dp}')[0],
186186
p.get_val(f'phase0.timeseries.{dp}')[i])
187187

188-
# call simulate to test SolveIVP transcription
188+
# test simulation
189189
exp_out = phase.simulate()
190190
if test_smaller_timeseries:
191191
with self.assertRaises(KeyError):

‎dymos/transcriptions/__init__.py

-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,3 @@
33
from .pseudospectral.gauss_lobatto import GaussLobatto
44
from .pseudospectral.radau_pseudospectral import Radau
55
from .pseudospectral.birkhoff import Birkhoff
6-
from .solve_ivp.solve_ivp import SolveIVP

0 commit comments

Comments
 (0)