mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
ENH: Constructing coeff volScalarField with 'calculated' Bc's for compressible flow to
avoid unphysical 'fixedValue' at boundaries
This commit is contained in:
@ -179,9 +179,17 @@ bool Foam::functionObjects::pressure::calc()
|
|||||||
tmp<volScalarField> tp
|
tmp<volScalarField> tp
|
||||||
(
|
(
|
||||||
new volScalarField
|
new volScalarField
|
||||||
|
(
|
||||||
|
IOobject
|
||||||
(
|
(
|
||||||
resultName_,
|
resultName_,
|
||||||
coeff(pRef(pDyn(p, rhoScale(p))))
|
p.mesh().time().timeName(),
|
||||||
|
p.mesh(),
|
||||||
|
IOobject::NO_READ,
|
||||||
|
IOobject::NO_WRITE
|
||||||
|
),
|
||||||
|
coeff(pRef(pDyn(p, rhoScale(p)))),
|
||||||
|
fvPatchField<scalar>::calculatedType()
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user