1 Info<< "\nReading transportProperties\n" << endl;
3 IOdictionary transportProperties
10 IOobject::MUST_READ_IF_MODIFIED,
15 dimensionedScalar rhoInfValue
17 transportProperties.lookup("rhoInf")
34 Info<< "Reading field U\n" << endl;
48 #include "createPhi.H"
50 Info<< "Creating turbulence model\n" << endl;
52 singlePhaseTransportModel laminarTransport(U, phi);
54 const volScalarField nu(laminarTransport.nu());
56 autoPtr<incompressible::turbulenceModel> turbulence
58 incompressible::turbulenceModel::New(U, phi, laminarTransport)
74 word kinematicCloudName("kinematicCloud");
75 args.optionReadIfPresent("cloudName", kinematicCloudName);
77 Info<< "Constructing kinematicCloud " << kinematicCloudName << endl;
78 basicKinematicCollidingCloud kinematicCloud
96 autoPtr<volVectorField> HPtr;
98 if (Hheader.headerOk())
100 Info<< "\nReading field H\n" << endl;
102 HPtr.reset(new volVectorField (Hheader, mesh));
105 IOobject HdotGradHheader
114 autoPtr<volVectorField> HdotGradHPtr;
116 if (HdotGradHheader.headerOk())
118 Info<< "Reading field HdotGradH" << endl;
120 HdotGradHPtr.reset(new volVectorField(HdotGradHheader, mesh));
123 #include "createNonInertialFrameFields.H"