Go to the documentation of this file.00001 Info<< "Reading field p\n" << endl;
00002 volScalarField p
00003 (
00004 IOobject
00005 (
00006 "p",
00007 runTime.timeName(),
00008 mesh,
00009 IOobject::MUST_READ,
00010 IOobject::AUTO_WRITE
00011 ),
00012 mesh
00013 );
00014
00015
00016 Info<< "Reading field U\n" << endl;
00017 volVectorField U
00018 (
00019 IOobject
00020 (
00021 "U",
00022 runTime.timeName(),
00023 mesh,
00024 IOobject::MUST_READ,
00025 IOobject::AUTO_WRITE
00026 ),
00027 mesh
00028 );
00029
00030
00031 # include <finiteVolume/createPhi.H>
00032
00033
00034 singlePhaseTransportModel fluid(U, phi);
00035
00036
00037 label pRefCell = 0;
00038 scalar pRefValue = 0.0;
00039 setRefCell(p, mesh.solutionDict().subDict("PISO"), pRefCell, pRefValue);
00040
00041