@@ -149,6 +149,7 @@ module m_global_parameters
149149
150150 real (kind (0d0 )) :: weno_eps !< Binding for the WENO nonlinear weights
151151 real (kind (0d0 )) :: teno_CT !< Smoothness threshold for TENO
152+ real (kind (0d0 )) :: wenoz_q !< Power constant for WENO- Z
152153 logical :: mp_weno !< Monotonicity preserving (MP) WENO
153154 logical :: weno_avg ! Average left/ right cell- boundary states
154155 logical :: weno_Re_flux !< WENO reconstruct velocity gradients for viscous stress tensor
@@ -180,7 +181,7 @@ module m_global_parameters
180181 !$acc declare create(num_dims, weno_polyn, weno_order, num_fluids, wenojs, mapped_weno, wenoz, teno)
181182 #:endif
182183
183- !$acc declare create(mpp_lim, model_eqns, mixture_err, alt_soundspeed, avg_state, mp_weno, weno_eps, teno_CT, hypoelasticity, low_Mach)
184+ !$acc declare create(mpp_lim, model_eqns, mixture_err, alt_soundspeed, avg_state, mp_weno, weno_eps, teno_CT, wenoz_q, hypoelasticity, low_Mach)
184185
185186 logical :: relax !< activate phase change
186187 integer :: relax_model !< Relaxation model
@@ -528,6 +529,7 @@ contains
528529 time_stepper = dflt_int
529530 weno_eps = dflt_real
530531 teno_CT = dflt_real
532+ wenoz_q = dflt_real
531533 mp_weno = .false.
532534 weno_avg = .false.
533535 weno_Re_flux = .false.
@@ -1109,7 +1111,7 @@ contains
11091111 !$acc update device(cfl_target, m, n, p)
11101112
11111113 !$acc update device(alt_soundspeed, acoustic_source, num_source)
1112- !$acc update device(dt, sys_size, buff_size, pref, rhoref, gamma_idx, pi_inf_idx, E_idx, alf_idx, stress_idx, mpp_lim, bubbles, hypoelasticity, alt_soundspeed, avg_state, num_fluids, model_eqns, num_dims, mixture_err, grid_geometry, cyl_coord, mp_weno, weno_eps, teno_CT, low_Mach)
1114+ !$acc update device(dt, sys_size, buff_size, pref, rhoref, gamma_idx, pi_inf_idx, E_idx, alf_idx, stress_idx, mpp_lim, bubbles, hypoelasticity, alt_soundspeed, avg_state, num_fluids, model_eqns, num_dims, mixture_err, grid_geometry, cyl_coord, mp_weno, weno_eps, teno_CT, wenoz_q, low_Mach)
11131115
11141116 #:if not MFC_CASE_OPTIMIZATION
11151117 !$acc update device(wenojs, mapped_weno, wenoz, teno)
0 commit comments