mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
76 lines
1.6 KiB
C
76 lines
1.6 KiB
C
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
// Declare some "standard" list options
|
|
|
|
#ifndef setRootCaseListOptions_H
|
|
#define setRootCaseListOptions_H
|
|
|
|
argList::addBoolOption
|
|
(
|
|
"listSwitches",
|
|
"List switches declared in libraries"
|
|
" (see -listUnsetSwitches option)",
|
|
true // advanced
|
|
);
|
|
argList::addBoolOption
|
|
(
|
|
"listRegisteredSwitches",
|
|
"List switches registered for run-time modification"
|
|
" (see -listUnsetSwitches option)",
|
|
true // advanced
|
|
);
|
|
argList::addBoolOption
|
|
(
|
|
"listUnsetSwitches",
|
|
"Modifies switch listing to display values not set in etc/controlDict",
|
|
true // advanced
|
|
);
|
|
|
|
#ifdef Foam_fvPatchField_H
|
|
argList::addBoolOption
|
|
(
|
|
"listScalarBCs",
|
|
"List scalar field boundary conditions (fvPatchField<scalar>)",
|
|
true // advanced
|
|
);
|
|
argList::addBoolOption
|
|
(
|
|
"listVectorBCs",
|
|
"List vector field boundary conditions (fvPatchField<vector>)",
|
|
true // advanced
|
|
);
|
|
#endif
|
|
|
|
#ifdef Foam_functionObject_H
|
|
argList::addBoolOption
|
|
(
|
|
"listFunctionObjects",
|
|
"List functionObjects",
|
|
true // advanced
|
|
);
|
|
#endif
|
|
|
|
#ifdef Foam_fvOption_H
|
|
argList::addBoolOption
|
|
(
|
|
"listFvOptions",
|
|
"List fvOptions",
|
|
true // advanced
|
|
);
|
|
#endif
|
|
|
|
#if defined(Foam_turbulentTransportModel_H) || defined(Foam_turbulentFluidThermoModel_H)
|
|
argList::addBoolOption
|
|
(
|
|
"listTurbulenceModels",
|
|
"List turbulenceModels",
|
|
true // advanced
|
|
);
|
|
#endif
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
#endif
|
|
|
|
// ************************************************************************* //
|