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

extrapolation in MUSCL scheme

Register Blogs Community New Posts Updated Threads Search

Like Tree1Likes
  • 1 Post By Fuka

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   February 14, 2007, 04:10
Default extrapolation in MUSCL scheme
  #1
Chandra
Guest
 
Posts: n/a
hello,

I am planning to shift to MUSCL scheme in my Energy Equation solver(calculation of T) from upwind scheme (which I am using so far). I went through details and understood almost all the things except one, which is as follows:

To solve, say, "du/dt + df(u)/dx = 0", using MUSCL scheme, one needs to evaluate f[u*_(i+1/2)] and f[u*_(i-1/2)]. Literature says that u*_(i+1/2) = g[u_(1+1/2)_L, u_(1+1/2)_R] and u*_(i-1/2) = g[u_(1-1/2)_L, u_(1-1/2)_R].

For these functions "g()", the reference I got on wikipedia is to use Kurganov and Tadmor central scheme [http://en.wikipedia.org/wiki/MUSCL_scheme]. But that requires evaluation of spectral radius of "df/du" at different node-points to calculate the local propagation speed. This evaluation of spectral radius seems to be much time consuming.

Could any of you please suggest me any of the following:

1. How to evaluate the local-propagation speed "easily"?

2. Is there any other way to get a reliable function "g()" (instead of Kurganov and Tadmor's scheme).

and at last,

3. If I am wrong somewhere, please suggest me if there is any other way to implement the MUSCL scheme easily. Or, a way to have better solution than the upwind scheme I am using now (I thought of using 3rd order upwind scheme but I rejected the idea because it will get too complex on staggered, non-uniform grids).

Thank you very much in anticipation,

Please help me if you have any experience with using MUSCL,

regards, Chandra
  Reply With Quote

Old   February 14, 2007, 08:04
Default Re: extrapolation in MUSCL scheme
  #2
Fuka
Guest
 
Posts: n/a
Karganov -Tadmor is a central scheme. It is more dissipative than upwind schemes but if you want something to be applied easily, I think KT is a good choice. Sometimes you know local speed without computing (for example for 1D Euler eq. it is u-c, u and u+c) you can also use approximation Delta x/ Delta t and than you get Local Lax-Friedrichs (Rusanov) with MUSCL rconstruction, slightly more dissipative then KT. If you don't want to use central schemes, you can employ classical upwind Godunov schemes with Riemann solver. But this is even more time-consuming than computation of local speeds. Of course it has also better accuracy. If you are not developing standard compressible code (or some other hyperbolical c. laws) take a look at the book Drikakis, Rider - High-Resolution Methods for Incompressble and Low Speed Flows.

Maybe in your case it would be better to try QUICK scheme or some monotone version of it.
  Reply With Quote

Old   February 14, 2007, 09:47
Default Re: extrapolation in MUSCL scheme
  #3
Chandra
Guest
 
Posts: n/a
hey Fuka,

thank you very much for your response. However, I have few queries. Please enlighten me.

1. The Lax-Friedrichs(LF) scheme seems to be easy to implement. I think it is a kind of Karganov-Tadmor scheme with local speed approximated easily by DELTA x/DELTA t. But as you said, the upwind scheme is less dissipative than KT or LF, if I use this LF with MUSCL reconstruction, is it expected to produce better result than upwind? (For KT in combination with MUSCL, the wikipedia shows very nice results even in case of shock waves: http://en.wikipedia.org/wiki/MUSCL_scheme )

2. Are Lax-Friedrichs scheme and Lax-Friedrichs (Rusanov) schemes are same ?? ( http://www.astro.uu.se/~bf/course/nu...hs_scheme.html )

3. I am using Finite Difference Method (FDM). The MUSCL scheme can be applied for FDM also?? (I heard that MUSCL is for Finite Volume Method).

Thank you once again.

regards,

Chandra
  Reply With Quote

Old   February 14, 2007, 10:04
Default Re: extrapolation in MUSCL scheme
  #4
Fuka
Guest
 
Posts: n/a
Reference to Rusanov scheme was my mistake, it is version of normal first order LF scheme with local speeds instead of Dx/Dt. Lax Friedrichs with MUSCL and second order Runge-Kutta time-stepping has much lower numerical viscosity than first order LF and you get results that look very similar to that of KT.

With upwind schemes I thought Godunov schemes with Riemann solvers (Roe scheme etc.) not the finite difference upwind scheme. These employ solution of Riemann problem (usually with characteristic variables). I don't know anything about your code, but in Cartesian grids there is very little difference between FD and FV and these methods can be treated as both FV and FD. If you are using some other type of grids than, it is ussualy better to use FV.
Quasar_89 likes this.
  Reply With Quote

Old   February 14, 2007, 10:35
Default Re: extrapolation in MUSCL scheme
  #5
Chandra
Guest
 
Posts: n/a
Thank you very much Fuka for your valuable responses. Now I have things clear in mind except one thing: The Lax Friedrichs scheme (NOT Lax Friedrichs Rusanov) is 2nd order in space? (which is mentioned at the link: http://www.astro.uu.se/~bf/course/nu...hs_scheme.html ) ??

I am using cylindrical co-ordinate (orthogonal grids) and so I think it is OK if I use MUSCL with FDM. Also, I am using 3rd order RK scheme for time marching. So, I think I should get reasonable results.

Thank you, Please confirm the aforementioned query about Lax Friedrichs scheme.

regards, Chandra

  Reply With Quote

Old   February 14, 2007, 10:52
Default Re: extrapolation in MUSCL scheme
  #6
Fuka
Guest
 
Posts: n/a
The LF scheme at that link is first order. You will use the same flux, but instead of RHOi+1 and RHOi use RHORi+1/2 and RHOLi+1/2 that you will get from MUSCL interpolation.

best regards, V. Fuka
  Reply With Quote

Old   February 14, 2007, 11:21
Default Re: extrapolation in MUSCL scheme
  #7
Chandra
Guest
 
Posts: n/a
Dear Fuka,

I am really very very thankful to you for all of your responses and helps. It was indeed quite helpful and now I think I can proceed with things properly.

Thanks a lot.

with regards,

Chandra

  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
Trouble when using MUSCL scheme on ONERA M6 wing Aurélien FLUENT 2 January 23, 2013 07:42
Numerical viscosity due to the MUSCL and HLL coulpled scheme sonsiest Main CFD Forum 0 May 23, 2011 15:37
MUSCL scheme implementation ANPDEstudent Main CFD Forum 1 June 26, 2010 23:57
Extrapolation scheme in icoFoam skabilan OpenFOAM Running, Solving & CFD 0 June 21, 2010 16:37
MUSCL scheme B. Nilsson Main CFD Forum 1 October 30, 1998 02:11


All times are GMT -4. The time now is 18:44.