CFD Online Logo CFD Online URL
www.cfd-online.com
[Sponsors]
Home > Forums > General Forums > Main CFD Forum

Nu In Dynamic K-Equation model

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   May 4, 2019, 16:04
Default Nu In Dynamic K-Equation model
  #1
New Member
 
priyesh kakka
Join Date: Jan 2018
Posts: 13
Rep Power: 8
kakkapriyesh is on a distinguished road
Hi,

I was going through the formulation for K-Eqn and noticed that there is an term DkEff which is an addition of Nut and nu but nu multiplied by gradient of Ksgs (k_) term is not present in the paper of Kim and Menon,

Code:
tmp<fvScalarMatrix> kEqn
     (
         fvm::ddt(alpha, rho, k_)
       + fvm::div(alphaRhoPhi, k_)
       - fvm::laplacian(alpha*rho*DkEff(), k_)
     ==
         alpha*rho*G
       - fvm::SuSp((2.0/3.0)*alpha*rho*divU, k_)
       - fvm::Sp(Ce(D, KK)*alpha*rho*sqrt(k_)/this->delta(), k_)
       + kSource()
       + fvOptions(alpha, rho, k_)
     );
From Dynamick.H

Code:
        //- Return the effective diffusivity for k
         tmp<volScalarField> DkEff() const
         {
             return tmp<volScalarField>
             (
                 new volScalarField("DkEff", this->nut_ + this->nu())
             );
         }
similarly for calculating Ce (coefficient of dissipation) NuEff has been used instead of nu

Am I missing something obvious?

I have attached the snip of the formula present in Kim and Menon
Attached Images
File Type: png Screenshot from 2019-05-05 01-33-37.png (23.1 KB, 28 views)
kakkapriyesh is offline   Reply With Quote

Old   October 17, 2019, 10:37
Default
  #2
Senior Member
 
Syavash Asgari
Join Date: Apr 2010
Posts: 473
Rep Power: 18
syavash is on a distinguished road
Quote:
Originally Posted by kakkapriyesh View Post
Hi,

I was going through the formulation for K-Eqn and noticed that there is an term DkEff which is an addition of Nut and nu but nu multiplied by gradient of Ksgs (k_) term is not present in the paper of Kim and Menon,

Code:
tmp<fvScalarMatrix> kEqn
     (
         fvm::ddt(alpha, rho, k_)
       + fvm::div(alphaRhoPhi, k_)
       - fvm::laplacian(alpha*rho*DkEff(), k_)
     ==
         alpha*rho*G
       - fvm::SuSp((2.0/3.0)*alpha*rho*divU, k_)
       - fvm::Sp(Ce(D, KK)*alpha*rho*sqrt(k_)/this->delta(), k_)
       + kSource()
       + fvOptions(alpha, rho, k_)
     );
From Dynamick.H

Code:
        //- Return the effective diffusivity for k
         tmp<volScalarField> DkEff() const
         {
             return tmp<volScalarField>
             (
                 new volScalarField("DkEff", this->nut_ + this->nu())
             );
         }
similarly for calculating Ce (coefficient of dissipation) NuEff has been used instead of nu

Am I missing something obvious?

I have attached the snip of the formula present in Kim and Menon
Hi,

I came across this issue as well. Did you find an explanation for that?

Thanks,
Syavash
syavash is offline   Reply With Quote

Old   October 17, 2019, 22:57
Default
  #3
Senior Member
 
Lucky
Join Date: Apr 2011
Location: Orlando, FL USA
Posts: 5,679
Rep Power: 66
LuckyTran has a spectacular aura aboutLuckyTran has a spectacular aura aboutLuckyTran has a spectacular aura about
It's not a missing/extra term, but the terms have been re-arranged. Notice the term on the left hand side in foam is:
Code:
- fvm::laplacian(alpha*rho*DkEff(), k_)
which needs to be balanced by the source/sink in order to make it equivalent
Code:
- fvm::Sp(Ce(D, KK)*alpha*rho*sqrt(k_)/this->delta(), k_)
Otherwise, there should be a divergence of a gradient in FOAM (which you don't see anywhere).


The reason for splitting the term into two is numerical.
LuckyTran is offline   Reply With Quote

Reply

Tags
dynamic models, large eddy simulation., les, openfoam


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Simulation of a single bubble with a VOF-method Suzzn CFX 21 January 29, 2018 00:58
Dynamic procedure and Similiraty model juliom Main CFD Forum 3 June 9, 2016 09:52
Model crashes while solving advection diffusion equation cooljd Main CFD Forum 3 August 23, 2012 10:40
error message cuteapathy CFX 14 March 20, 2012 06:45
Algebraic Dynamic LES Model noName FLUENT 0 March 24, 2005 17:34


All times are GMT -4. The time now is 08:40.