diff --git a/src/thermophysicalModels/basic/heThermo/heThermo.C b/src/thermophysicalModels/basic/heThermo/heThermo.C index 466640e15..0cc1354ff 100644 --- a/src/thermophysicalModels/basic/heThermo/heThermo.C +++ b/src/thermophysicalModels/basic/heThermo/heThermo.C @@ -736,7 +736,7 @@ Foam::heThermo::kappaEff const volScalarField& alphat ) const { - tmp kappaEff(Cp()*alphaEff(alphat)); + tmp kappaEff(Cp()*(this->alpha_ + alphat)); kappaEff().rename("kappaEff"); return kappaEff; } @@ -756,7 +756,11 @@ Foam::heThermo::kappaEff this->p_.boundaryField()[patchi], this->T_.boundaryField()[patchi], patchi - )*alphaEff(alphat, patchi); + ) + *( + this->alpha_.boundaryField()[patchi] + + alphat + ); }