We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b8e68b commit eae5954Copy full SHA for eae5954
src/simulation/m_mpi_proxy.fpp
@@ -213,7 +213,7 @@ contains
213
#:endfor
214
end if
215
216
- #:for VAR in [ 'dt','weno_eps','wenoz_q','teno_CT','pref','rhoref','R0ref','Web','Ca', 'sigma', &
+ #:for VAR in [ 'dt','weno_eps','teno_CT','pref','rhoref','R0ref','Web','Ca', 'sigma', &
217
& 'Re_inv', 'poly_sigma', 'palpha_eps', 'ptgalpha_eps', 'pi_fac', &
218
& 'bc_x%vb1','bc_x%vb2','bc_x%vb3','bc_x%ve1','bc_x%ve2','bc_x%ve2', &
219
& 'bc_y%vb1','bc_y%vb2','bc_y%vb3','bc_y%ve1','bc_y%ve2','bc_y%ve3', &
@@ -230,6 +230,7 @@ contains
230
call MPI_BCAST(weno_order, 1, MPI_INTEGER, 0, MPI_COMM_WORLD, ierr)
231
call MPI_BCAST(nb, 1, MPI_INTEGER, 0, MPI_COMM_WORLD, ierr)
232
call MPI_BCAST(num_fluids, 1, MPI_INTEGER, 0, MPI_COMM_WORLD, ierr)
233
+ call MPI_BCAST(wenoz_q, 1, MPI_DOUBLE_PRECISION, 0, MPI_COMM_WORLD, ierr)
234
#:endif
235
236
do i = 1, num_fluids_max
toolchain/mfc/case.py
@@ -199,7 +199,7 @@ def __get_sim_fpp(self, print: bool) -> str:
199
else:
200
weno_num_stencils = weno_polyn
201
202
- # Throw error if wenoz_q or teno_CT are required but not set
+ # Throw error if wenoz_q is required but not set
203
return f"""\
204
#:set MFC_CASE_OPTIMIZATION = {ARG("case_optimization")}
205
#:set weno_order = {weno_order}
@@ -213,7 +213,7 @@ def __get_sim_fpp(self, print: bool) -> str:
#:set mapped_weno = {mapped_weno}
#:set wenoz = {wenoz}
#:set teno = {teno}
-#:set wenoz_q = {int(self.params.get("wenoz_q", -1))}
+#:set wenoz_q = {self.params.get("wenoz_q", -1)}
"""
return """\
0 commit comments