31IOdictionary transportProperties
35 "transportProperties",
38 IOobject::MUST_READ_IF_MODIFIED,
43Info <<
"Reading field p\n" << endl;
44_p = autoPtr<volScalarField>
59volScalarField& p = _p();
61Info <<
"Reading field U\n" << endl;
62_U = autoPtr<volVectorField>
77volVectorField& U = _U();
79Info <<
"Reading field T\n" << endl;
80_T = autoPtr<volScalarField>
96Info <<
"Reading field alphat\n" << endl;
97_alphat = autoPtr<volScalarField>
112volScalarField& alphat = _alphat();
114_nut = autoPtr<volScalarField>
129volScalarField& nut = _nut();
131_nu = autoPtr<dimensionedScalar>
133 new dimensionedScalar
137 transportProperties.lookup(
"nu")
142#include "createPhi.H"
143_DT = autoPtr<dimensionedScalar>
145 new dimensionedScalar
147 transportProperties.lookup(
"DT")
152scalar pRefValue = 0.0;
153setRefCell(p, mesh.solutionDict().subDict(
"PISO"), pRefCell, pRefValue);
155_laminarTransport = autoPtr<singlePhaseTransportModel>
157 new singlePhaseTransportModel( U, phi )
159singlePhaseTransportModel& laminarTransport = _laminarTransport();
161turbulence = autoPtr<incompressible::turbulenceModel>
163 incompressible::turbulenceModel::New(U, phi, laminarTransport)
166_Pr = autoPtr<dimensionedScalar>
168 new dimensionedScalar
170 transportProperties.lookup(
"Pr")
174_Prt = autoPtr<dimensionedScalar>
176 new dimensionedScalar
178 transportProperties.lookup(
"Prt")
181_MRF = autoPtr<IOMRFZoneList>
183 new IOMRFZoneList(mesh)