Newer
Older
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object controlDict;
// NB: the #functions do not work here
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
Documentation
{
docBrowser "firefox -new-tab %f";
doxySourceFileExt "_8C.html";
// Places to search for documentation, http is last in the list
"$WM_PROJECT_USER_DIR/html"
"$WM_PROJECT_DIR/doc/Doxygen/html"
"https://www.openfoam.com/documentation/guides/latest/api/"
);
InfoSwitches
{
// The default ASCII write precision
writePrecision 6;
// The output level (verbosity) of messages
// - 0 : suppress all output
// - 1 : normal output
// - >= 2 : report source file and line number (default)
outputLevel 2;
// Report information as baseIOdictionary are read in
writeDictionaries 0;
// Report optional dictionary entries. For value > 1, treat as fatal.
writeOptionalEntries 0;
// Write lagrangian "positions" file in v1706 format (and earlier)
writeLagrangianPositions 1;
// Report hosts used (parallel)
// - 0 = none
// - 1 = per-host-count, but unsorted
// - 2 = long output with host.pid ...
writeHosts 1;
// Report list of roots used (parallel)
writeRoots 1;
// Enable job info
writeJobInfo 0;
// Style for "ExecutionTime = " output
// - 0 = seconds (with trailing 's')
// - 1 = day-hh:mm::ss
printExecutionFormat 0;
// Allow profiling
allowProfiling 1;
// Allow case-supplied C++ code (#codeStream, codedFixedValue)
// Allow space character in fileName (use with caution)
// Ignored (always 1) for Windows.
allowSpaceInFileName 0;
}
OptimisationSwitches
{
// ===========
// File system
// ===========
// Use physical (0) or logical (1) value for the cwd.
// On NFS mounted file system: maximum wait for files to appear/get
// updated. Set to 0 on distributed case.
// How often retest (using above fileModificationSkew) before giving up.
// Default is 1.
maxFileModificationPolls 20;
//- Modification checking:
// - timeStamp : use modification time on file
// - inotify : use inotify framework
// - timeStampMaster : do time stamp (and file reading) only on master.
// - inotifyMaster : do inotify (and file reading) only on master.
Henry
committed
fileModificationChecking timeStampMaster;
//- Parallel IO file handler
// uncollated (default), collated, masterUncollated etc.
fileHandler uncollated;
//- collated: thread buffer size for queued file writes.
// If set to 0 or not sufficient for the file size, threading is not used.
// A special setting is a negative value which assumes the buffer
// (sized with magnitude of value) is large enough to hold all
// outstanding writes so will not try to initialise the Pstream with
// threading support.
// Default: 0
maxThreadFileBufferSize 0;
//- masterUncollated: non-blocking buffer size.
// If the file exceeds this buffer size scheduled transfer is used.
// Default: 1e9
maxMasterFileBufferSize 1e9;
// Upper limit when bundling off-processor field transfers (ensight).
// for component-wise transfer (uses float: 4 bytes)
// Eg, 5M for 50 ranks of 100k cells
ensight.maxChunk 5000000;
// =====================
// MPI/Parallel settings
// =====================
// Default communication type (nonBlocking | scheduled | buffered)
// Use host/node topology-aware routines
// 0: disabled
// 1: split by hostname [default]
// 2: split by shared
// >=4: (debug/manual) split with given number per node
nodeComms 1;
// Minimum number of nodes before topology-aware routines are enabled
// <= 2 : always
// >= 3 : when there are more than N nodes
nodeComms.min 0;
// Selection of topology-aware routines (bitmask)
// 0: disabled [default]
// 1: broadcast [MPI]
// 4: gather/all-gather [MPI]
// 16: combine (reduction) [manual algorithm]
// 32: mapGather (reduction) [manual algorithm]
// 64: gatherList/scatterList [manual algorithm]
topoControl 0;
// Transfer double as float for processor boundaries. Mostly defunct.
floatTransfer 0;
// Min number of processors to change to tree communication
nProcsSimpleSum 0;
// MPI buffer size (bytes).
// Can override with the MPI_BUFFER_SIZE env variable.
// The default and minimum is (20000000).
mpiBufferSize 0;
// Optional max size (bytes) for unstructured data exchanges.
// In some phases of OpenFOAM it can send over very large data chunks
// (e.g. in parallel load balancing) and some MPI implementations have
// problems with this.
//
// This tuning parameter specifies the max number of bytes before
// switching to a multi-pass send/recv
// (currently only affects PstreamBuffers exchanges).
//
// 0 : disabled
// >0 : limit exchanges to specified number of bytes
// <0 : limit exchanges to INT_MAX minus specified number of bytes
// Optional (experimental) feature in lduMatrixUpdate
// to poll (processor) interfaces for individual readiness
// instead of waiting for all to complete first.
// -1 : wait for any requests to finish and dispatch when possible
// 0 : non-polling
// >0 : number of times to poll for requests (and dispatch) before
// reverting to non-polling (deprecated)
// Min number of processors to use non-blocking exchange (NBX) algorithm
// >0 : enabled
nbx.min 0;
// Additional non-blocking exchange (NBX) tuning parameters (experimental)
// 0 : none
// 1 : initial barrier
// Additional PstreamBuffers tuning parameters (experimental)
// 0 : (legacy PEX)
// * all-to-all for buffer sizes [legacy approach]
// * point-to-point for contents
// 1 : (hybrid PEX)
// * NBX for buffer sizes [new approach]
// * point-to-point for contents
pbufs.tuning 0;
// =====
// Other
// =====
// Trap floating point exception.
// Can override with FOAM_SIGFPE env variable (true|false)
trapFpe 1;
// Initialization malloced memory to NaN.
// Can override with FOAM_SETNAN env variable (true|false)
// Force dumping (at next timestep) upon signal (-1 to disable)
// See 'kill -l' for signal numbers (eg, 10=USR1, 12=USR2)
writeNowSignal -1; // 10;
// Force dumping (at next timestep) upon signal (-1 to disable) and exit
stopAtWriteNowSignal -1;
//- Use dlclose() when clearing the dlLibraryTable.
// This is presumably cleaner, but can also remove functions
// that are still needed (eg, to terminate the library itself)
dlcloseOnTerminate 0;
//- Choose STL ASCII parser: 0=Flex, 1=Ragel, 2=Manual
fileFormats::stl 0;
//- Use the updated ddt correction formulation introduced by openfoam org
// in commit da787200. Default is to use the formulation from v1712
// see ddtScheme.C
experimentalDdtCorr 0;
//- Enable enforced consistency of constraint bcs after 'local' operations.
// Default is on. Set to 0/false to revert to <v2306 behaviour
//localConsistency 0;
//- Since v2412 wall distance is calculated on a combined patch, created
// from all the individual wall patches. Set to 0/false to revert to
// <v2412 behaviour
//useCombinedWallPatch 0;
//- Use local communicator for AMI communication. Default for v2506.
//localAMIComm = 0; // old behaviour : all ranks included
//localAMIComm = 1; // (default) only ranks that have patch faces
//localAMIComm = 2; // like 1 but always include rank 0 so messages
// still come from processor0
}
/* Can specify fallback profiling settings
profiling
{
active true;
cpuInfo false;
memInfo false;
sysInfo false;
}
*/
APIdiffCoefFunc 0;
Ar 0;
BirdCarreau 0;
C10H22 0;
C12H26 0;
C13H28 0;
C14H30 0;
C16H34 0;
C2H5OH 0;
C2H6 0;
C2H6O 0;
C3H6O 0;
C3H8 0;
C4H10O 0;
C6H14 0;
C6H6 0;
C7H16 0;
C7H8 0;
C8H10 0;
C8H18 0;
C9H20 0;
CH3OH 0;
CallbackRegistry 0;
CentredFitData<biLinearFitPolynomial> 0;
CentredFitData<linearFitPolynomial> 0;
CentredFitData<quadraticFitPolynomial> 0;
CentredFitData<quadraticLinearFitPolynomial> 0;
Cloud<basicKinematicParcel> 0;
Cloud<basicReactingParcel> 0;
Henry
committed
Cloud<fluidThermoParcel> 0;
Cloud<indexedParticle> 0;
Cloud<parcel> 0;
Cloud<passiveParticle> 0;
Cloud<trackedParticle> 0;
CoEuler 0;
CompositionModel 0;
CrossPowerLaw 0;
Cs 0;
DIC 0;
DICGaussSeidel 0;
DILU 0;
DILUGaussSeidel 0;
DeardorffDiffStress 0;
DispersionModel 0;
DispersionRASModel 0;
DragModel 0;
ETAB 0;
Ergun 0;
Euler 0;
EulerImplicit 0;
GAMGInterface 0;
GAMGInterfaceField 0;
Gamma 0;
Gamma01 0;
GammaV 0;
Gauss 0;
GaussSeidel 0;
Gibilaro 0;
Gidaspow 0;
GidaspowErgunWenYu 0;
GidaspowSchillerNaumann 0;
GradientDispersionRAS 0;
Gulders 0;
GuldersEGR 0;
H2O 0;
HashTable 0;
HeatTransferModel 0;
IOPtrList<MRFZone> 0;
IOPtrList<injector> 0;
IOPtrList<porousZone> 0;
IOobject 0;
InjectionModel 0;
KinematicCloud<basicKinematicParcel> 0;
KinematicCloud<basicReactingParcel> 0;
Henry
committed
KinematicCloud<fluidThermoParcel> 0;
KinematicParcel<basicReactingParcel> 0;
Henry
committed
KinematicParcel<fluidThermoParcel> 0;
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
LESdelta 0;
LESfilter 0;
LISA 0;
LRR 0;
LRRDiffStress 0;
LamBremhorstKE 0;
LaunderGibsonRSTM 0;
LaunderSharmaKE 0;
LienCubicKE 0;
LienCubicKELowRe 0;
LienLeschzinerLowRe 0;
MB 0;
MC 0;
MCV 0;
MUSCL 0;
MUSCL01 0;
MUSCLV 0;
ManualInjection 0;
MarshakRadiation 0;
MarshakRadiationFixedT 0;
MassTransferModel 0;
MeshWave 0;
Minmod 0;
MinmodV 0;
N2 0;
NSRDSfunc0 0;
NSRDSfunc1 0;
NSRDSfunc14 0;
NSRDSfunc2 0;
NSRDSfunc3 0;
NSRDSfunc4 0;
NSRDSfunc5 0;
NSRDSfunc6 0;
NSRDSfunc7 0;
Newtonian 0;
NoDispersion 0;
NoDrag 0;
NoHeatTransfer 0;
NoInjection 0;
NoMassTransfer 0;
NoSurfaceReaction 0;
NonlinearKEShih 0;
ODE 0;
ODESolver 0;
OFstream 0;
ORourke 0;
OSPRE 0;
OSPREV 0;
P1 0;
PBiCG 0;
PCG 0;
PackedList 0;
ParSortableList 0;
PatchToPatchInterpolation 0;
Phi 0;
PointEdgeWave 0;
Prandtl 0;
PrimitivePatch 0;
Pstream 0;
QUICK 0;
QUICKV 0;
QZeta 0;
ReactingCloud<basicReactingParcel> 0;
ReactingParcel<basicReactingParcel> 0;
Rebound 0;
ReitzDiwakar 0;
ReitzKHRT 0;
RosinRammler 0;
RutlandFlashBoil 0;
SDA 0;
SFCD 0;
SFCDV 0;
SHF 0;
SIBS 0;
SKA 0;
SLTS 0;
Schaeffer 0;
SchillerNaumann 0;
SinclairJackson 0;
SingleKineticRateDevolatilisation 0;
SingleMixtureFraction 0;
Smagorinsky 0;
Henry
committed
SolverPerformance 1;
SpalartAllmarasDDES 0;
SpalartAllmarasIDDES 0;
SphereDrag 0;
StandardWallInteraction 0;
StochasticDispersionRAS 0;
SuperBee 0;
SuperBeeV 0;
SurfaceReactionModel 0;
Syamlal 0;
SyamlalOBrien 0;
SyamlalRogersOBrien 0;
TAB 0;
Table 0;
ThermoCloud<basicReactingParcel> 0;
Henry
committed
ThermoCloud<fluidThermoParcel> 0;
Henry
committed
ThermoParcel<fluidThermoParcel> 0;
UpwindFitData<cubicUpwindFitPolynomial> 0;
UpwindFitData<quadraticLinearUpwindFitPolynomial> 0;
UpwindFitData<quadraticUpwindFitPolynomial> 0;
WallInteractionModel 0;
WenYu 0;
aC11H10 0;
absorptionEmissionModel 0;
addCell 0;
addFace 0;
addPatchCellLayer 0;
addPoint 0;
advective 0;
algebraicPair 0;
alphaContactAngle 0;
alphaFixedPressure 0;
alphatWallFunction 0;
angularOscillatingDisplacement 0;
angularOscillatingVelocity 0;
anisotropic 0;
ash 0;
atomizationModel 0;
attachDetach 0;
snappyHexMeshDriver 0;
snappyLayerDriver 0;
snappyRefineDriver 0;
snappySnapDriver 0;
backgroundMeshDecomposition 0;
bitSet 0;
Henry
committed
fluidThermo 0;
fluidThermoCloud 0;
fluidThermoParcel 0;
blobsSheetAtomization 0;
blobsSwirlInjector 0;
booleanSurface 0;
boundaryCutter 0;
boundaryMesh 0;
boundaryToFace 0;
boundedBackward 0;
boxToCell 0;
boxToFace 0;
boxToPoint 0;
breakupModel 0;
calculated 0;
cell 0;
cellClassification 0;
cellCuts 0;
cellDistFuncs 0;
cellLimited 0;
cellList 0;
cellLooper 0;
cellMDLimited 0;
cellMotion 0;
cellPoint 0;
cellPointFace 0;
cellPointWeight 0;
cellSet 0;
cellToCell 0;
cellToFace 0;
cellToPoint 0;
cellZone 0;
centredCECStencil 0;
centredCFCStencil 0;
chemistryReader 0;
chemistrySolver 0;
chemkinReader 0;
clippedLinear 0;
cloud 0;
cloudAbsorptionEmission 0;
cloudScatter 0;
collisionModel 0;
combineFaces 0;
commSchedule 0;
commonRailInjector 0;
compound 0;
constInjector 0;
constant 0;
constantAbsorptionEmission 0;
coordinateSystem 0;
corrected 0;
coupled 0;
cubeRootVol 0;
cubic 0;
cylindrical 0;
decompositionMethod 0;
definedHollowConeInjector 0;
definedInjector 0;
definedPressureSwirlInjector 0;
diagTensorField 0;
diagonal 0;
dictionary 0;
dimensionSet 1;
mappedBase 0;
mappedPatch 0;
mappedVelocityFlux 0;
directionMixed 0;
directional 0;
disallowGenericFvPatchField 0;
disallowGenericPolyPatch 0;
dispersionLESModel 0;
dispersionModel 0;
dispersionRASModel 0;
displacementComponentLaplacian 0;
displacementInterpolation 0;
displacementLaplacian 0;
displacementSBRStress 0;
downwind 0;
dragModel 0;
duplicatePoints 0;
dx 0;
dynMixedSmagorinsky 0;
dynOneEqEddy 0;
dynSmagorinsky 0;
dynamicFvMesh 0;
dynamicInkJetFvMesh 0;
dynamicMotionSolverFvMesh 0;
dynamicRefineFvMesh 0;
edgeIntersections 0;
edgeList 0;
edgeSurface 0;
empty 0;
engineMesh 0;
enrichedPatch 0;
errorDrivenRefinement 0;
evaporationModel 0;
exponential 0;
extendedLeastSquares 0;
extendedLeastSquaresVectors 0;
extrudeModel 1;
face 0;
faceAreaPair 0;
faceCoupleInfo 0;
faceLimited 0;
faceList 0;
faceMDLimited 0;
faceSet 0;
faceToCell 0;
faceToFace 0;
faceToPoint 0;
faceZone 0;
fan 0;
featureEdgeMesh 0;
filteredLinear 0;
filteredLinear2 0;
filteredLinear2V 0;
filteredLinear3 0;
filteredLinear3V 0;
fixedFluxBoussinesqBuoyantPressure 0;
fixedInternalEnergy 0;
fixedInternalValue 0;
fluxCorrectedVelocity 0;
foamChemistryReader 0;
forceCoeffs 0;
forces 0;
fourth 0;
freestream 0;
freestreamPressure 0;
frictionalStressModel 0;
functionObject 0;
fv 0;
fvMesh 0;
fvMeshDistribute 0;
fvMotionSolver 0;
fvPatchField 0;
fvScalarMatrix 0;
fvSphericalTensorMatrix 0;
fvSymmTensorMatrix 0;
fvTensorMatrix 0;
fvVectorMatrix 0;
general 0;
generic 0;
genericPatch 0;
geomCellLooper 0;
global 0;
globalMeshData 0;
globalPoints 0;
gnuplot 0;
gradientDispersionRAS 0;
gradientEnthalpy 0;
gradientUnburntEnthalpy 0;
granularPressureModel 0;
hCombustionThermo 0;
Henry
committed
hMixtureThermo<homogeneousMixture<constTransport<thermo<hConstThermo<perfectGas>>>>> 0;
hMixtureThermo<homogeneousMixture<sutherlandTransport<thermo<janafThermo<perfectGas>>>>> 0;
hMixtureThermo<inhomogeneousMixture<constTransport<thermo<hConstThermo<perfectGas>>>>> 0;
hMixtureThermo<inhomogeneousMixture<sutherlandTransport<thermo<janafThermo<perfectGas>>>>> 0;
hMixtureThermo<multiComponentMixture<sutherlandTransport<thermo<janafThermo<perfectGas>>>>> 0;
Henry
committed
hMixtureThermo<veryInhomogeneousMixture<constTransport<thermo<hConstThermo<perfectGas>>>>> 0;
hMixtureThermo<veryInhomogeneousMixture<sutherlandTransport<thermo<janafThermo<perfectGas>>>>> 0;
hThermo<pureMixture<constTransport<thermo<hConstThermo<perfectGas>>>>> 0;
hThermo<pureMixture<sutherlandTransport<thermo<hConstThermo<perfectGas>>>>> 0;
hThermo<pureMixture<sutherlandTransport<thermo<janafThermo<perfectGas>>>>> 0;
harmonic 0;
heatTransferModel 0;
hexCellLooper 0;
hexRef8 0;
hhuCombustionThermo 0;
Henry
committed
hhuMixtureThermo<egrMixture<constTransport<thermo<hConstThermo<perfectGas>>>>> 0;
hhuMixtureThermo<egrMixture<sutherlandTransport<thermo<janafThermo<perfectGas>>>>> 0;
hhuMixtureThermo<homogeneousMixture<constTransport<thermo<hConstThermo<perfectGas>>>>> 0;
hhuMixtureThermo<homogeneousMixture<sutherlandTransport<thermo<janafThermo<perfectGas>>>>> 0;
hhuMixtureThermo<inhomogeneousMixture<constTransport<thermo<hConstThermo<perfectGas>>>>> 0;
hhuMixtureThermo<inhomogeneousMixture<sutherlandTransport<thermo<janafThermo<perfectGas>>>>> 0;
hhuMixtureThermo<veryInhomogeneousMixture<constTransport<thermo<hConstThermo<perfectGas>>>>> 0;
hhuMixtureThermo<veryInhomogeneousMixture<sutherlandTransport<thermo<janafThermo<perfectGas>>>>> 0;
indexedOctree 0;
indexedParticle 0;
injectorModel 0;
injectorType 0;
inletOutlet 0;
inletOutletTotalTemperature 0;
interfaceCompression 0;
intersectedSurface 0;
inverseDistance 0;
inverseFaceDistance 0;
inversePointDistance 0;
inverseVolume 0;
isoSurfacePoint 0;
isoSurfaceTopo 0;
kinematicCloud 0;
labelField 0;
labelList 0;
labelListList 0;
labelToCell 0;
labelToFace 0;
labelToPoint 0;
laminar 0;
laminarFlameSpeed 0;
laplace 0;
layerAdditionRemoval 0;
layered 0;
lduInterfaceField 0;
limited 0;
limitedCubic 0;
limitedCubic01 0;
limitedCubicV 0;
limitedGamma 0;
limitedLimitedCubic 0;
limitedLimitedLinear 0;
limitedLinear 0;
limitedLinear01 0;
limitedLinearV 0;
limitedMUSCL 0;
limitedSurfaceInterpolationScheme 0;
limitedVanLeer 0;
linear 0;
linearUpwind 0;
linearUpwindV 0;
liquid 0;
locDynOneEqEddy 0;
localBlended 0;
localMax 0;
localMin 0;
localPointRegion 0;
lowReOneEqEddy 0;
manual 0;
meshCutAndRemove 0;
meshCutter 0;
meshModifier 0;
Henry
committed
meshObject 0;
meshRefinement 0;
meshSearch 0;
meshToMesh 0;
metis 0;
midPoint 0;
midPointAndFace 0;
mixed 0;
mixedEnthalpy 0;
mixedSmagorinsky 0;
mixedUnburntEnthalpy 0;
mixerFvMesh 0;
modifyCell 0;
modifyFace 0;
modifyPoint 0;
motionDiffusivity 0;
motionDirectional 0;
motionSmoother 0;
motionSolver 0;
movingConeTopoFvMesh 0;
movingWallVelocity 0;
mattijs
committed
multiLevel 0;
mutRoughWallFunction 0;
mutSpalartAllmarasStandardRoughWallFunction 0;
mutSpalartAllmarasStandardWallFunction 0;
mutSpalartAllmarasWallFunction 0;
mutWallFunction 0;
nC3H8O 0;
noAbsorptionEmission 0;
noDragModel 0;
noRadiation 0;
none 0;
normal 0;
normalToFace 0;
nuSgsSpalartAllmarasWallFunction 0;
nutRoughWallFunction 0;
nutSpalartAllmarasStandardRoughWallFunction 0;
nutSpalartAllmarasStandardWallFunction 0;
nutSpalartAllmarasWallFunction 0;
oneEqEddy 0;
orientedSurface 0;
oscillatingDisplacement 0;
oscillatingFixedValue 0;
oscillatingVelocity 0;
outletInlet 0;
outletStabilised 0;
pair 0;
parcel 0;
partialSlip 0;
passiveParticle 0;
patch 0;
patchToFace 0;
patchZones 0;
pdf 0;
perfectInterface 0;
pointIndexHitList 0;
pointPatchField 0;
pointScalarField 0;
Henry Weller
committed
pointScalarField::Internal 0;
Henry Weller
committed
pointSphericalTensorField::Internal 0;
Henry Weller
committed
pointSymmTensorField::Internal 0;
Henry Weller
committed
pointTensorField::Internal 0;
pointToCell 0;
pointToFace 0;
pointToPoint 0;
pointVectorField 0;
Henry Weller
committed
pointVectorField::Internal 0;
pointZone 0;
polyBoundaryMesh 0;
polyMesh 0;
polyMeshGeometry 0;
polyMeshInfo 0;
polyTopoChange 0;
polyTopoChanger 0;
pressureDirectedInletOutletVelocity 0;
pressureDirectedInletVelocity 0;
pressureInletOutletVelocity 0;
pressureInletUniformVelocity 0;
pressureInletVelocity 0;
pressureSwirlInjector 0;
primitiveMesh 0;
primitiveMeshGeometry 0;
probes 0;
processor 0;
processorLduInterfaceField 0;
Henry
committed
pureMixture<constTransport<thermo<hConstThermo<perfectGas>>>> 0;
pureMixture<sutherlandTransport<thermo<hConstThermo<perfectGas>>>> 0;
pureMixture<sutherlandTransport<thermo<janafThermo<perfectGas>>>> 0;
quadraticFit 0;
quadraticLinearFit 0;
quadraticLinearUpwindFit 0;
quadraticUpwindFit 0;
radiationModel 0;
raw 0;
reactingCloud 0;
reaction 0;
realizableKE 0;
refinementHistory 0;
refinementIterator 0;
reflect 0;
regIOobject 0;
regionSplit 0;
remove 0;
removeCell 0;
removeCells 0;
removeFace 0;
removeFaces 0;
removePoint 0;
removePoints 0;
reverseLinear 0;
rotatedBoxToCell 0;
rotatingPressureInletOutletVelocity 0;
rotatingTotalPressure 0;
runTimePostPro::geometryBase 0;
sampledPatch 0;
sampledPlane 0;
sampledSet 0;
sampledSurface 0;
saturateEvaporationModel 0;
scalarField 0;
scaleSimilarity 0;
scatterModel 0;
sequential 0;
setUpdater 0;
sets 0;
shapeList 0;
shapeToCell 0;
simple 0;
sixDoFRigidBodyMotionConstraint 0;
skewCorrected 0;
skewCorrectionVectors 0;
sliced 0;
slidingInterface 0;
slip 0;
smooth 0;
smoothSolver 0;
solid 0;
solidBodyMotionFunction 0;
solidBodyMotionFvMesh 0;
solution 0;
spectEddyVisc 0;
sphereToCell 0;
spherical 0;
sphericalTensorField 0;
standardDragModel 0;
standardEvaporationModel 0;
staticFvMesh 0;
steadyState 0;
stl 0;
stochasticDispersionRAS 0;
supersonicFreestream 0;
surfaceFeatures 0;
surfaceInterpolation 0;
surfaceInterpolationScheme 0;
surfaceIntersection 0;
surfaceNormalFixedValue 0;
surfaceScalarField 0;
Henry Weller
committed
surfaceScalarField::Internal 0;
surfaceSlipDisplacement 0;
surfaceSphericalTensorField 0;
Henry Weller
committed
surfaceSphericalTensorField::Internal 0;
Henry Weller
committed
surfaceSymmTensorField::Internal 0;
Henry Weller
committed
surfaceTensorField::Internal 0;
surfaceToCell 0;
surfaceToPoint 0;
surfaceVectorField 0;
Henry Weller
committed
surfaceVectorField::Internal 0;