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 
7 argList::addBoolOption
8 (
9  "listSwitches",
10  "List switches declared in libraries"
11  " (see -listUnsetSwitches option)",
12  true // advanced
13 );
14 argList::addBoolOption
15 (
16  "listRegisteredSwitches",
17  "List switches registered for run-time modification"
18  " (see -listUnsetSwitches option)",
19  true // advanced
20 );
21 argList::addBoolOption
22 (
23  "listUnsetSwitches",
24  "Modifies switch listing to display values not set in etc/controlDict",
25  true // advanced
26 );
27 
28 #ifdef fvPatchField_H
29 argList::addBoolOption
30 (
31  "listScalarBCs",
32  "List scalar field boundary conditions (fvPatchField<scalar>)",
33  true // advanced
34 );
35 argList::addBoolOption
36 (
37  "listVectorBCs",
38  "List vector field boundary conditions (fvPatchField<vector>)",
39  true // advanced
40 );
41 #endif
42 
43 #ifdef functionObject_H
44 argList::addBoolOption
45 (
46  "listFunctionObjects",
47  "List functionObjects",
48  true // advanced
49 );
50 #endif
51 
52 #ifdef fvOption_H
53 argList::addBoolOption
54 (
55  "listFvOptions",
56  "List fvOptions",
57  true // advanced
58 );
59 #endif
60 
61 #if defined(turbulentTransportModel_H) || defined(turbulentFluidThermoModel_H)
62 argList::addBoolOption
63 (
64  "listTurbulenceModels",
65  "List turbulenceModels",
66  true // advanced
67 );
68 #endif
69 
70 
71 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
72 
73 #endif
74 
75 // ************************************************************************* //