ENH: Updated solvers that use the lagrangian/intermediate library

This commit is contained in:
andy
2010-09-07 13:58:11 +01:00
parent 0028b38009
commit 052b0157ef
16 changed files with 35 additions and 14 deletions

View File

@ -4,7 +4,13 @@ EXE_INC = \
-I$(LIB_SRC)/finiteVolume/lnInclude \
-I$(LIB_SRC)/thermophysicalModels/specie/lnInclude \
-I$(LIB_SRC)/thermophysicalModels/basic/lnInclude \
-I$(LIB_SRC)/thermophysicalModels/solids/lnInclude \
-I$(LIB_SRC)/thermophysicalModels/solidMixture/lnInclude \
-I$(LIB_SRC)/thermophysicalModels/liquids/lnInclude \
-I$(LIB_SRC)/thermophysicalModels/liquidMixture/lnInclude \
-I$(LIB_SRC)/thermophysicalModels/thermophysicalFunctions/lnInclude \
-I$(LIB_SRC)/thermophysicalModels/reactionThermo/lnInclude \
-I$(LIB_SRC)/thermophysicalModels/SLGThermo/lnInclude \
-I$(LIB_SRC)/thermophysicalModels/radiation/lnInclude \
-I$(LIB_SRC)/turbulenceModels/compressible/turbulenceModel \
-I$(LIB_SRC)/meshTools/lnInclude \
@ -18,6 +24,7 @@ EXE_LIBS = \
-lthermophysicalFunctions \
-lbasicThermophysicalModels \
-lreactionThermophysicalModels \
-lSLGThermo \
-lspecie \
-lradiation \
-lcompressibleRASModels \

View File

@ -5,7 +5,7 @@
rho,
U,
g,
thermo
slgThermo
);
Info<< "Constructing kinematicCloud1" << endl;

View File

@ -6,6 +6,8 @@
);
basicPsiThermo& thermo = pThermo();
SLGThermo slgThermo(mesh, thermo);
volScalarField& p = thermo.p();
volScalarField& hs = thermo.hs();
const volScalarField& psi = thermo.psi();

View File

@ -69,10 +69,8 @@ int main(int argc, char *argv[])
Info<< "Time = " << runTime.timeName() << nl << endl;
thermoCloud1.evolve();
thermoCloud1.info();
kinematicCloud1.evolve();
kinematicCloud1.info();
#include "rhoEqn.H"