77 lines
1.5 KiB
C
77 lines
1.5 KiB
C
Info<< "Reading thermophysical properties\n" << endl;
|
|
|
|
Info<< "Reading field T\n" << endl;
|
|
volScalarField T
|
|
(
|
|
IOobject
|
|
(
|
|
"T",
|
|
runTime.timeName(),
|
|
mesh,
|
|
IOobject::MUST_READ,
|
|
IOobject::AUTO_WRITE
|
|
),
|
|
mesh
|
|
);
|
|
|
|
Info<< "Reading field p\n" << endl;
|
|
volScalarField p
|
|
(
|
|
IOobject
|
|
(
|
|
"p",
|
|
runTime.timeName(),
|
|
mesh,
|
|
IOobject::MUST_READ,
|
|
IOobject::AUTO_WRITE
|
|
),
|
|
mesh
|
|
);
|
|
|
|
Info<< "Reading field U\n" << endl;
|
|
volVectorField U
|
|
(
|
|
IOobject
|
|
(
|
|
"U",
|
|
runTime.timeName(),
|
|
mesh,
|
|
IOobject::MUST_READ,
|
|
IOobject::AUTO_WRITE
|
|
),
|
|
mesh
|
|
);
|
|
|
|
#include "createPhi.H"
|
|
|
|
#include "readTransportProperties.H"
|
|
|
|
Info<< "Creating turbulence model\n" << endl;
|
|
autoPtr<incompressible::turbulenceModel> turbulence
|
|
(
|
|
incompressible::turbulenceModel::New(U, phi, laminarTransport)
|
|
);
|
|
|
|
label pRefCell = 0;
|
|
scalar pRefValue = 0.0;
|
|
setRefCell
|
|
(
|
|
p,
|
|
mesh.solutionDict().subDict("PISO"),
|
|
pRefCell,
|
|
pRefValue
|
|
);
|
|
mesh.schemesDict().setFluxRequired(p.name());
|
|
|
|
|
|
// Kinematic density for buoyancy force
|
|
volScalarField rhok
|
|
(
|
|
IOobject
|
|
(
|
|
"rhok",
|
|
runTime.timeName(),
|
|
mesh
|
|
),
|
|
1.0 - beta*(T - TRef)
|
|
);
|