Skip to content

Commit

Permalink
adding two burn orbit raise mpi example back in with radau transcript…
Browse files Browse the repository at this point in the history
…ion instead of gl
  • Loading branch information
robfalck committed Nov 15, 2024
1 parent 7783cf3 commit e4e4e1e
Showing 1 changed file with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@


@require_pyoptsparse(optimizer='IPOPT')
# @unittest.skipUnless(MPI, "MPI is required.")
@unittest.skip
@unittest.skipUnless(MPI, "MPI is required.")
@use_tempdirs
class TestExampleTwoBurnOrbitRaiseMPI(unittest.TestCase):
N_PROCS = 3
Expand All @@ -21,7 +20,7 @@ def test_ex_two_burn_orbit_raise_mpi(self):

CONNECTED = False

p = two_burn_orbit_raise_problem(transcription='gauss-lobatto', transcription_order=3,
p = two_burn_orbit_raise_problem(transcription='radau', transcription_order=3,
compressed=False, optimizer=optimizer, simulate=True,
connected=CONNECTED, show_output=False)

Expand All @@ -46,7 +45,7 @@ def test_ex_two_burn_orbit_raise_connected_mpi(self):

CONNECTED = True

p = two_burn_orbit_raise_problem(transcription='gauss-lobatto', transcription_order=3,
p = two_burn_orbit_raise_problem(transcription='radau', transcription_order=3,
compressed=False, optimizer=optimizer, simulate=True,
connected=CONNECTED, show_output=False)

Expand Down

0 comments on commit e4e4e1e

Please sign in to comment.