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

About Preconditioning Euler eqs. convergence

Register Blogs Members List Search Today's Posts Mark Forums Read

Like Tree2Likes
  • 2 Post By ganesh

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   October 1, 2006, 11:50
Default About Preconditioning Euler eqs. convergence
  #1
Rake
Guest
 
Posts: n/a
Hi, I use a 2d Euler code to learn some Preconditioner. The first preconditioner is a gloable preconditioner,as discribed in "High-resolution Viscous flow simulations at arbitrary Mach number" ,W.R.Briley,L.K. Taylor,D.L Whitfield,Jounal of Computational Physics. The second is a local preconditioner following AIAA 99-2209.

Because the 2d Euler code is solved implicit, I modified the right and left eigenvectors, the local time-step, and the ROE dissipation terms according fifferent preconditioner.Although the farfield BC should be modified for accuracy if using preconditioning, in order to reduce the effect of far field,the mesh around NACA0012 I choose far enough way from the solid,about 25 chord of the airfoil. for subsonic flow the results are similar as the origennal. When i reduce the Mach number to 0.05,all these two preconditioner have poor convengence for continuty residul. and for very low Mach 0.001 or lower both these 2 preconditioner failed. I don't know why. WHo can give me some advice? thx!

  Reply With Quote

Old   October 1, 2006, 11:54
Default Re: About Preconditioning Euler eqs. convergence
  #2
Rake
Guest
 
Posts: n/a
o my god ican't edit it,there are so many ......

  Reply With Quote

Old   October 2, 2006, 05:08
Default Re: About Preconditioning Euler eqs. convergence
  #3
ganesh
Guest
 
Posts: n/a
Dear Rake,

I am not quite sure what your problem could be, but I have the following suggestions.

1. Preconditioning, from the coding point of view essentially requires two changes;

a. Flux computation, viz. the dissipation of the scheme needs to be altered. You must check if the dissipation terms are scaled properly, ie. these should not be scaled with the sonic velocity, but with a modified sonic speed that reverts back to the sonic speed when preconditioning is switched off or compressible effects are dominant.

b. The finite volume update for the residual is modified, evidently beacuse it gets premultiplied by the inverse of the preconditioning matrix.

2. Farfield BCs are to be modified if you are using a characteristic BC, since the concept of Reimann invariants does not exist in the limit M --> 0. Howvere, as you have used a freestream BC at a considerably large farfield distance is also ok, but you can try out with an even larger farfield of the order of 100 chords, just to make sure that there are no farfield effects coming into play. I feel that the farfield BC is not the culprit, although you can look into this issue.

3. Preconditioning is supposed to improve convergence at low mach numbers,(which is poor if no preconditioning is applied to the Euler code) and also give physically meaningful solutions( which is not obtained in the absence of preconditioning at low mach numbers) for both lower and higher speeds. Although there are some evidence that the preconditioning deteriorates the convergence if operated at higher M, my personal experience has been that it has been effective in both higher and lower M, giving reasonbably accurate results with a good convergence.

Since your preconditioned code seems to be working well for higher M, it looks to me that the code is fine, if you have looked into aspects (a) and (b). What subsonic M have you tried out the code with ? What is the convergence history and solution like whem M=0.1 or M=0.15 ? If at M=0.1 to 0.2, your code does fine, then possibly that problem lies in the definition of pressure. When M --> 0, the pressure values become quite small that round-off errors start creeping up, and you end up with problems of non-physical solution/poor convergence. What has to be done is to replace the pressure p by p' = p - p_ref, where p_ref is some reference pressure (say, the freestream pressure), and accordingly modify all equations where pressure appears( such as in flux formula, implcit update etc ...). This would than possibly lead to the right solution at a convergence rate expected, provided your code is otherwise bug-free. If you have access to VKI lecture series, you can look into the 1999-03 series on low mach number preconditioning, where an excellent review on these techiniques is available.

Hope this helps

Regards,

Ganesh

Bulrush and samurai_01 like this.
  Reply With Quote

Old   October 2, 2006, 15:58
Default Re: About Preconditioning Euler eqs. convergence
  #4
Rake
Guest
 
Posts: n/a
Dear Ganesh:

Many thanks for your explanation. I run the code for Mach=0.1,the convergence is still poor,drooped from 1.e-4 to 1.e -6. just as you point in 1 (a) : there is a term of 1/c^2 in the dissipation terms .(c is the local sound velocity). The poor convergence may be caused by it.

I use the sound velocity to nodimensional the relatively velocity variables.Shoul I change it to free flow velocity ? because i check and modified the code to multiply the 1/c^2 to the Roe dissipation term last,I still cann't get the expect result, although it will effect the convergence slightly.

I till have another question after reading your answer: in the code i mutiply the inverse of preconditioning matrix(P^-1) to the residual vector, then multiply the R_q^-1(some terms still include 1/c^2), is it right ?

many thanks!

Rake

  Reply With Quote

Old   October 3, 2006, 01:46
Default Re: About Preconditioning Euler eqs. convergence
  #5
ganesh
Guest
 
Posts: n/a
Dear Rake,

There is no serious issue on using the sonic velcoity as a reference velocity for non-dimensionalisation. However, as I have mentioned the basic principle behind preconditioning relies on using a modified sonic velcoity, sat c' = f * c, where c is the sonic velcoity and f is some function such that c' is of the order of local velocity, when M --> 0 and c' --> c as M becomes large (ie. f=1). The preconditioning matrix actually incorporates this idea and this leads you to the right result. The important fact to note is that the dissipation must not scale with the sonic velcity, but with the modified sonic velocity. You may be intersted in looking at Weiss and Smith's precondtioner, (where they have shown the modified Roe scheme, although not much of explanation on how it is arrived at is given) as also the paper by Liou et.al. on extension of AUSM to low speed flows (where the idea of constructing the modified sound velocity is explained well). If you cannot access these papers, I can send you the soft copy by mail, if you could give me your e-mail address.

P.S.: As a thought, does your code run at 0.1 Mach, without preconditioning with a "good" convergence history ?

Regards,

Ganesh

  Reply With Quote

Old   October 3, 2006, 15:37
Default Re: About Preconditioning Euler eqs. convergence
  #6
Rake
Guest
 
Posts: n/a
Dear Ganesh:

Yes,if no preconditioner,the convergence history is very well for subsonic speed flow. As you known,the results may be not accurate but the code even run at 0.01~0.05 without preconditioning with a "good" convergence history. just this confused me,why i couldn't get the similare convergence history with preconditioning?

Send these references to me please,thank you very much! my email: flyinskyer@163.com

Whith best wishes for success and happiness!

Rake

  Reply With Quote

Old   October 17, 2006, 11:45
Default Re: About Preconditioning Euler eqs. convergence
  #7
Paul
Guest
 
Posts: n/a
Rake and Ganesh

I'm currently knee-deep in implementing Weiss-Smith for a 3-D finite volume code. Although I have read much of the relevant literature (ie various Turkel/Vatsa papers, Darmofal and Van Leer VKI Lecture), I have not read Weiss-Smith's original paper, nor have I heard of this Liou et al paper.

Could you give me the full citation for Liou et al?

Cheers

Paul
  Reply With Quote

Old   July 1, 2015, 06:45
Default
  #8
Senior Member
 
Ashwani
Join Date: Sep 2013
Location: Hyderabad
Posts: 154
Rep Power: 12
AshwaniAssam is on a distinguished road
Hi,

Was this problem solved? We are also getting some similar convergence issue for low-speed preconditioning convergence.

with regards,
Ashwani
AshwaniAssam is offline   Reply With Quote

Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

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
Force can not converge colopolo CFX 13 October 4, 2011 22:03
Convergence of CFX field in FSI analysis nasdak CFX 2 June 29, 2009 01:17
convergence of DG for Euler equations Shyam Main CFD Forum 2 February 7, 2009 00:48
convergence of Euler Equations with WENO Shyam Main CFD Forum 0 June 1, 2007 00:47
convergence acceleration by preconditioning method Atit Koonsrisuk Main CFD Forum 4 June 5, 2000 06:21


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