mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-12-28 03:37:59 +00:00
- ensure that the standard options (eg, from timeSelector) also have some usage information
30 lines
508 B
C
30 lines
508 B
C
//
|
|
// addTimeOptions.H
|
|
// ~~~~~~~~~~~~~~~~
|
|
|
|
Foam::argList::addBoolOption
|
|
(
|
|
"constant",
|
|
"include the 'constant/' dir in the times list"
|
|
);
|
|
|
|
Foam::argList::addBoolOption
|
|
(
|
|
"latestTime",
|
|
"select the latest time"
|
|
);
|
|
|
|
Foam::argList::addBoolOption
|
|
(
|
|
"noZero",
|
|
"exclude the '0/' dir from the times list"
|
|
);
|
|
|
|
Foam::argList::addOption
|
|
(
|
|
"time",
|
|
"time",
|
|
"specify a single time value to select"
|
|
);
|
|
|