FreeFOAM The Cross-Platform CFD Toolkit
Hosted by SourceForge:
Get FreeFOAM at SourceForge.net.
            Fast, secure and Free Open Source software downloads

createFields.H

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     volScalarField rho
00031     (
00032         IOobject
00033         (
00034             "rho",
00035             runTime.timeName(),
00036             mesh,
00037             IOobject::NO_READ,
00038             IOobject::AUTO_WRITE
00039         ),
00040         rhoO + psi*p
00041     );
00042 
00043 
00044     #include <finiteVolume/compressibleCreatePhi.H>
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines