// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // Process some "standard" list options #ifndef setRootCaseListOutput_H #define setRootCaseListOutput_H { bool listOptions = false; if (args.found("listSwitches")) { debug::listSwitches(args.found("includeUnsetSwitches")); listOptions = true; } if (args.found("listRegisteredSwitches")) { debug::listRegisteredSwitches(args.found("includeUnsetSwitches")); listOptions = true; } #ifdef fvPatchField_H if (args.found("listScalarBCs")) { Info<< "scalarBCs" << fvPatchField:: dictionaryConstructorTablePtr_->sortedToc() << endl; listOptions = true; } if (args.found("listVectorBCs")) { Info<< "vectorBCs" << fvPatchField:: dictionaryConstructorTablePtr_->sortedToc() << endl; listOptions = true; } #endif #ifdef functionObject_H if (args.found("listFunctionObjects")) { Info<< "functionObjects" << functionObject::dictionaryConstructorTablePtr_->sortedToc() << endl; listOptions = true; } #endif #ifdef fvOption_H if (args.found("listFvOptions")) { Info<< "fvOptions" << fv::option::dictionaryConstructorTablePtr_->sortedToc() << endl; listOptions = true; } #endif #ifdef turbulentTransportModel_H if (args.found("listTurbulenceModels")) { Info<< "Turbulence models" << incompressible::turbulenceModel:: dictionaryConstructorTablePtr_->sortedToc() << endl; Info<< "RAS models" << incompressible::RASModel:: dictionaryConstructorTablePtr_->sortedToc() << endl; Info<< "LES models" << incompressible::LESModel:: dictionaryConstructorTablePtr_->sortedToc() << endl; listOptions = true; } #elif defined(turbulentFluidThermoModel_H) if (args.found("listTurbulenceModels")) { Info<< "Turbulence models" << compressible::turbulenceModel:: dictionaryConstructorTablePtr_->sortedToc() << endl; Info<< "RAS models" << compressible::RASModel:: dictionaryConstructorTablePtr_->sortedToc() << endl; Info<< "LES models" << compressible::LESModel:: dictionaryConstructorTablePtr_->sortedToc() << endl; listOptions = true; } #endif if (listOptions) { exit(0); } } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // #endif // ************************************************************************* //