reactingMultiphaseEulerFoam: New Euler-Euler multiphase solver

Supporting any number of phases with heat and mass transfer, phase-change and reactions
This commit is contained in:
Henry Weller
2015-09-11 15:33:12 +01:00
parent 34f060cfbb
commit 85b27f674f
172 changed files with 13503 additions and 144 deletions

View File

@ -33,10 +33,11 @@ template<class BasePhaseModel, class ReactionType>
Foam::ReactingPhaseModel<BasePhaseModel, ReactionType>::ReactingPhaseModel
(
const phaseSystem& fluid,
const word& phaseName
const word& phaseName,
const label index
)
:
BasePhaseModel(fluid, phaseName, false),
BasePhaseModel(fluid, phaseName, index, false),
reaction_
(
ReactionType::New(fluid.mesh(), this->name())

View File

@ -67,7 +67,8 @@ public:
ReactingPhaseModel
(
const phaseSystem& fluid,
const word& phaseName
const word& phaseName,
const label index
);