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

Differences between a laminar code and a les one

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   January 20, 2005, 04:57
Default Differences between a laminar code and a les one
  #1
ben
Guest
 
Posts: n/a
hi,all I am fresh in LES programming,I have a unsteady laminar flow pragram using cartesian grid ,colocated variable arrangement,and pressure is solved using SIMPLE method,implicit Euler method for time marching . Now I want to develop a LES code based on this laminar code. (first smagrinsky then dynamic LES code)I have the following questions:

1.Is the following statement right? The main difference between laminar and lES is the latter adds a eddy viscosity,so I need only add a subroutine for calculating the eddy viscosity,and the unsteady terms ,convecting terms and the source terms can remain unchanged .The difference between smagrinsky and dynamic model lies in only the eddy viscosity solver.

2.Can i still use SIMPLE to calculate Pressure,if fractional step method is better?

3.What is the most simple case to test the LES code? Maybe cases without walls is better? Can someone help to tell me the definite domain size and resolution in domain and time? How many time steps is enough?

4. Using fine enough grid and time step ,Can the laminar code be used to do DNS calculation?

5.If cases with wall boudary is include what changes should be made to the laminar code to account for the LES wall boundary?

Any comment is greatly appreciated. Thanks

  Reply With Quote

Old   January 20, 2005, 05:19
Default Re: Differences between a laminar code and a les o
  #2
ben
Guest
 
Posts: n/a
Sorry ,I forgot to say that the solver is for incompressibel flows
  Reply With Quote

Old   January 20, 2005, 13:15
Default Re: Differences between a laminar code and a les o
  #3
agg
Guest
 
Posts: n/a
(1) is correct. You only need to calculate an additional subgrid stress (making use of spatial filtering). And yes, the difference between smagrinsky and dynamic model lies in only the eddy viscosity solver.

(2)Yes, you can still use the Simple method. I do not know if fractional step method is better/worse. You might think about which one is faster.

(3) A simple test case would be a 3D turbulence decay simulation with periodic boundary conditions.

(4) Yes the laminar code can be used to do DNS simulations with high enough grid resolution and small time steps.

(5) The wall boundary effect in LES is an ongoing research topic, but most LES calculations include a damping function such that the eddy viscosity goes to zero at the walls.
  Reply With Quote

Old   January 20, 2005, 20:59
Default Re: Differences between a laminar code and a les o
  #4
ben
Guest
 
Posts: n/a
So many thanks, dear agg, you really helped me a lot. I am still a little confused about the following:

1)the smagrinsky model doesn't need spatial filtering to get the eddy viscosity(Mij=-2*C*Delta*Delta*Abs(S)*Sij) and Sij can be calculated without filtering, since the velocity is filtered by grid filter in the NSE. So only the dynamic model needs explicit filtering. Is that right?

2)I guess the fractional step method is faster,is it right?

3)The 3d decay case ,you mean 3 periodic bc is the most simple one?

4)I read that the dynamic model's coefficient vanish in laminar flow and at a solid boundary,so does it still need a damping function near the wall?

best regards ben
  Reply With Quote

Old   January 21, 2005, 10:22
Default Re: Differences between a laminar code and a les o
  #5
noName
Guest
 
Posts: n/a
1)the smagrinsky model doesn't need spatial filtering to get the eddy viscosity(Mij=-2*C*Delta*Delta*Abs(S)*Sij) and Sij can be calculated without filtering, since the velocity is filtered by grid filter in the NSE. So only the dynamic model needs explicit filtering. Is that right?

Yes, no explicit filtering for Smagorinsky. One level of (sub-test) filtering for dynamic model. Easiest filter to implement is the top-hat filter: simply average over cells.

2)I guess the fractional step method is faster,is it right?

I don't know!

3)The 3d decay case ,you mean 3 periodic bc is the most simple one?

Yes, I think so.

4)I read that the dynamic model's coefficient vanish in laminar flow and at a solid boundary,so does it still need a damping function near the wall?

No, dynamic models do not use (van Driest type) damping functions near the walls.
  Reply With Quote

Old   January 21, 2005, 11:31
Default Re: Differences between a laminar code and a les o
  #6
agg
Guest
 
Posts: n/a
Yes, you are correct for parts (1), (3) and (4). I think the fractional step method is faster, but not sure. In any case the bottle neck is the poisson solver and hence try to make it as fast as possible.
  Reply With Quote

Old   January 21, 2005, 22:24
Default Re: Differences between a laminar code and a les o
  #7
ben
Guest
 
Posts: n/a
dear agg, I want to know 1.how to give the initial field 2.how to implentment the periodic bc at each time step of a 3d decay turbulent flow with 3 periodic directions. I guess it maybe not be that simpley implentmented as in laminar flow (Ui(1,j,k)=Ui(N,j,k),Ui(i,1,k)=Ui(i,N,k),Ui(i,j,1) =Ui(i,j,N))

3.I know that for channel flow the inlet is given a speed profile plus random fluctuations on each CV center in the inlet plane at each time step. Does the 3d decay turbulent flow need such random fluctuations to be given? If need ,how and when to add it ?

best regards

ben
  Reply With Quote

Old   January 23, 2005, 00:16
Default Re: Differences between a laminar code and a les o
  #8
agg
Guest
 
Posts: n/a
A periodic BC is a numerical BC and does not change with flow (laminar or turbulent).

Here are some references for initial conditions for 3D decaying turbulence

1) Numerical experiments in homogeneous turbulence - Robert S. Rogallo, NASA Technical Memorandum 81315 (1981).

2) Kwak, D., Reynolds, W.C. and Ferziger, J.H. "Three-dimensional time dependent computation of turbulent flow", Report No. TF-5, Stanford University (1975).

3) Erlebacher, G., Hussaini, Kreiss, H.O. and Sarkar, S., "Tha analysis and simulation of compressible turbulence", Theoretical and Computational fluid dynamics, Vol. 2, pp. 73-95 (1990).
  Reply With Quote

Old   January 23, 2005, 23:31
Default Re: Differences between a laminar code and a les o
  #9
ben
Guest
 
Posts: n/a
thanks dear agg ,it is very helpful

best regards

ben
  Reply With Quote

Old   February 16, 2005, 23:40
Default Re: Differences between a laminar code and a les o
  #10
krishna
Guest
 
Posts: n/a
hi,

I am also trying to solve the same problem, but my doubt is that, to change a code from laminar to LES, is it not enough to change the Viscosity alone, and add it to the lamiar one, like

vis(effective or LES) = vis(laminar)+ vis(turbulent)

and may be under-relax the viscosity.

vis(turbulent)= rho*Cs*Delta*Delta*Abs(S).

Correct me,

krishna.
  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
LES code for the beginning Frank_Young Main CFD Forum 0 November 2, 2007 03:39
What is the Better Way to Do CFD? John C. Chien Main CFD Forum 54 April 23, 2001 08:10
3D LES Source Code sencal Main CFD Forum 2 January 26, 2001 11:40
Open source CFD code development, possible? Dr. Yazid Bindar Main CFD Forum 27 July 18, 2000 00:18
complex geometery as a test case for laminar flow code Morteza Marivani Main CFD Forum 1 December 7, 1999 04:33


All times are GMT -4. The time now is 07:24.