BUG: was reading mesh before setting coupledPolyPatch::matchTol

This commit is contained in:
mattijs
2010-04-29 18:42:30 +01:00
parent a4596d3fc1
commit a967d05fd3

View File

@ -512,7 +512,9 @@ int main(int argc, char *argv[])
# include "setRootCase.H"
# include "createTime.H"
runTime.functionObjects().off();
# include "createNamedPolyMesh.H"
Foam::word meshRegionName = polyMesh::defaultRegion;
args.optionReadIfPresent("region", meshRegionName);
const bool overwrite = args.optionFound("overwrite");
@ -525,8 +527,8 @@ int main(int argc, char *argv[])
"createPatchDict",
runTime.system(),
(
regionName != polyMesh::defaultRegion
? regionName
meshRegionName != polyMesh::defaultRegion
? meshRegionName
: word::null
),
runTime,
@ -547,6 +549,7 @@ int main(int argc, char *argv[])
<< " to match up faces and points" << nl << endl;
coupledPolyPatch::matchTol = tol;
# include "createNamedPolyMesh.H"
const word oldInstance = mesh.pointsInstance();