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

Turbulence modelling

Register Blogs Community New Posts Updated Threads Search

Like Tree1Likes
  • 1 Post By valgrinda

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   June 23, 2017, 11:08
Default Turbulence modelling
  #1
Senior Member
 
Selig
Join Date: Jul 2016
Posts: 213
Rep Power: 10
selig5576 is on a distinguished road
I am currently working on a incompressible solver and I am at the stage where I want to implement a turbulence model. I am currently using a Chorin Projection method with Rhie-Chow interpolation. My solver (so far) is in 2D, so I was curious if there are any benchmarks I can test my 2D solver on, given I have a turbulence model.

In the case where I would implement the k-epsilon model and test it on a lid driven cavity how would I define the fluctuating component of the velocity, u'.

Since k is defined as
k := \frac{1}{2} \left(\left(\bar{u'}\right)^{2} + \left(\bar{v'}\right)^{2} \right)
then would I need to initialize that and then solve the transport equations?

Code:
for (int i=1; i <= nx; i++)
{
  for (int j=1; j <= ny; j++)
 {
   k[i][j] = 0.5*(u_avg[i][j] + v_avg[i][j]);
 }
}
then I integrate k and e..is this the correct approach?
selig5576 is offline   Reply With Quote

Old   July 2, 2017, 13:50
Default Turbulence modelling
  #2
Super Moderator
 
Hans Bihs
Join Date: Jun 2009
Location: Trondheim, Norway
Posts: 377
Rep Power: 17
valgrinda is on a distinguished road
Since you use a RANS turbulence model, u' and v' are never directly available. They are included in the eddy-viscosity term in the Navier-Stokes equations. Typically, one would initialize k and epsilone based on empirical equations based on the flow intensities and the characteristic length scale L, e.g. the diameter of a pipe. See Versteeg's CFD book version 1, p. 72.


Sent from my iPhone using CFD Online Forum mobile app
leflix likes this.
__________________
Hans Bihs
Team REEF3D
www.reef3d.com
valgrinda is offline   Reply With Quote

Reply


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
steady state turbulence modelling?? neprendo FLUENT 1 April 3, 2014 04:27
Aerofoil Modelling - Laminar approximation, transition and turbulence modelling. Asatorae STAR-CCM+ 1 January 20, 2014 05:25
kOmegaSST without turbulence modelling of the flow around geometry CFDnewbie147 OpenFOAM Running, Solving & CFD 7 December 5, 2013 07:29
modelling transition with v2f turbulence model pablo FLUENT 0 August 7, 2006 15:44
Question about Low Re turbulence modelling. ghlee Main CFD Forum 1 May 28, 1999 19:29


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