Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions torax/tests/sim_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -258,6 +258,13 @@ class SimTest(sim_test_case.SimTestCase):
'test_iterhybrid_predictor_corrector_tglfnn_ukaea',
'test_iterhybrid_predictor_corrector_tglfnn_ukaea.py',
),
# Predictor-corrector solver with TGLFNNukaea transport with rotation
(
'test_iterhybrid_predictor_corrector_tglfnn_ukaea_rotation',
'test_iterhybrid_predictor_corrector_tglfnn_ukaea_rotation.py',
_ALL_PROFILES,
1e-6,
),
# Predictor-corrector solver with rotation
(
'test_iterhybrid_predictor_corrector_rotation',
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,7 @@
0.0: 1.8 * _omega_ref,
1.0: 0.0,
}

# Reduce the final time since numerical difference across platforms can
# cause significant divergences over time.
CONFIG['numerics']['t_final'] = 1.0
Loading