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:
Henry Weller
2017-10-11 23:04:42 +01:00
committed by Andrew Heather
parent efe4a9a4b7
commit a45b422b75
6 changed files with 17 additions and 8 deletions

View File

@ -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