mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
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:
@ -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())
|
||||
|
||||
@ -67,7 +67,8 @@ public:
|
||||
ReactingPhaseModel
|
||||
(
|
||||
const phaseSystem& fluid,
|
||||
const word& phaseName
|
||||
const word& phaseName,
|
||||
const label index
|
||||
);
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user