Skip to content

Commit 650ae57

Browse files
committed
satiate
1 parent 30fab57 commit 650ae57

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed

src/post_process/m_data_output.fpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ contains
168168
169169
! The size of the ghost zone layer in each of the active coordinate
170170
! directions was set in the module m_mpi_proxy.f90. The results are
171-
! now transfered to the local variables of this module when they are
171+
! now transferred to the local variables of this module when they are
172172
! required by the Silo-HDF5 format, for multidimensional data sets.
173173
! With the same, latter, requirements, the variables bookkeeping the
174174
! number of cell-boundaries in each active coordinate direction are

src/pre_process/include/3dHardcodedIC.fpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
q_prim_vf(E_idx)%sf(i, j, k) = pref + rhoH*9.81_wp*(1.2_wp - y_cc(j))
3737
else
3838
q_prim_vf(advxb)%sf(i, j, k) = alph
39-
q_prim_vf(advxe)%sf(i, j, k) = 1._wp- alph
39+
q_prim_vf(advxe)%sf(i, j, k) = 1._wp - alph
4040
q_prim_vf(contxb)%sf(i, j, k) = alph*rhoH
4141
q_prim_vf(contxe)%sf(i, j, k) = (1._wp - alph)*rhoL
4242
pInt = pref + rhoH*9.81_wp*(1.2_wp - intH)

toolchain/mfc/bench.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,4 +168,3 @@ def _lock_to_str(lock):
168168

169169
if err != 0:
170170
raise MFCException("Benchmarking failed")
171-

toolchain/mfc/test/test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ def handle_case(case: TestCase, devices: typing.Set[int]):
260260
_handle_case(case, devices)
261261
nPASS += 1
262262
except Exception as exc:
263-
if nAttempts < ARG("max_attempts"):
263+
if nAttempts < max_attempts:
264264
cons.print(f"[bold yellow] Attempt {nAttempts}: Failed test {case.get_uuid()}. Retrying...[/bold yellow]")
265265
errors.append(f"[bold yellow] Attempt {nAttempts}: Failed test {case.get_uuid()}. Retrying...[/bold yellow]")
266266
continue

0 commit comments

Comments
 (0)