- static version of polyMesh::meshDir(), which takes a region name polyMesh::meshDir(regionName) vs polyMesh::regionName(regionName)/polyMesh::meshSubDir STYLE: use polyMesh::regionName(..) instead of comparing to defaultRegion STYLE: use getOrDefault when retrieving various -region options FIX: polyMesh::dbDir() now checks registry name, not full path (#3033)
49 lines
1.3 KiB
C
49 lines
1.3 KiB
C
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | www.openfoam.com
|
|
\\/ M anipulation |
|
|
-------------------------------------------------------------------------------
|
|
Copyright (C) 2021 OpenCFD Ltd.
|
|
-------------------------------------------------------------------------------
|
|
License
|
|
This file is part of OpenFOAM, distributed under GPL-3.0-or-later.
|
|
|
|
Description
|
|
Add multi-region command-line options: -allRegions, -regions, -region
|
|
|
|
Required Classes
|
|
- Foam::argList
|
|
|
|
See Also
|
|
getAllRegionOptions.H
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
{
|
|
Foam::argList::addBoolOption
|
|
(
|
|
"allRegions",
|
|
"Use all regions in regionProperties"
|
|
);
|
|
|
|
Foam::argList::addOption
|
|
(
|
|
"regions",
|
|
"wordRes",
|
|
"Use specified mesh region. Eg, -regions gas\n"
|
|
"Or from regionProperties. Eg, -regions '(gas \"solid.*\")'"
|
|
);
|
|
|
|
Foam::argList::addOption
|
|
(
|
|
"region",
|
|
"name",
|
|
"Use specified mesh region. Eg, -region gas"
|
|
);
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|