ENH: p field for potentialFoam now registsered

This commit is contained in:
Andrew Heather
2019-06-05 14:11:50 +01:00
parent a31d0c834e
commit 289a7acf76

View File

@ -57,9 +57,6 @@ forAll(U.boundaryField(), patchi)
} }
} }
// Note that registerObject is false for the pressure field. The pressure
// field in this solver doesn't have a physical value during the solution.
// It shouldn't be looked up and used by sub models or boundary conditions.
Info<< "Constructing pressure field " << pName << nl << endl; Info<< "Constructing pressure field " << pName << nl << endl;
volScalarField p volScalarField p
( (
@ -69,8 +66,7 @@ volScalarField p
runTime.timeName(), runTime.timeName(),
mesh, mesh,
IOobject::READ_IF_PRESENT, IOobject::READ_IF_PRESENT,
IOobject::NO_WRITE, IOobject::NO_WRITE
false
), ),
mesh, mesh,
dimensionedScalar(sqr(dimVelocity), Zero), dimensionedScalar(sqr(dimVelocity), Zero),