mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
ENH: Correcting Nu correlation for thermoCoupleProbes
This commit is contained in:
@ -125,9 +125,9 @@ void Foam::functionObjects::thermoCoupleProbes::derivatives
|
|||||||
muc = this->sample(thermo_.mu()());
|
muc = this->sample(thermo_.mu()());
|
||||||
Cpc = this->sample(thermo_.Cp()());
|
Cpc = this->sample(thermo_.Cp()());
|
||||||
|
|
||||||
scalarField Re(rhoc*Uc*d_/(muc + ROOTVSMALL));
|
scalarField Re(rhoc*Uc*d_/muc);
|
||||||
scalarField Pr(Cpc*muc/(kappac + ROOTVSMALL));
|
scalarField Pr(Cpc*muc/kappac);
|
||||||
//scalarField Nu(2.0 + 0.6*sqrt(Re)*cbrt(Pr));
|
Pr = max(ROOTVSMALL, Pr);
|
||||||
scalarField Nu(2.0 + (0.4*sqrt(Re) + 0.06*pow(Re, 2/3))*pow(Pr, 0.4));
|
scalarField Nu(2.0 + (0.4*sqrt(Re) + 0.06*pow(Re, 2/3))*pow(Pr, 0.4));
|
||||||
scalarField htc(Nu*kappac/d_);
|
scalarField htc(Nu*kappac/d_);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user