@@ -14,7 +14,8 @@ module m_rhs
1414 use m_mpi_proxy
1515 use m_variables_conversion
1616 use m_weno
17- use m_constants, only: riemann_solver_hll, riemann_solver_hlld, model_eqns_6eq, int_comp_mthinc
17+ use m_constants, only: riemann_solver_hll, riemann_solver_hlld, model_eqns_6eq, int_comp_mthinc, recon_type_weno, &
18+ & recon_type_muscl
1819 use m_muscl
1920 use m_riemann_solvers
2021 use m_cbc
@@ -1600,7 +1601,7 @@ contains
16001601 integer :: recon_dir !< Coordinate direction of the reconstruction
16011602 integer :: i, j, k, l
16021603
1603- #:for SCHEME, TYPE in [(' weno' ,' WENO_TYPE ' ), (' muscl' ,' MUSCL_TYPE ' )]
1604+ #:for SCHEME, TYPE in [(' weno' ,' recon_type_weno ' ), (' muscl' ,' recon_type_muscl ' )]
16041605 if (recon_type == ${TYPE}$) then
16051606 ! Reconstruction in s1-direction
16061607 if (norm_dir == 1) then
@@ -1635,7 +1636,7 @@ contains
16351636 integer :: i, j, k, l
16361637 ! Reconstruction in s1-direction
16371638
1638- #:for SCHEME, TYPE in [(' weno' ,' WENO_TYPE ' ), (' muscl' , ' MUSCL_TYPE ' )]
1639+ #:for SCHEME, TYPE in [(' weno' ,' recon_type_weno ' ), (' muscl' , ' recon_type_muscl ' )]
16391640 if (recon_type == ${TYPE}$) then
16401641 if (norm_dir == 1) then
16411642 is1 = idwbuff(1); is2 = idwbuff(2); is3 = idwbuff(3)
0 commit comments