Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026 #include "XiModel.H"
00027
00028
00029
00030 Foam::autoPtr<Foam::XiModel> Foam::XiModel::New
00031 (
00032 const dictionary& XiProperties,
00033 const hhuCombustionThermo& thermo,
00034 const compressible::RASModel& turbulence,
00035 const volScalarField& Su,
00036 const volScalarField& rho,
00037 const volScalarField& b,
00038 const surfaceScalarField& phi
00039 )
00040 {
00041 word XiModelTypeName = XiProperties.lookup("XiModel");
00042
00043 Info<< "Selecting flame-wrinkling model " << XiModelTypeName << endl;
00044
00045 dictionaryConstructorTable::iterator cstrIter =
00046 dictionaryConstructorTablePtr_->find(XiModelTypeName);
00047
00048 if (cstrIter == dictionaryConstructorTablePtr_->end())
00049 {
00050 FatalErrorIn
00051 (
00052 "XiModel::New"
00053 ) << "Unknown XiModel type "
00054 << XiModelTypeName << endl << endl
00055 << "Valid XiModels are : " << endl
00056 << dictionaryConstructorTablePtr_->sortedToc()
00057 << exit(FatalError);
00058 }
00059
00060 return autoPtr<XiModel>
00061 (cstrIter()(XiProperties, thermo, turbulence, Su, rho, b, phi));
00062 }
00063
00064
00065