Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions src/simulation/m_data_output.fpp
Original file line number Diff line number Diff line change
Expand Up @@ -1516,8 +1516,9 @@ contains
& vel(1), vel(2), pres, tau_e(1), tau_e(2), tau_e(3)
#:endif
else
write (i + 30, '(6X,F12.6,F24.8,F24.8,F24.8)') nondim_time, rho, vel(1), pres
print *, 'time =', nondim_time, 'rho =', rho, 'pres =', pres
#:if not MFC_CASE_OPTIMIZATION or num_dims > 1
write (i + 30, '(6X,F12.6,F24.8,F24.8,F24.8,F24.8)') nondim_time, rho, vel(1), vel(2), pres
#:endif
end if
else
#:if not MFC_CASE_OPTIMIZATION or num_dims > 2
Expand Down
160 changes: 160 additions & 0 deletions tests/863E4401/golden-metadata.txt

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 11 additions & 0 deletions tests/863E4401/golden.txt

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions toolchain/mfc/test/cases.py
Original file line number Diff line number Diff line change
Expand Up @@ -620,6 +620,10 @@ def alter_num_fluids(dimInfo):
if len(dimInfo[0]) > 1:
alter_capillary()

if num_fluids == 1 and len(dimInfo[0]) == 2:
# Plain 2D probe (no bubbles, no hypoelasticity): guards the vel(2) column in probe<i>_prim.dat
cases.append(define_case_d(stack, "probe", {"probe_wrt": "T", "fd_order": 1, "num_probes": 1, "probe(1)%x": 0.5, "probe(1)%y": 0.5, "patch_icpp(2)%vel(2)": 0.1}))

alter_riemann_solvers(num_fluids)
alter_low_Mach_correction()
alter_ib(dimInfo)
Expand Down
Loading