1 Info<< "Reading field pd\n" << endl;
15 Info<< "Reading field alpha1\n" << endl;
29 Info<< "Reading field U\n" << endl;
43 # include "createPhi.H"
46 Info<< "Reading transportProperties\n" << endl;
47 twoPhaseMixture twoPhaseProperties(U, phi, "alpha1");
49 const dimensionedScalar& rho1 = twoPhaseProperties.rho1();
50 const dimensionedScalar& rho2 = twoPhaseProperties.rho2();
53 // Need to store rho for ddt(rho, U)
61 IOobject::READ_IF_PRESENT
63 alpha1*rho1 + (scalar(1) - alpha1)*rho2,
64 alpha1.boundaryField().types()
70 // Initialisation does not matter because rhoPhi is reset after the
71 // alpha1 solution before it is used in the U equation.
72 surfaceScalarField rhoPhi
86 Info<< "Calculating field g.h\n" << endl;
87 volScalarField gh("gh", g & mesh.C());
88 surfaceScalarField ghf("gh", g & mesh.Cf());
105 scalar pdRefValue = 0.0;
109 mesh.solutionDict().subDict("PIMPLE"),
114 scalar pRefValue = 0.0;
116 if (pd.needReference())
118 pRefValue = readScalar
120 mesh.solutionDict().subDict("PIMPLE").lookup("pRefValue")
123 p += dimensionedScalar
127 pRefValue - getRefCellValue(p, pdRefCell)
131 // Construct interface from alpha1 distribution
132 interfaceProperties interface(alpha1, U, twoPhaseProperties);
134 // Construct incompressible turbulence model
135 autoPtr<incompressible::turbulenceModel> turbulence
137 incompressible::turbulenceModel::New(U, phi, twoPhaseProperties)