CFD Online Logo CFD Online URL
www.cfd-online.com
[Sponsors]
Home > Forums > Software User Forums > OpenFOAM > OpenFOAM Programming & Development

TKE production and Dissipation for DNS

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   March 30, 2020, 21:50
Default TKE production and Dissipation for DNS
  #1
Member
 
Akshay Patil
Join Date: Nov 2015
Location: Pune, India
Posts: 34
Rep Power: 10
Akshay_11235 is on a distinguished road
Hi guys,

I am working on a DNS calculation and would like to confirm if the TKE production and Dissipation calculations on the fly make sense. I am constantly getting about one order of magnitude difference between production term and dissipation term.

in my code Production is defined as (Production = -ui'uj'dui/dxj)


Code:
volSymmTensorField gradU = symm(fvc::grad(U));
volScalarField prod = -((U - u_bar)*(U - u_bar)) && gradU;
//Take the volume average in the domain
dimensionedScalar production = average(prod);
and Dissipation is defined as (Dissipation = nu du'i/dxj du'i/dxj)

Code:
volTensorField gradUprime = fvc::grad(U-u_bar);
volScalarField eps = nu*(gradUprime && gradUprime);
//Take the volume average in the domain
dimensionedScalar dissipation = average(eps);


When I do this the TKE production < dissipation by about an order of magnitude. I have checked the dependence of the mesh on this and it is consistently the same so I am wondering if I did something wrong here.

I am using C-N for the viscous temporal discretisation while all other settings are second order. I have also switched off the extra phi term in the Piso algorithm which stabilises the solver. Would be grateful to hear what you think. Thanks!

Regards,

Akshay Patil
Akshay_11235 is offline   Reply With Quote

Old   October 8, 2023, 09:00
Default
  #2
New Member
 
Xingguang Zhou
Join Date: May 2022
Location: CHINA
Posts: 13
Rep Power: 3
watermelon is on a distinguished road
Hi Patil, maybe you can make the validation with Kim, Moin, and Moser (1987) DNS data for TKE production rate and dissipation rate. Nowadays, I also dedicate myself to quasi-DNS with OpenFOAM. The equations of TKE production rate and dissipate rate are both same to yours. However, I try to post-process these two physical quantities in the way to make the modification of solver and utilities, ie pisoFoam and postChannel (OpenFOAM v2006).

The case is running on HPC, and I will make the comparation with MKM (1987) to verify whether these methd is correct or not.

Best regards.

Xingguang Zhou.
watermelon is offline   Reply With Quote

Reply

Tags
dissipation, dns, production, tke


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
Howto get the production and dissipation of TKE?? lakeat OpenFOAM Running, Solving & CFD 9 March 22, 2022 11:14
TKE budget estimation by k-epsilon model pd.iiest FLUENT 1 March 12, 2016 11:25
Production TKE in LES CeesH FLUENT 2 March 8, 2016 02:38
Budgets of Reynolds shear stress (TKE budgets) ju.prasun13@gmail.com FLUENT 0 March 16, 2015 07:10
Turbulent Dissipation Rates - epsilon Otute Main CFD Forum 5 May 20, 1999 10:51


All times are GMT -4. The time now is 13:57.