2010-05-12 13:27:55 +00:00
|
|
|
Info<< "Reading field pd\n" << endl;
|
|
|
|
volScalarField pd
|
|
|
|
(
|
|
|
|
IOobject
|
|
|
|
(
|
|
|
|
"pd",
|
|
|
|
runTime.timeName(),
|
|
|
|
mesh,
|
|
|
|
IOobject::MUST_READ,
|
|
|
|
IOobject::AUTO_WRITE
|
|
|
|
),
|
|
|
|
mesh
|
|
|
|
);
|
|
|
|
|
2010-09-22 18:13:13 +00:00
|
|
|
Info<< "Reading field alpha1\n" << endl;
|
|
|
|
volScalarField alpha1
|
2010-05-12 13:27:55 +00:00
|
|
|
(
|
|
|
|
IOobject
|
|
|
|
(
|
2010-09-22 18:13:13 +00:00
|
|
|
"alpha1",
|
2010-05-12 13:27:55 +00:00
|
|
|
runTime.timeName(),
|
|
|
|
mesh,
|
|
|
|
IOobject::MUST_READ,
|
|
|
|
IOobject::AUTO_WRITE
|
|
|
|
),
|
|
|
|
mesh
|
|
|
|
);
|
|
|
|
|
|
|
|
Info<< "Reading field U\n" << endl;
|
|
|
|
volVectorField U
|
|
|
|
(
|
|
|
|
IOobject
|
|
|
|
(
|
|
|
|
"U",
|
|
|
|
runTime.timeName(),
|
|
|
|
mesh,
|
|
|
|
IOobject::MUST_READ,
|
|
|
|
IOobject::AUTO_WRITE
|
|
|
|
),
|
|
|
|
mesh
|
|
|
|
);
|
|
|
|
|
|
|
|
# include "createPhi.H"
|
|
|
|
|
|
|
|
Info<< "Creating phaseChangeTwoPhaseMixture\n" << endl;
|
|
|
|
autoPtr<phaseChangeTwoPhaseMixture> twoPhaseProperties =
|
2010-09-22 18:13:13 +00:00
|
|
|
phaseChangeTwoPhaseMixture::New(U, phi, "alpha1");
|
2010-05-12 13:27:55 +00:00
|
|
|
|
|
|
|
const dimensionedScalar& rho1 = twoPhaseProperties->rho1();
|
|
|
|
const dimensionedScalar& rho2 = twoPhaseProperties->rho2();
|
|
|
|
const dimensionedScalar& pSat = twoPhaseProperties->pSat();
|
|
|
|
|
|
|
|
// Need to store rho for ddt(rho, U)
|
|
|
|
volScalarField rho
|
|
|
|
(
|
|
|
|
IOobject
|
|
|
|
(
|
|
|
|
"rho",
|
|
|
|
runTime.timeName(),
|
|
|
|
mesh,
|
|
|
|
IOobject::READ_IF_PRESENT
|
|
|
|
),
|
2010-09-22 18:13:13 +00:00
|
|
|
alpha1*rho1 + (scalar(1) - alpha1)*rho2,
|
|
|
|
alpha1.boundaryField().types()
|
2010-05-12 13:27:55 +00:00
|
|
|
);
|
|
|
|
rho.oldTime();
|
|
|
|
|
|
|
|
|
2010-09-22 18:13:13 +00:00
|
|
|
// Mass flux
|
|
|
|
// Initialisation does not matter because rhoPhi is reset after the
|
|
|
|
// alpha1 solution before it is used in the U equation.
|
|
|
|
surfaceScalarField rhoPhi
|
|
|
|
(
|
|
|
|
IOobject
|
|
|
|
(
|
|
|
|
"rho*phi",
|
|
|
|
runTime.timeName(),
|
|
|
|
mesh,
|
|
|
|
IOobject::NO_READ,
|
|
|
|
IOobject::NO_WRITE
|
|
|
|
),
|
|
|
|
rho1*phi
|
|
|
|
);
|
2010-05-12 13:27:55 +00:00
|
|
|
|
2010-09-22 18:13:13 +00:00
|
|
|
|
|
|
|
Info<< "Calculating field g.h\n" << endl;
|
2010-05-12 13:27:55 +00:00
|
|
|
volScalarField gh("gh", g & mesh.C());
|
2010-09-22 18:13:13 +00:00
|
|
|
surfaceScalarField ghf("gh", g & mesh.Cf());
|
2010-05-12 13:27:55 +00:00
|
|
|
|
|
|
|
volScalarField p
|
|
|
|
(
|
|
|
|
IOobject
|
|
|
|
(
|
|
|
|
"p",
|
|
|
|
runTime.timeName(),
|
|
|
|
mesh,
|
|
|
|
IOobject::NO_READ,
|
|
|
|
IOobject::AUTO_WRITE
|
|
|
|
),
|
|
|
|
pd + rho*gh
|
|
|
|
);
|
|
|
|
|
|
|
|
|
2010-09-22 18:13:13 +00:00
|
|
|
label pdRefCell = 0;
|
|
|
|
scalar pdRefValue = 0.0;
|
2016-05-28 02:11:10 +00:00
|
|
|
setRefCell(pd, pimple.dict(), pdRefCell, pdRefValue);
|
2010-09-22 18:13:13 +00:00
|
|
|
|
|
|
|
scalar pRefValue = 0.0;
|
|
|
|
|
|
|
|
if (pd.needReference())
|
|
|
|
{
|
2016-05-28 02:11:10 +00:00
|
|
|
pRefValue = readScalar(pimple.dict().lookup("pRefValue"));
|
2010-09-22 18:13:13 +00:00
|
|
|
|
|
|
|
p += dimensionedScalar
|
|
|
|
(
|
|
|
|
"p",
|
|
|
|
p.dimensions(),
|
|
|
|
pRefValue - getRefCellValue(p, pdRefCell)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Construct interface from alpha1 distribution
|
|
|
|
interfaceProperties interface(alpha1, U, twoPhaseProperties());
|
2010-05-12 13:27:55 +00:00
|
|
|
|
2010-09-22 18:13:13 +00:00
|
|
|
// Construct incompressible turbulence model
|
|
|
|
autoPtr<incompressible::turbulenceModel> turbulence
|
2010-05-12 13:27:55 +00:00
|
|
|
(
|
2010-09-22 18:13:13 +00:00
|
|
|
incompressible::turbulenceModel::New(U, phi, twoPhaseProperties())
|
2010-05-12 13:27:55 +00:00
|
|
|
);
|
2017-12-30 09:32:57 +00:00
|
|
|
|
|
|
|
mesh.schemesDict().setFluxRequired(pd.name());
|
|
|
|
mesh.schemesDict().setFluxRequired(alpha1.name());
|