setRootCaseListOptions.H
Go to the documentation of this file.
1// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
2// Declare some "standard" list options
3
4#ifndef setRootCaseListOptions_H
5#define setRootCaseListOptions_H
6
7argList::addBoolOption
8(
9 "listSwitches",
10 "List switches declared in libraries"
11 " (see -listUnsetSwitches option)",
12 true // advanced
13);
14argList::addBoolOption
15(
16 "listRegisteredSwitches",
17 "List switches registered for run-time modification"
18 " (see -listUnsetSwitches option)",
19 true // advanced
20);
21argList::addBoolOption
22(
23 "listUnsetSwitches",
24 "Modifies switch listing to display values not set in etc/controlDict",
25 true // advanced
26);
27
28#ifdef Foam_fvPatchField_H
29argList::addBoolOption
30(
31 "listScalarBCs",
32 "List scalar field boundary conditions (fvPatchField<scalar>)",
33 true // advanced
34);
35argList::addBoolOption
36(
37 "listVectorBCs",
38 "List vector field boundary conditions (fvPatchField<vector>)",
39 true // advanced
40);
41#endif
42
43#ifdef Foam_functionObject_H
44argList::addBoolOption
45(
46 "listFunctionObjects",
47 "List functionObjects",
48 true // advanced
49);
50#endif
51
52#ifdef Foam_fvOption_H
53argList::addBoolOption
54(
55 "listFvOptions",
56 "List fvOptions",
57 true // advanced
58);
59#endif
60
61#if defined(Foam_turbulentTransportModel_H) || defined(Foam_turbulentFluidThermoModel_H)
62argList::addBoolOption
63(
64 "listTurbulenceModels",
65 "List turbulenceModels",
66 true // advanced
67);
68#endif
69
70
71// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
72
73#endif
74
75// ************************************************************************* //