mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
- prelude to code refactoring
NOTE
no source code change in this commit, only relocation,
renaming and adjustment of Make/{files,options}
28 lines
803 B
C
28 lines
803 B
C
phaseModel& phase1 = fluid.phase1();
|
|
phaseModel& phase2 = fluid.phase2();
|
|
|
|
const volScalarField& alpha1 = phase1;
|
|
const volScalarField& alpha2 = phase2;
|
|
|
|
volVectorField& U1 = phase1.URef();
|
|
surfaceScalarField& phi1 = phase1.phiRef();
|
|
const surfaceScalarField& alphaPhi1 = phase1.alphaPhi();
|
|
|
|
volVectorField& U2 = phase2.URef();
|
|
surfaceScalarField& phi2 = phase2.phiRef();
|
|
const surfaceScalarField& alphaPhi2 = phase2.alphaPhi();
|
|
|
|
surfaceScalarField& phi = fluid.phi();
|
|
|
|
rhoThermo& thermo1 = phase1.thermoRef();
|
|
rhoThermo& thermo2 = phase2.thermoRef();
|
|
|
|
volScalarField& rho1 = thermo1.rho();
|
|
const volScalarField& psi1 = thermo1.psi();
|
|
|
|
volScalarField& rho2 = thermo2.rho();
|
|
const volScalarField& psi2 = thermo2.psi();
|
|
|
|
const IOMRFZoneList& MRF = fluid.MRF();
|
|
fv::options& fvOptions = fluid.fvOptions();
|