mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
STYLE: DPMFoam, MPPICFoam: Renamed alphaPhic -> alphaPhi.<continuous phase name>
for consistency with multiphase solvers and compatibility with the generalized TurbulenceModels library.
This commit is contained in:
committed by
Andrew Heather
parent
efe4a9a4b7
commit
a45b422b75
@ -151,7 +151,16 @@ alphac = max(1.0 - kinematicCloud.theta(), alphacMin);
|
||||
alphac.correctBoundaryConditions();
|
||||
|
||||
surfaceScalarField alphacf("alphacf", fvc::interpolate(alphac));
|
||||
surfaceScalarField alphaPhic("alphaPhic", alphacf*phic);
|
||||
|
||||
surfaceScalarField alphaPhic
|
||||
(
|
||||
IOobject::groupName
|
||||
(
|
||||
"alphaPhi",
|
||||
continuousPhaseName
|
||||
),
|
||||
alphacf*phic
|
||||
);
|
||||
|
||||
autoPtr<PhaseIncompressibleTurbulenceModel<singlePhaseTransportModel>>
|
||||
continuousPhaseTurbulence
|
||||
|
||||
Reference in New Issue
Block a user