From a641fad756109ba3a0f7fb19316f03cd21da1225 Mon Sep 17 00:00:00 2001 From: ignis Date: Wed, 2 Dec 2015 19:56:11 +0900 Subject: [PATCH] class psiReactionThermo added pure virtual method qc() --- .../reactionThermo/psiReactionThermo/psiReactionThermo.H | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/thermophysicalModels/reactionThermo/psiReactionThermo/psiReactionThermo.H b/src/thermophysicalModels/reactionThermo/psiReactionThermo/psiReactionThermo.H index 79af4285..1d94a8c5 100644 --- a/src/thermophysicalModels/reactionThermo/psiReactionThermo/psiReactionThermo.H +++ b/src/thermophysicalModels/reactionThermo/psiReactionThermo/psiReactionThermo.H @@ -102,6 +102,13 @@ public: //- Return the composition of the multi-component mixture virtual const basicMultiComponentMixture& composition() const = 0; + + // Access to electric state variables + + //- Thermal diffusivity for enthalpy of mixture [kg/m/s] + virtual volScalarField& qc() = 0; + virtual const volScalarField& qc() const = 0; + };