ENH: Added no-composition model to lagrangian/intermediate

This commit is contained in:
andy
2010-10-20 16:51:01 +01:00
parent a777715e15
commit dea66be8eb
2 changed files with 16 additions and 0 deletions

View File

@ -29,6 +29,7 @@ License
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#include "ReactingMultiphaseCloud.H"
#include "NoComposition.H"
#include "SingleMixtureFraction.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
@ -38,6 +39,13 @@ License
makeCompositionModel(ReactingCloud<ParcelType>); \
\
makeCompositionModelType \
( \
NoComposition, \
ReactingCloud, \
ParcelType \
); \
\
makeCompositionModelType \
( \
SingleMixtureFraction, \
ReactingCloud, \

View File

@ -29,6 +29,7 @@ License
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#include "ReactingCloud.H"
#include "NoComposition.H"
#include "SinglePhaseMixture.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
@ -38,6 +39,13 @@ License
makeCompositionModel(ReactingCloud<ParcelType>); \
\
makeCompositionModelType \
( \
NoComposition, \
ReactingCloud, \
ParcelType \
); \
\
makeCompositionModelType \
( \
SinglePhaseMixture, \
ReactingCloud, \