Skip to content

Commit

Permalink
Changed default embedded second-order MRI-GARK method to ARKODE_MRI_G…
Browse files Browse the repository at this point in the history
…ARK_ERK22b (to match fixed-step default)
  • Loading branch information
drreynolds committed Oct 4, 2024
1 parent 884b78d commit bb0dc39
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions doc/arkode/guide/source/Usage/MRIStep/MRIStepCoupling.rst
Original file line number Diff line number Diff line change
Expand Up @@ -413,8 +413,8 @@ with values specified for each method below (e.g., ``ARKODE_MIS_KW3``).
Table name Method Order Embedding Order Slow RHS Calls Reference
====================================== ================== =============== ============== =====================
:index:`ARKODE_MRI_GARK_FORWARD_EULER` :math:`1^*` -- 1
:index:`ARKODE_MRI_GARK_ERK22a` :math:`2^{\circ}` 1 2 :cite:p:`Sandu:19`
:index:`ARKODE_MRI_GARK_ERK22b` :math:`2^*` 1 2 :cite:p:`Sandu:19`
:index:`ARKODE_MRI_GARK_ERK22a` 2 1 2 :cite:p:`Sandu:19`
:index:`ARKODE_MRI_GARK_ERK22b` :math:`2^{*\circ}` 1 2 :cite:p:`Sandu:19`
:index:`ARKODE_MRI_GARK_RALSTON2` 2 1 2 :cite:p:`Roberts:22`
:index:`ARKODE_MERK21` 2 1 2 :cite:p:`Luan:20`
:index:`ARKODE_MIS_KW3` :math:`3^*` -- 3 :cite:p:`Schlegel:09`
Expand Down
2 changes: 1 addition & 1 deletion include/arkode/arkode_mristep.h
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ static const int MRISTEP_DEFAULT_EXPL_2 = ARKODE_MRI_GARK_ERK22b;
static const int MRISTEP_DEFAULT_EXPL_3 = ARKODE_MIS_KW3;
static const int MRISTEP_DEFAULT_EXPL_4 = ARKODE_MRI_GARK_ERK45a;

static const int MRISTEP_DEFAULT_EXPL_2_AD = ARKODE_MRI_GARK_ERK22a;
static const int MRISTEP_DEFAULT_EXPL_2_AD = ARKODE_MRI_GARK_ERK22b;
static const int MRISTEP_DEFAULT_EXPL_3_AD = ARKODE_MRI_GARK_ERK33a;
static const int MRISTEP_DEFAULT_EXPL_4_AD = ARKODE_MRI_GARK_ERK45a;
static const int MRISTEP_DEFAULT_EXPL_5_AD = ARKODE_MERK54;
Expand Down

0 comments on commit bb0dc39

Please sign in to comment.