|
[Sponsors] |
July 7, 2005, 00:30 |
Time to reach steady state for cavity flow?
|
#1 |
Guest
Posts: n/a
|
Hi,
I've been testing my NS code for different Re of cavity flow. My range is from 100 to 10000 (as Ghia's) Since mine is a transient solver, I'm not sure when I should stop. It seems that as Re increase, the non-dimensional time to reach steady state also increases. Is that so? Is there any recommended time for different values of Re? Also, my u,v results compared to Ghia's is about 5% difference. Is that acceptable? I'm using a 2nd order projection mtd. Thanks alot! |
|
July 7, 2005, 06:13 |
Re: Time to reach steady state for cavity flow?
|
#2 |
Guest
Posts: n/a
|
For each Re, at different time u will be the converged solution. so You can check for the rms error in the previous and current time step velocities (say rmsU, rmsV, rmsW) and then find out the maximum error: rms_max(rmsU,rmsV,rmsV) check if (rms_max/dt) > tolerance I kept the tolerance as 1e-6 and got the approximately same values as Ghia et al. I think 5% is acceptable.
|
|
July 7, 2005, 07:20 |
Re: Time to reach steady state for cavity flow?
|
#3 |
Guest
Posts: n/a
|
I am unable to accept that 5%, because when I talked to some gurus I was told that <1% deviation may be accepted.It is not the time, it is acceptable error level which determines the convergence.non-dim residue of continuity eqn (Patankar's b) <1e-04 is recommended by Spalding.with increased Re, at the top of the driven cavity the diffusion becomes too low and as a result the convection is to be arrested. a refined grid helps. but if you follow uniform gridding, better to consider some different discretisation for the convection term.
|
|
July 7, 2005, 09:43 |
Re: Time to reach steady state for cavity flow?
|
#4 |
Guest
Posts: n/a
|
To really answer your question, I'd suggest you experiment with different times, different mesh densities, etc. Keep track of the convergence parameters, tabulate them, and try to draw your own conclusions.
The driven cavity is not a 'real' flow, but it's a very good problem to build your intuition or 'feel' for how your code works. You need to do this problem enough different ways that you can decide for yourself what's 'good enough.' |
|
July 12, 2005, 21:28 |
Re: Time to reach steady state for cavity flow?
|
#5 |
Guest
Posts: n/a
|
hi ramp,
just to confirm, is the rms error formula = sqrt( sum(u(new)^2-u(old)^2)/n ) ? i'll then get 1 rms error value each for u,v,w. Then the largest of these 3 values will be the rms_max and rms_max/dt must be < 1e-6 to stop the run. Is that correct? Thanks! |
|
July 13, 2005, 03:43 |
Re: Time to reach steady state for cavity flow?
|
#6 |
Guest
Posts: n/a
|
Yes Quarkz, Its correct.
|
|
July 14, 2005, 23:59 |
Re: Time to reach steady state for cavity flow?
|
#7 |
Guest
Posts: n/a
|
hi,
just to confirm again, is it sqrt( sum(u(new)^2-u(old)^2)/n ) or sqrt( sum((u(new)-u(old))^2)/n ) thanks again |
|
July 15, 2005, 04:58 |
Re: Time to reach steady state for cavity flow?
|
#8 |
Guest
Posts: n/a
|
Hi Quarkz, Its second one... I am making it more clear
rms_u=(U_new-U_old)^2 rms_v=(V_new-W_old)^2 rms_w=(W_new-W_old)^2 N=Ni*Nj*Nk err_u=sqrt(sum of rms_u/N) err_v=sqrt(sum of rms_v/N) err_w=sqrt(sum of rms_w/N) max_rms=maximum of (err_u,err_v,err_w)/dt ------ Check for convergence ------- If max_rms < 1.0e-6 ------> STOP Have a nice time..... ramp |
|
July 15, 2005, 22:42 |
Re: Time to reach steady state for cavity flow?
|
#9 |
Guest
Posts: n/a
|
Hi,
thank you so much! |
|
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Solver for transonic flow? | Martin Hegedus | OpenFOAM Running, Solving & CFD | 22 | December 16, 2015 05:59 |
How to write k and epsilon before the abnormal end | xiuying | OpenFOAM Running, Solving & CFD | 8 | August 27, 2013 16:33 |
Steady state vs. mean transient analysis of flow behind a circular cylinder | Heini | Main CFD Forum | 1 | June 9, 2011 07:47 |
time step and iterations in steady state problem using transient solver | jing113cn | FLUENT | 2 | January 15, 2010 04:18 |
initialize flow field with steady state solution | holg | FLUENT | 0 | July 13, 2009 18:10 |