etc/codeTemplates/dynamicCode: Added psiuReactionThermo dynamic compilation support
for XiFoam and PDRFoam
This commit is contained in:
@ -1 +0,0 @@
|
||||
fluidThermo
|
||||
90
etc/codeTemplates/dynamicCode/psiThermo
Normal file
90
etc/codeTemplates/dynamicCode/psiThermo
Normal file
@ -0,0 +1,90 @@
|
||||
/*--------------------------------*- C++ -*----------------------------------*\
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration | Website: https://openfoam.org
|
||||
\\ / A nd | Version: dev
|
||||
\\/ M anipulation |
|
||||
\*---------------------------------------------------------------------------*/
|
||||
FoamFile
|
||||
{
|
||||
version 2.0;
|
||||
format ascii;
|
||||
class dictionary;
|
||||
object fluidThermo;
|
||||
}
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
type
|
||||
(
|
||||
hePsiThermo
|
||||
);
|
||||
|
||||
baseType
|
||||
(
|
||||
hePsiThermo psiThermo
|
||||
);
|
||||
|
||||
energy
|
||||
(
|
||||
sensibleEnthalpy
|
||||
absoluteEnthalpy
|
||||
sensibleInternalEnergy
|
||||
absoluteInternalEnergy
|
||||
);
|
||||
|
||||
mixture
|
||||
(
|
||||
pureMixture
|
||||
);
|
||||
|
||||
transport
|
||||
(
|
||||
const
|
||||
logPolynomial
|
||||
polynomial
|
||||
sutherland
|
||||
tabulated
|
||||
WLF
|
||||
);
|
||||
|
||||
thermo
|
||||
(
|
||||
eConst
|
||||
ePolynomial
|
||||
ePower
|
||||
eTabulated
|
||||
hConst
|
||||
hPolynomial
|
||||
hPower
|
||||
hTabulated
|
||||
janaf
|
||||
);
|
||||
|
||||
equationOfState
|
||||
(
|
||||
PengRobinsonGas
|
||||
perfectGas
|
||||
);
|
||||
|
||||
codeOptions
|
||||
#{
|
||||
EXE_INC = \
|
||||
-I$(LIB_SRC)/transportModels/lnInclude \
|
||||
-I$(LIB_SRC)/thermophysicalModels/specie/lnInclude \
|
||||
-I$(LIB_SRC)/thermophysicalModels/thermophysicalProperties/lnInclude \
|
||||
-I$(LIB_SRC)/thermophysicalModels/basic/lnInclude \
|
||||
-I$(LIB_SRC)/finiteVolume/lnInclude
|
||||
#};
|
||||
|
||||
codeLibs
|
||||
#{
|
||||
LIB_LIBS = \
|
||||
-ltransportModels \
|
||||
-lspecie \
|
||||
-lthermophysicalProperties \
|
||||
-lfluidThermophysicalModels \
|
||||
-lfiniteVolume
|
||||
#};
|
||||
|
||||
|
||||
// ************************************************************************* //
|
||||
Reference in New Issue
Block a user