diff --git a/src/thermophysicalModels/reactionThermo/psiuReactionThermo/heheuPsiThermo.C b/src/thermophysicalModels/reactionThermo/psiuReactionThermo/heheuPsiThermo.C index d2427b0a0d..0c17d1b472 100644 --- a/src/thermophysicalModels/reactionThermo/psiuReactionThermo/heheuPsiThermo.C +++ b/src/thermophysicalModels/reactionThermo/psiuReactionThermo/heheuPsiThermo.C @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org - \\ / A nd | Copyright (C) 2011-2020 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2011-2021 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -307,7 +307,7 @@ Foam::heheuPsiThermo::psiu() const &MixtureType::patchFaceReactants, &MixtureType::thermoMixtureType::psi, this->p_, - this->T_ + this->Tu_ ); } @@ -316,6 +316,8 @@ template Foam::tmp Foam::heheuPsiThermo::psib() const { + const volScalarField Tb(this->Tb()); + return this->volScalarFieldProperty ( "psib", @@ -324,7 +326,7 @@ Foam::heheuPsiThermo::psib() const &MixtureType::patchFaceProducts, &MixtureType::thermoMixtureType::psi, this->p_, - this->T_ + Tb ); } @@ -341,7 +343,7 @@ Foam::heheuPsiThermo::muu() const &MixtureType::patchFaceReactants, &MixtureType::transportMixtureType::mu, this->p_, - this->T_ + this->Tu_ ); } @@ -350,6 +352,8 @@ template Foam::tmp Foam::heheuPsiThermo::mub() const { + const volScalarField Tb(this->Tb()); + return this->volScalarFieldProperty ( "mub", @@ -358,7 +362,7 @@ Foam::heheuPsiThermo::mub() const &MixtureType::patchFaceProducts, &MixtureType::transportMixtureType::mu, this->p_, - this->T_ + Tb ); }