00001 Info<< "Reading combustion properties\n" << endl; 00002 00003 IOdictionary combustionProperties 00004 ( 00005 IOobject 00006 ( 00007 "combustionProperties", 00008 runTime.constant(), 00009 mesh, 00010 IOobject::MUST_READ, 00011 IOobject::NO_WRITE 00012 ) 00013 ); 00014 00015 word SuModel 00016 ( 00017 combustionProperties.lookup("SuModel") 00018 ); 00019 00020 dimensionedScalar sigmaExt 00021 ( 00022 combustionProperties.lookup("sigmaExt") 00023 ); 00024 00025 word XiModel 00026 ( 00027 combustionProperties.lookup("XiModel") 00028 ); 00029 00030 dimensionedScalar XiCoef 00031 ( 00032 combustionProperties.lookup("XiCoef") 00033 ); 00034 00035 dimensionedScalar XiShapeCoef 00036 ( 00037 combustionProperties.lookup("XiShapeCoef") 00038 ); 00039 00040 dimensionedScalar uPrimeCoef 00041 ( 00042 combustionProperties.lookup("uPrimeCoef") 00043 ); 00044 00045 ignition ign(combustionProperties, runTime, mesh); 00046 00047 // ************************ vim: set sw=4 sts=4 et: ************************ //