Files
OpenFOAM-12/applications/solvers/multiphase/interFoam/createFieldRefs.H
Henry Weller d3df91a5eb interFoam: Replaced twoPhaseChangeModel with the VoFCavitation fvModel
Replacing the specific twoPhaseChangeModel with a consistent and general fvModel
interface will support not just cavitation using the new VoFCavitation fvModel
but also other phase-change and interface manipulation models in the future and
is easier to use for case-specific and other user customisation.
2022-09-27 19:28:11 +01:00

8 lines
220 B
C++

volScalarField& alpha2(mixture.alpha2());
const dimensionedScalar& rho1 = mixture.rho1();
const dimensionedScalar& rho2 = mixture.rho2();
//twoPhaseChangeModel& phaseChange = phaseChangePtr();
tmp<volScalarField> rAU;