54 lines
1.1 KiB
C
54 lines
1.1 KiB
C
Info<< "Reading thermophysical properties\n" << endl;
|
|
|
|
autoPtr<basicPsiThermo> pThermo
|
|
(
|
|
basicPsiThermo::New(mesh)
|
|
);
|
|
basicPsiThermo& thermo = pThermo();
|
|
|
|
volScalarField& p = thermo.p();
|
|
volScalarField& h = thermo.h();
|
|
const volScalarField& T = thermo.T();
|
|
const volScalarField& psi = thermo.psi();
|
|
|
|
volScalarField rho
|
|
(
|
|
IOobject
|
|
(
|
|
"rho",
|
|
runTime.timeName(),
|
|
mesh,
|
|
IOobject::NO_READ,
|
|
IOobject::AUTO_WRITE
|
|
),
|
|
thermo.rho()
|
|
);
|
|
rho.oldTime();
|
|
|
|
Info<< "\nReading field U\n" << endl;
|
|
volVectorField U
|
|
(
|
|
IOobject
|
|
(
|
|
"U",
|
|
runTime.timeName(),
|
|
mesh,
|
|
IOobject::MUST_READ,
|
|
IOobject::AUTO_WRITE
|
|
),
|
|
mesh
|
|
);
|
|
|
|
# include "compressibleCreatePhi.H"
|
|
|
|
Info<< "Creating turbulence model\n" << endl;
|
|
autoPtr<compressible::RASModel> turbulence
|
|
(
|
|
compressible::RASModel::New
|
|
(
|
|
rho,
|
|
U,
|
|
phi,
|
|
thermo
|
|
)
|
|
);
|