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

Time step in LES

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   August 13, 2014, 10:34
Arrow Time step in LES
  #1
Member
 
M. Nabi
Join Date: Jun 2009
Posts: 44
Rep Power: 16
mnabi is on a distinguished road
Hi all,

I am writing a code for LES. This code is based on a structured curvilinear grids with strong stretching beside the walls. In order to reduce the restrictions for time step, I used Adams-Bashforth for the convection term and Crank-Nicholson for the diffusion term.

\frac{\partial}{\partial x_j} \left[  \left( \nu + \nu_t \right)   \left( \frac{\partial u_i}{\partial x_j} + \frac{\partial u_j}{\partial x_i} \right) \right] 
=
\frac{\partial}{\partial x_j} \left[  \left( \nu + \nu_t \right)   \left( \frac{\partial u_i}{\partial x_j} \right) \right]
+
\frac{\partial}{\partial x_j} \left[  \left( \nu + \nu_t \right)   \left( \frac{\partial u_j}{\partial x_i} \right) \right]


The first term in the right-hand side is ok, by using Crank-Nicholson method. But the second term yielded a strong restriction in the CFL number. I tried both Adams-Bashforth and Crank-Nicheolson for the second term, but both of them needed very small dt. In the case I remove \nu_t from the second term, it works fine, but including \nu_t makes strong restrictions in time step.

And my question: How can I remove this restriction from the second term? Is there any way?

Thanks
mnabi is offline   Reply With Quote

Old   August 13, 2014, 11:21
Default
  #2
Senior Member
 
Filippo Maria Denaro
Join Date: Jul 2010
Posts: 6,768
Rep Power: 71
FMDenaro has a spectacular aura aboutFMDenaro has a spectacular aura aboutFMDenaro has a spectacular aura about
Quote:
Originally Posted by mnabi View Post
Hi all,

I am writing a code for LES. This code is based on a structured curvilinear grids with strong stretching beside the walls. In order to reduce the restrictions for time step, I used Adams-Bashforth for the convection term and Crank-Nicholson for the diffusion term.

\frac{\partial}{\partial x_j} \left[  \left( \nu + \nu_t \right)   \left( \frac{\partial u_i}{\partial x_j} + \frac{\partial u_j}{\partial x_i} \right) \right] 
=
\frac{\partial}{\partial x_j} \left[  \left( \nu + \nu_t \right)   \left( \frac{\partial u_i}{\partial x_j} \right) \right]
+
\frac{\partial}{\partial x_j} \left[  \left( \nu + \nu_t \right)   \left( \frac{\partial u_j}{\partial x_i} \right) \right]


The first term in the right-hand side is ok, by using Crank-Nicholson method. But the second term yielded a strong restriction in the CFL number. I tried both Adams-Bashforth and Crank-Nicheolson for the second term, but both of them needed very small dt. In the case I remove \nu_t from the second term, it works fine, but including \nu_t makes strong restrictions in time step.

And my question: How can I remove this restriction from the second term? Is there any way?

Thanks

I don't understand your procedure...the eddy viscosity at time n+1 is unknown and the system would be not linear...
FMDenaro is offline   Reply With Quote

Old   August 13, 2014, 11:26
Default
  #3
Member
 
M. Nabi
Join Date: Jun 2009
Posts: 44
Rep Power: 16
mnabi is on a distinguished road
Quote:
Originally Posted by FMDenaro View Post
I don't understand your procedure...the eddy viscosity at time n+1 is unknown and the system would be not linear...
Right, it is unknown, but I iterate all momentum equations and the eddy viscosity (using Smagorinsky) until velocity field converges. Then use pressure correction equation, and correct the velocity field.
mnabi is offline   Reply With Quote

Old   August 13, 2014, 11:41
Default
  #4
Senior Member
 
Filippo Maria Denaro
Join Date: Jul 2010
Posts: 6,768
Rep Power: 71
FMDenaro has a spectacular aura aboutFMDenaro has a spectacular aura aboutFMDenaro has a spectacular aura about
the terms in the RHS require (dt/2)* for the CN integration.
However, the restriction for the time step is very important, you need a small value
FMDenaro is offline   Reply With Quote

Old   August 13, 2014, 11:52
Default
  #5
Member
 
M. Nabi
Join Date: Jun 2009
Posts: 44
Rep Power: 16
mnabi is on a distinguished road
Quote:
Originally Posted by FMDenaro View Post
the terms in the RHS require (dt/2)* for the CN integration.
However, the restriction for the time step is very important, you need a small value
Right, it is dt/2 after discretization. A half part is explicit, and the other half part is implicit. But CN method for second term of the diffusion doesn't reduce the restriction of the CFL number. The time step restriction is very strong because \nu_t is few orders larger than \nu, which makes the total viscosity large. The first term has no any problem as it is unconditionally stable by using CN.

In my case, the second term reduces the dt from 2e-3 to 1e-6

I wonder either there is a way to reduce the restriction for the second term. . I saw several papers use AB2-CN method with relatively large dt, but they didn't mention about the details.

Thank you
mnabi is offline   Reply With Quote

Old   August 13, 2014, 12:47
Default
  #6
Senior Member
 
Filippo Maria Denaro
Join Date: Jul 2010
Posts: 6,768
Rep Power: 71
FMDenaro has a spectacular aura aboutFMDenaro has a spectacular aura aboutFMDenaro has a spectacular aura about
the LINEAR stability analysi of the CN discretization leads to two eigenvalues from which one has stability unconditionally for one but not for the other. That means the coupling with the all terms of the equations leads to a stability region (cfl,Reh) with a strong restriction in the dt at low Reh.
Considering that you have a non linear case, the constraint on the dt is clearly strong.

Actually, I am used to work by letting the CN scheme for the molecular viscous term and using explicit second order AB for the eddy viscosity term.
FMDenaro is offline   Reply With Quote

Old   August 13, 2014, 12:54
Default
  #7
Member
 
M. Nabi
Join Date: Jun 2009
Posts: 44
Rep Power: 16
mnabi is on a distinguished road
Quote:
Originally Posted by FMDenaro View Post
the LINEAR stability analysi of the CN discretization leads to two eigenvalues from which one has stability unconditionally for one but not for the other. That means the coupling with the all terms of the equations leads to a stability region (cfl,Reh) with a strong restriction in the dt at low Reh.
Considering that you have a non linear case, the constraint on the dt is clearly strong.

Actually, I am used to work by letting the CN scheme for the molecular viscous term and using explicit second order AB for the eddy viscosity term.
Thank you for reply.
But using AB for eddy viscosity term, does it reduce the CFL restriction? Do you use also AB for the viscosity of the first term, or only for the second term?
mnabi is offline   Reply With Quote

Old   August 13, 2014, 13:38
Default
  #8
Senior Member
 
Filippo Maria Denaro
Join Date: Jul 2010
Posts: 6,768
Rep Power: 71
FMDenaro has a spectacular aura aboutFMDenaro has a spectacular aura aboutFMDenaro has a spectacular aura about
First, the eddy viscosity can become locally high and the time scale needs to be small. Then, using an explicit AB scheme for the SGS term you avoid to work with a non-linear system having coefficents in the SGS terms.
FMDenaro is offline   Reply With Quote

Old   August 13, 2014, 21:57
Default
  #9
Member
 
M. Nabi
Join Date: Jun 2009
Posts: 44
Rep Power: 16
mnabi is on a distinguished road
Quote:
Originally Posted by FMDenaro View Post
First, the eddy viscosity can become locally high and the time scale needs to be small. Then, using an explicit AB scheme for the SGS term you avoid to work with a non-linear system having coefficents in the SGS terms.
But how to avoid having coefficients in the SGS term? Even if it is explicit, still the eddy viscosity can be locally high from time step n, and it is included in SGS!!! Do you mean we have to linearize it by, for instance, Newton linearization?
mnabi is offline   Reply With Quote

Old   August 14, 2014, 03:19
Default
  #10
Senior Member
 
Filippo Maria Denaro
Join Date: Jul 2010
Posts: 6,768
Rep Power: 71
FMDenaro has a spectacular aura aboutFMDenaro has a spectacular aura aboutFMDenaro has a spectacular aura about
just using the explicit AB discretization requires eddy viscosity only at tn and tn-1, no coefficents are therefore present in the algebric system
FMDenaro is offline   Reply With Quote

Old   August 14, 2014, 03:58
Default
  #11
Member
 
M. Nabi
Join Date: Jun 2009
Posts: 44
Rep Power: 16
mnabi is on a distinguished road
Quote:
Originally Posted by FMDenaro View Post
just using the explicit AB discretization requires eddy viscosity only at tn and tn-1, no coefficents are therefore present in the algebric system
It is right, they will be known. But they will still restrict the CFL number as the value of eddy viscosity is large. Using explicit method such as AB2, lets the CFL number dependent on the size of cell quadratic, isn't it ?
mnabi is offline   Reply With Quote

Old   August 14, 2014, 04:14
Default
  #12
Senior Member
 
Filippo Maria Denaro
Join Date: Jul 2010
Posts: 6,768
Rep Power: 71
FMDenaro has a spectacular aura aboutFMDenaro has a spectacular aura aboutFMDenaro has a spectacular aura about
Quote:
Originally Posted by mnabi View Post
It is right, they will be known. But they will still restrict the CFL number as the value of eddy viscosity is large. Using explicit method such as AB2, lets the CFL number dependent on the size of cell quadratic, isn't it ?

the stability constraint is due to the combination of the type of time integration along with convective, diffusive and SGS terms.
Generallly, the CFL must be quite smaller than 1
FMDenaro is offline   Reply With Quote

Old   August 14, 2014, 20:38
Default
  #13
Member
 
M. Nabi
Join Date: Jun 2009
Posts: 44
Rep Power: 16
mnabi is on a distinguished road
Quote:
Originally Posted by FMDenaro View Post
the stability constraint is due to the combination of the type of time integration along with convective, diffusive and SGS terms.
Generallly, the CFL must be quite smaller than 1
I changed the second term to explicit, but still have problems with dt.
Do you know any reference which explains the discretizations in details for LES?
mnabi is offline   Reply With Quote

Old   August 15, 2014, 06:03
Default
  #14
Senior Member
 
Filippo Maria Denaro
Join Date: Jul 2010
Posts: 6,768
Rep Power: 71
FMDenaro has a spectacular aura aboutFMDenaro has a spectacular aura aboutFMDenaro has a spectacular aura about
Quote:
Originally Posted by mnabi View Post
I changed the second term to explicit, but still have problems with dt.
Do you know any reference which explains the discretizations in details for LES?
if you want, some of my papers about discretization for LES are published on IJNMF. Details are provided for projection method with AB/CN discretization
FMDenaro is offline   Reply With Quote

Old   August 15, 2014, 21:57
Default
  #15
Member
 
M. Nabi
Join Date: Jun 2009
Posts: 44
Rep Power: 16
mnabi is on a distinguished road
Quote:
Originally Posted by FMDenaro View Post
if you want, some of my papers about discretization for LES are published on IJNMF. Details are provided for projection method with AB/CN discretization
Thank you very much. I will search for your papers.
mnabi is offline   Reply With Quote

Old   August 16, 2014, 00:42
Default
  #16
Member
 
M. Nabi
Join Date: Jun 2009
Posts: 44
Rep Power: 16
mnabi is on a distinguished road
Quote:
Originally Posted by FMDenaro View Post
if you want, some of my papers about discretization for LES are published on IJNMF. Details are provided for projection method with AB/CN discretization
I found several papers you published in IJNMF. Which one do you suggest?
mnabi 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
How to determine time step size and Max. iterations per time step. pratik c FLUENT 46 January 21, 2024 12:21
High Courant Number @ icoFoam Artex85 OpenFOAM Running, Solving & CFD 11 February 16, 2017 13:40
Rapidly decreasing deltaT for interDyMFoam chrisb2244 OpenFOAM Running, Solving & CFD 3 July 1, 2014 16:40
Micro Scale Pore, icoFoam gooya_kabir OpenFOAM Running, Solving & CFD 2 November 2, 2013 13:58
number of iterations per time step chouki FLUENT 1 August 13, 2013 00:11


All times are GMT -4. The time now is 03:16.