mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
Merge branch 'master' of /home/dm4/OpenFOAM/OpenFOAM-dev
This commit is contained in:
@ -614,11 +614,6 @@ int main(int argc, char *argv[])
|
||||
"boundBox",
|
||||
"simplify the surface using snappyHexMesh starting from a boundBox"
|
||||
);
|
||||
Foam::argList::addBoolOption
|
||||
(
|
||||
"writeLevel",
|
||||
"write pointLevel and cellLevel postprocessing files"
|
||||
);
|
||||
Foam::argList::addOption
|
||||
(
|
||||
"patches",
|
||||
@ -640,7 +635,6 @@ int main(int argc, char *argv[])
|
||||
const bool overwrite = args.optionFound("overwrite");
|
||||
const bool checkGeometry = args.optionFound("checkGeometry");
|
||||
const bool surfaceSimplify = args.optionFound("surfaceSimplify");
|
||||
const bool writeLevel = args.optionFound("writeLevel");
|
||||
|
||||
autoPtr<fvMesh> meshPtr;
|
||||
|
||||
@ -852,6 +846,8 @@ int main(int argc, char *argv[])
|
||||
autoLayerDriver::debug = debug;
|
||||
}
|
||||
|
||||
const bool writeLevel = meshDict.lookupOrDefault<bool>("writeLevel", false);
|
||||
|
||||
|
||||
// Read geometry
|
||||
// ~~~~~~~~~~~~~
|
||||
|
||||
Reference in New Issue
Block a user