Files
openfoam/src/OpenFOAM/include/setRootCaseListOptions.H
Mark Olesen 2b86a22f56 BUG: inconsistent ifdef detection for application -listXXX options
- as part of the style change, include guards are increasingly
  prefixed with 'Foam_'
2022-06-21 13:50:40 +02:00

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
// ************************************************************************* //