Info<< "Reading transportProperties\n" << endl;
IOdictionary transportProperties
(
IOobject
"transportProperties",
runTime.constant(),
mesh,
IOobject::MUST_READ,
IOobject::NO_WRITE
)
);
dimensionedScalar nu
transportProperties.lookup("nu")
Info<< "Reading field p\n" << endl;
volScalarField p
"p",
runTime.timeName(),
IOobject::AUTO_WRITE
),
mesh
Info<< "Reading field U\n" << endl;
volVectorField U
"U",
# include "createPhi.H"
label pRefCell = 0;
scalar pRefValue = 0.0;
setRefCell(p, mesh.solutionDict().subDict("PISO"), pRefCell, pRefValue);
scalar totalVolume = sum(mesh.V()).value();
volScalarField rUA
"rUA",
dimensionedScalar("rUA", dimTime, 1),
zeroGradientFvPatchScalarField::typeName
{
const dictionary& piso = mesh.solutionDict().subDict("PISO");
bool momentumPredictor = true;
if (piso.found("momentumPredictor"))
momentumPredictor = Switch(piso.lookup("momentumPredictor"));
}
bool momentumPredictorSave = momentumPredictor;
momentumPredictor = false;
# include "UEqn.H"
momentumPredictor = momentumPredictorSave;
rUA = 1.0/UEqn.A();