Skip to content

Commit

Permalink
Fix input probe number limit (#804)
Browse files Browse the repository at this point in the history
  • Loading branch information
haochey authored Feb 28, 2025
1 parent c38609e commit d863869
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion toolchain/mfc/run/case_dicts.py
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ def analytic(self):
for prepend in ["domain%beg", "domain%end"]:
SIMULATION[f"{cmp}_{prepend}"] = ParamType.REAL

for probe_id in range(1,3+1):
for probe_id in range(1,10+1):
for cmp in ["x", "y", "z"]:
SIMULATION[f'probe({probe_id})%{cmp}'] = ParamType.REAL

Expand Down

0 comments on commit d863869

Please sign in to comment.