Skip to content
Snippets Groups Projects
Commit caaa5c2e authored by william's avatar william Committed by Andrew Heather
Browse files

BUG: twoPhaseEulerFoam: fixed definition of Nu in RanzMarshall heat transfer model

parent e0cf94bb
Branches
Tags
No related merge requests found
...@@ -62,7 +62,7 @@ Foam::heatTransferModels::RanzMarshall::~RanzMarshall() ...@@ -62,7 +62,7 @@ Foam::heatTransferModels::RanzMarshall::~RanzMarshall()
Foam::tmp<Foam::volScalarField> Foam::tmp<Foam::volScalarField>
Foam::heatTransferModels::RanzMarshall::K() const Foam::heatTransferModels::RanzMarshall::K() const
{ {
volScalarField Nu(scalar(2) + 0.6*pair_.Re()*cbrt(pair_.Pr())); volScalarField Nu(scalar(2) + 0.6*sqrt(pair_.Re())*cbrt(pair_.Pr()));
return return
6.0 6.0
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment