ENH: Using more consistent T for particle heat transfer calc

This commit is contained in:
andy
2012-06-19 14:55:37 +01:00
parent 426f0ef0f6
commit 6e9f33ce51

View File

@ -318,7 +318,7 @@ Foam::scalar Foam::ThermoParcel<ParcelType>::calcHeatTransfer
Sph = dt*htc*As;
dhsTrans += Sph*(0.5*(T_ + Tnew) - Tc_);
dhsTrans += Sph*(Tres.average() - Tc_);
return Tnew;
}