ENH: Constructing coeff volScalarField with 'calculated' Bc's for compressible flow to

avoid unphysical 'fixedValue' at boundaries
This commit is contained in:
sergio
2017-12-20 10:58:42 -08:00
parent b14e7b794d
commit 90a9cd06c7

View File

@ -180,8 +180,16 @@ bool Foam::functionObjects::pressure::calc()
(
new volScalarField
(
resultName_,
coeff(pRef(pDyn(p, rhoScale(p))))
IOobject
(
resultName_,
p.mesh().time().timeName(),
p.mesh(),
IOobject::NO_READ,
IOobject::NO_WRITE
),
coeff(pRef(pDyn(p, rhoScale(p)))),
fvPatchField<scalar>::calculatedType()
)
);