Info<< "Reading transportProperties\n" << endl;
IOdictionary transportProperties
(
IOobject
"transportProperties",
runTime.constant(),
mesh,
IOobject::MUST_READ_IF_MODIFIED,
IOobject::NO_WRITE
)
);
dimensionedScalar nu
transportProperties.lookup("nu")
Info<< "Reading field p\n" << endl;
volScalarField p
"p",
runTime.timeName(),
IOobject::MUST_READ,
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, piso.dict(), pRefCell, pRefValue);
mesh.schemesDict().setFluxRequired(p.name());