Skip to content

Commit d863869

Browse files
authored
Fix input probe number limit (#804)
1 parent c38609e commit d863869

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

toolchain/mfc/run/case_dicts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@ def analytic(self):
308308
for prepend in ["domain%beg", "domain%end"]:
309309
SIMULATION[f"{cmp}_{prepend}"] = ParamType.REAL
310310

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

0 commit comments

Comments
 (0)