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

the Reynolds average of RANS and the filter function of LES

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   January 15, 2014, 03:33
Default the Reynolds average of RANS and the filter function of LES
  #1
Member
 
garry
Join Date: Oct 2013
Posts: 41
Rep Power: 12
yzeyue is on a distinguished road
I am learning the CFD, and compiling the program by fortran.

After I learned a RANS program, there is a problem coming to me. The program seemly does not contain the function of Reynolds average, so I do not know how the Reynolds average influents the N-S of RANS.

Samely, I also do not know how the filter function influents the N-S of LES when I can not find where is the filter function in the whole program.

Any help will be greatly appreciated. Thanks
yzeyue is offline   Reply With Quote

Old   January 15, 2014, 04:08
Default
  #2
Senior Member
 
Filippo Maria Denaro
Join Date: Jul 2010
Posts: 6,764
Rep Power: 71
FMDenaro has a spectacular aura aboutFMDenaro has a spectacular aura aboutFMDenaro has a spectacular aura about
Quote:
Originally Posted by yzeyue View Post
I am learning the CFD, and compiling the program by fortran.

After I learned a RANS program, there is a problem coming to me. The program seemly does not contain the function of Reynolds average, so I do not know how the Reynolds average influents the N-S of RANS.

Samely, I also do not know how the filter function influents the N-S of LES when I can not find where is the filter function in the whole program.

Any help will be greatly appreciated. Thanks
Hello,
your observation is correct, the answer is that you are right, no average in RANS and no filter in LES codes generally are present in subroutines.

The key is that the original NS equations are statistically averaged for RANS while being filtered for LES and such operation results in a new system formulated directly in terms of the RANS or LES variable.
Then, in RANS the unsteady terms vanishes while in LES is retained.
At the end, the difference appears in the unresolved term. For RANS is responsible for the residual as respect with the statistical averaged variable, for LES as respect with the filtered variable.
In practice, unlike the time derivative, RANS and LES equations could be confused, both RANS averaged and LES filter are implicitly assumed in a code, the difference being in the way the unresolved terms are modelled.
Finally, be careful that the computational grid size and the type of discretization of the equations act as implicit filtering for LES code, while in RANS the statistical averaging is much more relevant by means of the model and overwheelms the effect of the computational grid size
It is worthwhile remarking that some "explicit" filtered formulation for LES exist, but are not very common
FMDenaro is offline   Reply With Quote

Old   January 15, 2014, 04:34
Default
  #3
Member
 
garry
Join Date: Oct 2013
Posts: 41
Rep Power: 12
yzeyue is on a distinguished road
Quote:
Originally Posted by FMDenaro View Post
Hello,
your observation is correct, the answer is that you are right, no average in RANS and no filter in LES codes generally are present in subroutines.

The key is that the original NS equations are statistically averaged for RANS while being filtered for LES and such operation results in a new system formulated directly in terms of the RANS or LES variable.
Then, in RANS the unsteady terms vanishes while in LES is retained.
At the end, the difference appears in the unresolved term. For RANS is responsible for the residual as respect with the statistical averaged variable, for LES as respect with the filtered variable.
In practice, unlike the time derivative, RANS and LES equations could be confused, both RANS averaged and LES filter are implicitly assumed in a code, the difference being in the way the unresolved terms are modelled.
Finally, be careful that the computational grid size and the type of discretization of the equations act as implicit filtering for LES code, while in RANS the statistical averaging is much more relevant by means of the model and overwheelms the effect of the computational grid size
It is worthwhile remarking that some "explicit" filtered formulation for LES exist, but are not very common
Thx very much!

This problem confuses me a long time.

But, I still do not know the sentence you had said----"the computational grid size and the type of discretization of the equations act as implicit filtering for LES code".

Does that mean that ---when we use LES, the small-scale fluctuation smaller the grid size will be filtered implicitly? and why does the discretization can also help in filtering?
yzeyue is offline   Reply With Quote

Old   January 15, 2014, 04:42
Default
  #4
Senior Member
 
Filippo Maria Denaro
Join Date: Jul 2010
Posts: 6,764
Rep Power: 71
FMDenaro has a spectacular aura aboutFMDenaro has a spectacular aura aboutFMDenaro has a spectacular aura about
for any type of method, FD, FV, SM, etc, the computational grid size introduce the cut-off filter at the Nyquist frequency Pi/h. All the scales smaller than h are filtered by the grid.
But there is much more than the grid filter, the choice of the method affects also the resolved scales greater than h. This happens for example while using second order central discretization that implicitly introduces a smooth transfer function (e.g. sin (kh)/kh) therefore, the wavenumbers components are smoothed approaching the Nyquist frequency.
Conversely, specral discretization are associated only to the sharp cut-off filter, no smoothing appears.

If you are interested in more details, you can read http://adsabs.harvard.edu/abs/2011JCoPh.230.3849D
FMDenaro is offline   Reply With Quote

Old   January 15, 2014, 04:48
Default
  #5
Member
 
garry
Join Date: Oct 2013
Posts: 41
Rep Power: 12
yzeyue is on a distinguished road
Quote:
Originally Posted by FMDenaro View Post
for any type of method, FD, FV, SM, etc, the computational grid size introduce the cut-off filter at the Nyquist frequency Pi/h. All the scales smaller than h are filtered by the grid.
But there is much more than the grid filter, the choice of the method affects also the resolved scales greater than h. This happens for example while using second order central discretization that implicitly introduces a smooth transfer function (e.g. sin (kh)/kh) therefore, the wavenumbers components are smoothed approaching the Nyquist frequency.
Conversely, specral discretization are associated only to the sharp cut-off filter, no smoothing appears.

If you are interested in more details, you can read http://adsabs.harvard.edu/abs/2011JCoPh.230.3849D
Thx!U helped me a lot!
yzeyue is offline   Reply With Quote

Old   January 15, 2014, 04:53
Default
  #6
Member
 
garry
Join Date: Oct 2013
Posts: 41
Rep Power: 12
yzeyue is on a distinguished road
Quote:
Originally Posted by FMDenaro View Post
for any type of method, FD, FV, SM, etc, the computational grid size introduce the cut-off filter at the Nyquist frequency Pi/h. All the scales smaller than h are filtered by the grid.
But there is much more than the grid filter, the choice of the method affects also the resolved scales greater than h. This happens for example while using second order central discretization that implicitly introduces a smooth transfer function (e.g. sin (kh)/kh) therefore, the wavenumbers components are smoothed approaching the Nyquist frequency.
Conversely, specral discretization are associated only to the sharp cut-off filter, no smoothing appears.

If you are interested in more details, you can read http://adsabs.harvard.edu/abs/2011JCoPh.230.3849D
I also want to ask u a queation.

whether u programming by fortran, or use some open source software such as OpenFOAM?

I am a new LESer.
yzeyue is offline   Reply With Quote

Reply

Tags
filter, fortran, les, program, rans


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



All times are GMT -4. The time now is 23:11.