mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
BUG: kinematicParcelFoam: correct source-term value (fixes #3446)
- likely results in output changes for denser carrier fluids Co-authored-by: Kutalmis Bercin <kutalmis.bercin@esi-group.com>
This commit is contained in:
committed by
Kutalmis Bercin
parent
7a266b566f
commit
9c4d0cdeef
@ -6,7 +6,7 @@
|
||||
+ MRF.DDt(U)
|
||||
+ turbulence->divDevReff(U)
|
||||
==
|
||||
parcels.SU(U, true)
|
||||
invRhoInf*parcels.SU(U)
|
||||
+ fvOptions(U)
|
||||
);
|
||||
|
||||
|
||||
@ -39,6 +39,11 @@ dimensionedScalar rhoInfValue
|
||||
laminarTransport
|
||||
);
|
||||
|
||||
const dimensionedScalar invRhoInf
|
||||
(
|
||||
dimless/dimDensity, scalar(1)/rhoInfValue.value()
|
||||
);
|
||||
|
||||
volScalarField rhoInf
|
||||
(
|
||||
IOobject
|
||||
|
||||
Reference in New Issue
Block a user