

Go to the source code of this file.
Functions | |
| Info<< "Reading thermophysical properties\n"<< endl;autoPtr< psiuMulticomponentThermo > | pThermo (psiuMulticomponentThermo::New(mesh)) |
| thermo | validate (args.executable(), "ha", "ea") |
| volScalarField | rho (IOobject("rho", runTime.name(), mesh, IOobject::NO_READ, IOobject::AUTO_WRITE), thermo.renameRho()) |
| Info<< "min(b) = "<< min(b).value()<< endl;Info<< "\nReading field U\n"<< endl;volVectorField U(IOobject("U", runTime.name(), mesh, IOobject::MUST_READ, IOobject::AUTO_WRITE), mesh);mesh.schemes().setFluxRequired(p.name());Info<< "Creating turbulence model\n"<< endl;autoPtr< compressible::RASModel > | turbulence (compressible::New< compressible::RASModel >(rho, U, phi, thermo)) |
| Info<< "Creating thermophysical transport model\n"<< endl;turbulenceThermophysicalTransportModels::unityLewisEddyDiffusivity< RASThermophysicalTransportModel< ThermophysicalTransportModel< compressibleMomentumTransportModel, fluidThermo > >> | thermophysicalTransport (turbulence(), thermo, true) |
| Info<< "Creating field dpdt\n"<< endl;volScalarField dpdt(IOobject("dpdt", runTime.name(), mesh), mesh, dimensionedScalar(p.dimensions()/dimTime, 0));Info<< "Creating field kinetic energy K\n"<< endl;volScalarField K("K", 0.5 *magSqr(U));Info<< "Creating the unstrained laminar flame speed\n"<< endl;autoPtr< laminarFlameSpeed > | unstrainedLaminarFlameSpeed (laminarFlameSpeed::New(combustionProperties.subDict("laminarFlameSpeed"), thermo)) |
| if (thermo.containsSpecie("ft")) | |
| fields | add (b) |
| fields | add (thermo.he()) |
| flameWrinkling | addXi (fields) |
Variables | |
| psiuMulticomponentThermo & | thermo = pThermo() |
| volScalarField & | p = thermo.p() |
| volScalarField & | b = thermo.Y("b") |
| Info<< "Reading strained laminar flame speed field Su\n"<< endl;volScalarField Su(IOobject("Su", runTime.name(), mesh, IOobject::MUST_READ, IOobject::AUTO_WRITE), mesh);Info<< "Reading field betav\n"<< endl;volScalarField betav(IOobject("betav", mesh.facesInstance(), mesh, IOobject::MUST_READ, IOobject::NO_WRITE), mesh);Info<< "Reading field Lobs\n"<< endl;volScalarField Lobs(IOobject("Lobs", mesh.facesInstance(), mesh, IOobject::MUST_READ, IOobject::NO_WRITE), mesh);Info<< "Reading field CT\n"<< endl;volSymmTensorField CT(IOobject("CT", mesh.facesInstance(), mesh, IOobject::MUST_READ, IOobject::NO_WRITE), mesh);Info<< "Reading field Nv\n"<< endl;volScalarField Nv(IOobject("Nv", mesh.facesInstance(), mesh, IOobject::MUST_READ, IOobject::NO_WRITE), mesh);Info<< "Reading field nsv\n"<< endl;volSymmTensorField nsv(IOobject("nsv", mesh.facesInstance(), mesh, IOobject::MUST_READ, IOobject::NO_WRITE), mesh);IOdictionary PDRProperties(IOobject("PDRProperties", runTime.constant(), mesh, IOobject::MUST_READ_IF_MODIFIED, IOobject::NO_WRITE));autoPtr< PDRDragModel > | drag |
| autoPtr< XiModel > | flameWrinkling |
| Create the flame-wrinkling model. More... | |
| Info<< "Calculating turbulent flame speed field St\n"<< endl;volScalarField St(IOobject("St", runTime.name(), mesh, IOobject::NO_READ, IOobject::AUTO_WRITE), flameWrinkling->Xi() *Su);multivariateSurfaceInterpolationScheme< scalar >::fieldTable | fields |
| Info<< "Reading thermophysical properties\n" << endl;autoPtr<psiuMulticomponentThermo> pThermo | ( | psiuMulticomponentThermo::New(mesh) | ) |
| thermo validate | ( | args. | executable(), |
| "ha" | , | ||
| "ea" | |||
| ) |
| volScalarField rho | ( | IOobject("rho", runTime.name(), mesh, IOobject::NO_READ, IOobject::AUTO_WRITE) | , |
| thermo. | renameRho() | ||
| ) |
| Info<< "min(b) = " << min(b).value() << endl;Info<< "\nReading field U\n" << endl;volVectorField U( IOobject ( "U", runTime.name(), mesh, IOobject::MUST_READ, IOobject::AUTO_WRITE ), mesh);mesh.schemes().setFluxRequired(p.name());Info<< "Creating turbulence model\n" << endl;autoPtr<compressible::RASModel> turbulence | ( | compressible::New< compressible::RASModel > | rho, U, phi, thermo | ) |
| Info<< "Creating thermophysical transport model\n" << endl;turbulenceThermophysicalTransportModels::unityLewisEddyDiffusivity< RASThermophysicalTransportModel < ThermophysicalTransportModel < compressibleMomentumTransportModel, fluidThermo > >> thermophysicalTransport | ( | turbulence() | , |
| thermo | , | ||
| true | |||
| ) |
Referenced by main(), solid::thermophysicalPredictor(), XiFluid::thermophysicalPredictor(), compressibleVoF::thermophysicalTransportCorrector(), film::thermophysicalTransportCorrector(), fluid::thermophysicalTransportCorrector(), multicomponentFluid::thermophysicalTransportCorrector(), shockFluid::thermophysicalTransportCorrector(), solid::thermophysicalTransportCorrector(), XiFluid::thermophysicalTransportCorrector(), compressibleVoF::thermophysicalTransportPredictor(), film::thermophysicalTransportPredictor(), fluid::thermophysicalTransportPredictor(), multicomponentFluid::thermophysicalTransportPredictor(), shockFluid::thermophysicalTransportPredictor(), solid::thermophysicalTransportPredictor(), and XiFluid::thermophysicalTransportPredictor().

| Info<< "Creating field dpdt\n" << endl;volScalarField dpdt( IOobject ( "dpdt", runTime.name(), mesh ), mesh, dimensionedScalar(p.dimensions()/dimTime, 0));Info<< "Creating field kinetic energy K\n" << endl;volScalarField K("K", 0.5*magSqr(U));Info<< "Creating the unstrained laminar flame speed\n" << endl;autoPtr<laminarFlameSpeed> unstrainedLaminarFlameSpeed | ( | laminarFlameSpeed::New(combustionProperties.subDict("laminarFlameSpeed"), thermo) | ) |
| if | ( | thermo. | containsSpecie"ft" | ) |
Definition at line 236 of file createFields.H.
| fields add | ( | thermo. | he() | ) |
| flameWrinkling addXi | ( | fields | ) |
| psiuMulticomponentThermo& thermo = pThermo() |
Definition at line 9 of file createFields.H.
| volScalarField& p = thermo.p() |
Definition at line 25 of file createFields.H.
Referenced by if().
| volScalarField& b = thermo.Y("b") |
Definition at line 27 of file createFields.H.
Referenced by greyMean::aCont(), wideBand::aCont(), constantbXiIgnition::addSup(), LuoSvendsen::addToBinaryBreakupRate(), bufferedAccumulator< scalar >::addToBuffers(), standardNormal::approxErfInv(), cubicEqn::b(), linearEqn::b(), quadraticEqn::b(), BarycentricTensor< Cmpt >::BarycentricTensor(), BarycentricTensor2D< Cmpt >::BarycentricTensor2D(), tetrahedron< Point, PointRef >::bounds(), XiFluid::bSolve(), points::calcSamples(), lineFace::calcSamples(), tetrahedron< Point, PointRef >::circumSphere(), triSurfaceTools::collapseEdges(), Foam::combine(), edge::compare(), face::compare(), Pair< Type >::compare(), triFace::compare(), volFieldValue::compareScalars(), transport::correct(), SSG< BasicMomentumTransportModel >::correct(), Foam::correctContactAngle(), cyclicPolyPatch::coupledEdges(), cyclicPolyPatch::coupledPoints(), PengRobinsonGas< Specie >::Cp(), PengRobinsonGas< Specie >::CpMCv(), cubicEqn::cubicEqn(), PengRobinsonGas< Specie >::Cv(), cyclicTransform::cyclicTransform(), LangmuirHinshelwoodReactionRate::ddc(), LangmuirHinshelwoodReactionRate::ddT(), cubicEqn::derivative(), quadraticEqn::derivative(), dmat_uniform(), pairPotentialList::dr(), edge::edge(), Foam::eigenValues(), globalIndexAndTransform::encodeTransformIndex(), pairPotentialList::energy(), instant::equal(), cubicEqn::error(), linearEqn::error(), quadraticEqn::error(), treeBoundBox::extend(), tetCell::face(), cylinder::findLine(), sphere::findLine(), cylinder::findLineAny(), sphere::findLineAny(), fieldsExpression::foldAB(), forAll(), pairPotentialList::force(), XiFluid::fuSolve(), coordSet::gather(), Foam::HasherDual(), Foam::HasherInt(), if(), HashTable< Foam::List >::insert(), jenkins_hashbig(), jenkins_hashlittle(), Smagorinsky< BasicMomentumTransportModel >::k(), linearEqn::linearEqn(), Foam::max(), Foam::min(), Foam::minimaxs(), leanInhomogeneousMixture< ThermoType >::mixture(), homogeneousMixture< ThermoType >::mixture(), Foam::tracking::movingTetReverseTransform(), Foam::name(), line< Point, PointRef >::nearestDist(), XiModel::New(), XiProfile::New(), fieldsExpression::opAndStore(), Foam::triIntersect::operator!=(), Foam::operator!=(), Foam::operator&(), plusOpAuto< A, B, R >::operator()(), divideOpAuto< A, B, R >::operator()(), multiplyOpAuto< A, B, R >::operator()(), minusOpAuto< A, B, R >::operator()(), instant::less::operator()(), UList< T >::less::operator()(), UList< T >::greater::operator()(), procLess::operator()(), lessProcPatches::operator()(), structuredRenumber::layerLess::operator()(), SortableListDRGEP< Type >::less::operator()(), SortableListEFA< Type >::more::operator()(), normalLess::operator()(), globalIndexAndTransform::less::operator()(), labelRange::less::operator()(), closestOp::operator()(), furthestOp::operator()(), ListOp< BinaryOp >::operator()(), remote::firstProcOp::operator()(), RemoteData< Type >::firstProcOp::operator()(), LangmuirHinshelwoodReactionRate::operator()(), maxFirstOp< Type >::operator()(), BinaryOpAdd::operator()(), ListEqOp< BinaryOp >::operator()(), remote::firstProcEqOp::operator()(), RemoteData< Type >::firstProcEqOp::operator()(), RemoteData< Type >::smallestEqOp::operator()(), RemoteData< Type >::greatestEqOp::operator()(), RemoteData< Type >::smallestFirstEqOp::operator()(), RemoteData< Type >::greatestFirstEqOp::operator()(), Foam::operator*(), Foam::operator+(), Foam::operator-(), Foam::operator/(), Foam::operator<(), Foam::operator<<(), Foam::operator<=(), Switch::operator=(), bufferedAccumulator< scalar >::operator=(), Foam::triIntersect::operator==(), Foam::operator==(), Foam::operator>(), Foam::operator>=(), Foam::operator>>(), pairPotentialList::pairPotentialFunction(), Vector2D< Cmpt >::perp(), plane::plane(), plane::planePlaneIntersect(), Foam::pow(), Foam::protectedDivide(), quadraticEqn::quadraticEqn(), pairPotentialList::rCut(), pairPotentialList::rCutSqr(), Foam::readBool(), Foam::repeat(), inhomogeneousEGRMixture< ThermoType >::reset(), pairPotentialList::rMin(), linearEqn::roots(), face::sameVertices(), randomGenerator::sampleAB(), randomGenerator::sampleABNoCheckSync(), unintegrable::sampleInterval(), randomGenerator::scalarAB(), bufferedAccumulator< scalar >::setSizes(), Foam::sqrtSumSqr(), Foam::Swap(), swapec(), tetCell::tetCell(), XiFluid::thermophysicalPredictor(), Foam::tracking::toMovingTri(), Foam::tracking::toStationaryTri(), globalIndexAndTransform::transformIndicesForPatches(), triFace::triFace(), lduAddressing::triIndex(), regIOobject::upToDate(), basicThermo::validate(), cubicEqn::value(), linearEqn::value(), quadraticEqn::value(), vbedg(), bXiProgress::write(), XiReactionRate::write(), XiFluid::XiCorr(), constantbXiIgnition::XiCorr(), XiCorrModel::XiCorr(), basicSubGrid::XiEq(), PengRobinsonGas< Specie >::Z(), and bufferedAccumulator< scalar >::~bufferedAccumulator().
| Info<< "Reading strained laminar flame speed field Su\n" << endl;volScalarField Su( IOobject ( "Su", runTime.name(), mesh, IOobject::MUST_READ, IOobject::AUTO_WRITE ), mesh);Info<< "Reading field betav\n" << endl;volScalarField betav( IOobject ( "betav", mesh.facesInstance(), mesh, IOobject::MUST_READ, IOobject::NO_WRITE ), mesh);Info<< "Reading field Lobs\n" << endl;volScalarField Lobs( IOobject ( "Lobs", mesh.facesInstance(), mesh, IOobject::MUST_READ, IOobject::NO_WRITE ), mesh);Info<< "Reading field CT\n" << endl;volSymmTensorField CT( IOobject ( "CT", mesh.facesInstance(), mesh, IOobject::MUST_READ, IOobject::NO_WRITE ), mesh);Info<< "Reading field Nv\n" << endl;volScalarField Nv( IOobject ( "Nv", mesh.facesInstance(), mesh, IOobject::MUST_READ, IOobject::NO_WRITE ), mesh);Info<< "Reading field nsv\n" << endl;volSymmTensorField nsv( IOobject ( "nsv", mesh.facesInstance(), mesh, IOobject::MUST_READ, IOobject::NO_WRITE ), mesh);IOdictionary PDRProperties( IOobject ( "PDRProperties", runTime.constant(), mesh, IOobject::MUST_READ_IF_MODIFIED, IOobject::NO_WRITE ));autoPtr<PDRDragModel> drag |
Definition at line 198 of file createFields.H.
| autoPtr<XiModel> flameWrinkling |
Create the flame-wrinkling model.
Definition at line 208 of file createFields.H.
Referenced by if().
| Info<< "Calculating turbulent flame speed field St\n" << endl;volScalarField St( IOobject ( "St", runTime.name(), mesh, IOobject::NO_READ, IOobject::AUTO_WRITE ), flameWrinkling->Xi()*Su);multivariateSurfaceInterpolationScheme<scalar>::fieldTable fields |
Definition at line 234 of file createFields.H.
Referenced by transport::addXi(), fvMesh::curFields(), pointFieldDecomposer::decomposeFields(), LagrangianFieldDecomposer::decomposeFields(), fvFieldDecomposer::decomposeFvSurfaceFields(), fvFieldDecomposer::decomposeVolFields(), fvFieldDecomposer::decomposeVolInternalFields(), fieldAverage::fields(), nearWallFields::fields(), regionSizeDistribution::fields(), sampledSurfaces::fields(), fvMesh::fields(), Foam::fvMeshStitcher::postUnconformSurfaceFields< Foam::vector >(), if(), LagrangianMesh::lookupCurrentFields(), Foam::MapConsistentVolFields(), Foam::MapDimensionedFields(), fvMeshAdder::MapDimFields(), Foam::MapGeometricFields(), Foam::MapLagrangianFields(), fvMeshAdder::MapPointFields(), fvMeshAdder::MapSurfaceFields(), Foam::MapVolFields(), fvMeshAdder::MapVolFields(), Foam::MeshToMeshMapVolFields(), Foam::MeshToMeshMapVolInternalFields(), Foam::NaNGeometricFields(), convectionScheme< Type >::New(), fvMeshDistribute::printFieldInfo(), Foam::readFields(), Foam::readUniformFields(), pointFieldReconstructor::reconstructFields(), LagrangianFieldReconstructor::reconstructFields(), fvFieldReconstructor::reconstructFvSurfaceFields(), fvFieldReconstructor::reconstructVolFields(), fvFieldReconstructor::reconstructVolInternalFields(), singleRegionSolutionControl::storePrevIterTypeFields(), XiFluid::thermophysicalPredictor(), and Foam::UnMapped().