1 Info << 
"Reading field p\n" 
   10             IOobject::AUTO_WRITE),
 
   12 volScalarField& 
p = pPtr_();
 
   14 Info << 
"Reading field U\n" 
   23             IOobject::AUTO_WRITE),
 
   25 volVectorField& 
U = UPtr_();
 
   30 Info << 
"Creating source term. " << endl;
 
   38             IOobject::AUTO_WRITE),
 
   40         dimensionedVector(
"fvSource", dimensionSet(0, 1, -2, 0, 0, 0, 0), vector::zero),
 
   41         zeroGradientFvPatchField<vector>::typeName));
 
   42 volVectorField& 
fvSource = fvSourcePtr_();
 
   44 setRefCell(
p, 
piso.dict(), pRefCell_, pRefValue_);
 
   45 mesh.setFluxRequired(
p.name());
 
   47 laminarTransportPtr_.reset(
 
   48     new singlePhaseTransportModel(
U, 
phi));