// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // 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)", true // advanced ); argList::addBoolOption ( "listVectorBCs", "List vector field boundary conditions (fvPatchField)", 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 // ************************************************************************* //