BUG: polyMesh: set AUTO_WRITE flag. See #1147.

This commit is contained in:
mattijs
2019-01-07 17:51:47 +00:00
parent 3a374bf315
commit a6a46d23b8
2 changed files with 9 additions and 4 deletions

View File

@ -3,7 +3,7 @@
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | \\ / O peration |
\\ / A nd | Copyright (C) 2011-2016 OpenFOAM Foundation \\ / A nd | Copyright (C) 2011-2016 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation | Copyright (C) 2019 OpenCFD Ltd.
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
This file is part of OpenFOAM. This file is part of OpenFOAM.
@ -346,7 +346,9 @@ bool Foam::domainDecomposition::writeDecomposition(const bool decomposeSets)
( (
this->polyMesh::name(), // region of undecomposed mesh this->polyMesh::name(), // region of undecomposed mesh
facesInstance(), facesInstance(),
processorDb processorDb,
IOobject::NO_READ,
IOobject::AUTO_WRITE
), ),
std::move(facesInstancePoints), std::move(facesInstancePoints),
std::move(procFaces), std::move(procFaces),
@ -361,7 +363,9 @@ bool Foam::domainDecomposition::writeDecomposition(const bool decomposeSets)
( (
this->polyMesh::name(), // region of undecomposed mesh this->polyMesh::name(), // region of undecomposed mesh
facesInstance(), facesInstance(),
processorDb processorDb,
IOobject::NO_READ,
IOobject::AUTO_WRITE
), ),
std::move(procPoints), std::move(procPoints),
std::move(procFaces), std::move(procFaces),

View File

@ -3,7 +3,7 @@
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | \\ / O peration |
\\ / A nd | Copyright (C) 2012-2017 OpenFOAM Foundation \\ / A nd | Copyright (C) 2012-2017 OpenFOAM Foundation
\\/ M anipulation | Copyright (C) 2015-2017 OpenCFD Ltd. \\/ M anipulation | Copyright (C) 2015-2019 OpenCFD Ltd.
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
This file is part of OpenFOAM. This file is part of OpenFOAM.
@ -166,6 +166,7 @@ Foam::autoPtr<Foam::fvMesh> Foam::loadOrCreateMesh
// Create dummy mesh. Only used on procs that don't have mesh. // Create dummy mesh. Only used on procs that don't have mesh.
IOobject noReadIO(io); IOobject noReadIO(io);
noReadIO.readOpt() = IOobject::NO_READ; noReadIO.readOpt() = IOobject::NO_READ;
noReadIO.writeOpt() = IOobject::AUTO_WRITE;
fvMesh dummyMesh(noReadIO, Zero, false); fvMesh dummyMesh(noReadIO, Zero, false);
// Add patches // Add patches