Skip to content
Snippets Groups Projects
Commit 50cc9386 authored by sergio's avatar sergio
Browse files

ENH: Setting V0 to NO_WRITE, but registered in the database

parent ff2a811b
No related merge requests found
......@@ -198,7 +198,7 @@ void Foam::fvMesh::storeOldVol(const scalarField& V)
time().timeName(),
*this,
IOobject::NO_READ,
IOobject::AUTO_WRITE,
IOobject::NO_WRITE,
true
),
*this,
......@@ -865,6 +865,9 @@ bool Foam::fvMesh::writeObject
if (phiPtr_)
{
ok = phiPtr_->write();
// NOTE: The old old time mesh phi might be necessary for certain
// solver smooth restart using second order time schemes.
//ok = phiPtr_->oldTime().write();
}
return ok && polyMesh::writeObject(fmt, ver, cmp);
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment