Skip to content
Open
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
2 changes: 1 addition & 1 deletion src/common/m_constants.fpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ module m_constants
integer, parameter :: dflt_int = -100 !< Default integer value
integer, parameter :: fourier_rings = 5 !< Fourier filter ring limit
integer, parameter :: num_fluids_max = 10 !< Maximum number of fluids in the simulation
integer, parameter :: num_probes_max = 10 !< Maximum number of flow probes in the simulation
integer, parameter :: num_probes_max = 64 !< Maximum number of flow probes in the simulation
integer, parameter :: num_patches_max = 10 !< Maximum number of IC patches
integer, parameter :: num_ib_airfoils_max = 5 !< Maximum number of ib_airfoil instances
integer, parameter :: num_stl_models_max = 10
Expand Down
2 changes: 1 addition & 1 deletion toolchain/mfc/params/definitions.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def _fc(name: str, default: int) -> int:


NF = _fc("num_fluids_max", 10) # fluid_pp
NPR = _fc("num_probes_max", 10) # probe, acoustic
NPR = _fc("num_probes_max", 64) # probe, acoustic
NB = _fc("num_bc_patches_max", 10) # patch_bc
NUM_PATCHES_MAX = _fc("num_patches_max", 10) # patch_icpp (Fortran array bound)
NIB = _fc("num_ib_patches_max_namelist", 54000) # patch_ib namelist array bound
Expand Down
Loading