Info<< "Reading transportProperties\n" << endl;
IOdictionary transportProperties
(
IOobject
"transportProperties",
runTime.constant(),
mesh,
IOobject::MUST_READ,
IOobject::NO_WRITE
)
);
dimensionedScalar rho
transportProperties.lookup("rho")
dimensionedScalar nu
transportProperties.lookup("nu")
dimensionedScalar mu
transportProperties.lookup("mu")
dimensionedScalar sigma
transportProperties.lookup("sigma")
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"
Info<< "Reading field pB\n" << endl;
volScalarField pB
"pB",
Info<< "Reading field B\n" << endl;
volVectorField B
"B",
# include "createPhiB.H"
dimensionedScalar DB = 1.0/(mu*sigma);
DB.name() = "DB";
dimensionedScalar DBU = 1.0/(2.0*mu*rho);
DBU.name() = "DBU";
label pRefCell = 0;
scalar pRefValue = 0.0;
setRefCell(p, mesh.solutionDict().subDict("PISO"), pRefCell, pRefValue);