|
[Sponsors] |
August 22, 2005, 07:54 |
time step for incompressible flows
|
#1 |
Guest
Posts: n/a
|
hi,
I am working on incompressible flows and would like to know how time step based on convective and diffusive considerations are calculated. I consulted few papers, but there are not much details about this. I am not interested in the mere formula but also at how it was arrived. Thanks in advance. Suriya |
|
August 23, 2005, 01:01 |
Re: time step for incompressible flows
|
#2 |
Guest
Posts: n/a
|
I am trying to get the ans too. I am using factional step to solve the unsteady NS eqns. It's a semi implicit mtd ie Adam Bashford 2nd order for convective (explicit) & Crank nicolson 2nd order for diffusive (implicit). It was given in the paper that the CFL condition is
CFL=max(u(i)*delta_t/delta_x(i)) = 1. So in order to solve the unsteady eqn, delta_t needs to be determined. However, u(i) is unknown. So how can we obtain delta_t? Supposed we are simulating a lid driven cavity flow, we know that the max vel = 1. hence can we substitute into the CFL eqn to get delta_t? Is that reasonable? |
|
August 23, 2005, 09:34 |
Re: time step for incompressible flows
|
#3 |
Guest
Posts: n/a
|
At each time iteration you have a velocity field. u_i is the max absolute value that you get from the field you have just calculated. Another way to calculate your time step:
dt_conv = 1/(u/dx+v/dy) (1) dt_difus = 1/(2*visc*(1/dx^2 + 1/dy^2)) (2) dt = coef/(1/dt_conv + 1/dt_difus) (3) where, in (1), u, v are the largest absolute velocity values you get in each time iteration. The coef in (3) is a safety factor, usualy <=0.2 -Márcio |
|
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Transient simulation not converging | skabilan | OpenFOAM Running, Solving & CFD | 14 | December 17, 2019 00:12 |
Multiple floating objects | CKH | OpenFOAM Running, Solving & CFD | 14 | February 20, 2019 10:08 |
Extrusion with OpenFoam problem No. Iterations 0 | Lord Kelvin | OpenFOAM Running, Solving & CFD | 8 | March 28, 2016 12:08 |
Modeling in micron scale using icoFoam | m9819348 | OpenFOAM Running, Solving & CFD | 7 | October 27, 2007 01:36 |
AMG versus ICCG | msrinath80 | OpenFOAM Running, Solving & CFD | 2 | November 7, 2006 16:15 |