postSootFoam combustionModel header path correction
This commit is contained in:
parent
193100b7ef
commit
c24a69be11
3 changed files with 6 additions and 7 deletions
|
|
@ -24,7 +24,7 @@ EXE_INC = \
|
|||
-I$(LIB_SRC)/regionModels/surfaceFilmModels/lnInclude \
|
||||
-I$(LIB_SRC)/properties/lnInclude \
|
||||
-I$(LIB_SRC)/thermophysicalModels/chemistryModel/lnInclude \
|
||||
-I$(LIB_SRC)/thermophysicalModels/combustionModels/lnInclude
|
||||
-I$(LIB_SRC)/combustionModels/lnInclude
|
||||
|
||||
EXE_LIBS = \
|
||||
-lchemistryModel \
|
||||
|
|
|
|||
|
|
@ -1,13 +1,12 @@
|
|||
Info<< "\nCreating thermophysical model for Fluid mesh\n" << endl;
|
||||
#include "readGravitationalAcceleration.H"
|
||||
|
||||
combustionModels::rhoCombustionModel* pRxn = (combustionModels::rhoCombustionModel::New(mesh)).ptr();
|
||||
autoPtr<combustionModels::rhoChemistryCombustion> combustion
|
||||
autoPtr<combustionModels::rhoCombustionModel> combustion
|
||||
(
|
||||
dynamic_cast <combustionModels::rhoChemistryCombustion*> (pRxn)
|
||||
combustionModels::rhoCombustionModel::New(mesh)
|
||||
);
|
||||
autoPtr<rhoChemistryModel> chemistry = combustion->chem();
|
||||
rhoReactionThermo& thermo = chemistry->thermo();
|
||||
|
||||
rhoReactionThermo& thermo = combustion->thermo();
|
||||
thermo.validate(args.executable(), "ha");
|
||||
SLGThermo slgThermo(mesh, thermo);
|
||||
basicSpecieMixture& composition = thermo.composition();
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@ Description
|
|||
#include "fvCFD.H"
|
||||
#include "turbulentFluidThermoModel.H"
|
||||
#include "basicReactingMultiphaseCloud.H"
|
||||
#include "rhoChemistryCombustion.H"
|
||||
#include "rhoCombustionModel.H"
|
||||
#include "radiationModel.H"
|
||||
#include "fvOptions.H"
|
||||
#include "SLGThermo.H"
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue