BUG: UListIO: byteSize overflowing on really big faceLists
[OpenFOAM-2.0.x.git] / applications / utilities / postProcessing / wall / wallHeatFlux / createFields.H
blob609d4c3776006ef5be5295695fbcce84cf8a2ca7
1 autoPtr<basicPsiThermo> thermo
3     basicPsiThermo::New(mesh)
4 );
6 const volScalarField& h = thermo->h();
8 volScalarField rho
10     IOobject
11     (
12         "rho",
13         runTime.timeName(),
14         mesh
15     ),
16     thermo->rho()
19 volVectorField U
21     IOobject
22     (
23         "U",
24         runTime.timeName(),
25         mesh,
26         IOobject::MUST_READ,
27         IOobject::AUTO_WRITE
28     ),
29     mesh
32 #include "compressibleCreatePhi.H"
34 autoPtr<compressible::RASModel> RASModel
36     compressible::RASModel::New
37     (
38         rho,
39         U,
40         phi,
41         thermo()
42     )