ThermoParcel: Improved numerical stability of heat transfer term
Patch contributed by Timo Niemi, VTT. Resolves bug-report https://bugs.openfoam.org/view.php?id=2655
This commit is contained in:
parent
718111a3b2
commit
90ce63f694
1 changed files with 1 additions and 3 deletions
|
|
@ -282,7 +282,7 @@ Foam::scalar Foam::ThermoParcel<ParcelType>::calcHeatTransfer
|
|||
const scalar As = this->areaS(d);
|
||||
|
||||
scalar ap = Tc_ + Sh/(As*htc);
|
||||
scalar bp = 6.0*(Sh/As + htc*(Tc_ - T_));
|
||||
const scalar bp = 6.0*htc/max(rho*d*Cp_, ROOTVSMALL);
|
||||
if (td.cloud().radiation())
|
||||
{
|
||||
tetIndices tetIs = this->currentTetIndices();
|
||||
|
|
@ -294,9 +294,7 @@ Foam::scalar Foam::ThermoParcel<ParcelType>::calcHeatTransfer
|
|||
scalar s = epsilon*(Gc/4.0 - sigma*pow4(T_));
|
||||
|
||||
ap += s/htc;
|
||||
bp += 6.0*s;
|
||||
}
|
||||
bp /= rho*d*Cp_*(ap - T_) + ROOTVSMALL;
|
||||
|
||||
// Integrate to find the new parcel temperature
|
||||
IntegrationScheme<scalar>::integrationResult Tres =
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue