Skip to content

Commit 85b9319

Browse files
authored
Raise the probe limit from 10 to 64 (#1845)
1 parent fbddfa9 commit 85b9319

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/common/m_constants.fpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ module m_constants
2222
integer, parameter :: dflt_int = -100 !< Default integer value
2323
integer, parameter :: fourier_rings = 5 !< Fourier filter ring limit
2424
integer, parameter :: num_fluids_max = 10 !< Maximum number of fluids in the simulation
25-
integer, parameter :: num_probes_max = 10 !< Maximum number of flow probes in the simulation
25+
integer, parameter :: num_probes_max = 64 !< Maximum number of flow probes in the simulation
2626
integer, parameter :: num_patches_max = 10 !< Maximum number of IC patches
2727
integer, parameter :: num_ib_airfoils_max = 5 !< Maximum number of ib_airfoil instances
2828
integer, parameter :: num_stl_models_max = 10

toolchain/mfc/params/definitions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def _fc(name: str, default: int) -> int:
2727

2828

2929
NF = _fc("num_fluids_max", 10) # fluid_pp
30-
NPR = _fc("num_probes_max", 10) # probe, acoustic
30+
NPR = _fc("num_probes_max", 64) # probe, acoustic
3131
NB = _fc("num_bc_patches_max", 10) # patch_bc
3232
NUM_PATCHES_MAX = _fc("num_patches_max", 10) # patch_icpp (Fortran array bound)
3333
NIB = _fc("num_ib_patches_max_namelist", 54000) # patch_ib namelist array bound

0 commit comments

Comments
 (0)