|
[Sponsors] |
Main advantage of using Runge Kutta of higher order? |
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
May 14, 2013, 05:41 |
Main advantage of using Runge Kutta of higher order?
|
#1 |
New Member
Jakub
Join Date: May 2013
Location: Czech Republic
Posts: 16
Rep Power: 13 |
What is main advantage of using 2nd and 4th order Runge Kutta methods for time discretization? Is it stability for larger CFL condition or Runge Kutta is more accurate for same CFL condition?
I compute Shallow water equations and I use Euler method, RK2 and RK4 for time discretization. If I have CFL = 0.9 then I get Euler method as the most accurate, but if I set CFL = 3.5 then I get RK4 is more accurate than Euler method with CFL=0.9. Euler method is obviously unstable for CFL = 3.5. Are my results correct? Thank you Jakub |
|
May 15, 2013, 04:28 |
|
#2 |
New Member
Jakub
Join Date: May 2013
Location: Czech Republic
Posts: 16
Rep Power: 13 |
I have tested the Euler method and the RK2 method for increasing CFL and I get this result. Don't anyone know if it's correct result? If not, don't you have an idea where might be error in my calculations?
Thank you. |
|
May 17, 2013, 07:29 |
|
#3 |
Senior Member
Lefteris
Join Date: Oct 2011
Location: UK
Posts: 341
Rep Power: 16 |
Euler method is first order accurate while RK4 is forth order accurate. Moreover, the explicit Euler method has quite strict stability criteria.
__________________
Lefteris |
|
May 17, 2013, 07:43 |
|
#4 |
New Member
Jakub
Join Date: May 2013
Location: Czech Republic
Posts: 16
Rep Power: 13 |
And is it correct, that Euler is more accurate for small CFL condition than RK2 and RK4? I thought RK2 is always more accurate than Euler, but in my program not, see graph.
Thank you very much. Jakub |
|
May 17, 2013, 07:59 |
|
#5 |
Senior Member
Lefteris
Join Date: Oct 2011
Location: UK
Posts: 341
Rep Power: 16 |
e is the temporal discretisation error?
__________________
Lefteris |
|
May 17, 2013, 08:09 |
|
#6 |
New Member
Jakub
Join Date: May 2013
Location: Czech Republic
Posts: 16
Rep Power: 13 |
e is sum L1 error between numerical solution and exact solution of Riemann problem.
|
|
May 17, 2013, 08:47 |
|
#7 |
Senior Member
Lefteris
Join Date: Oct 2011
Location: UK
Posts: 341
Rep Power: 16 |
what problem are you solving? NS or Euler Equations? How is the spatial discretisation done?
__________________
Lefteris |
|
May 17, 2013, 09:03 |
|
#8 |
New Member
Jakub
Join Date: May 2013
Location: Czech Republic
Posts: 16
Rep Power: 13 |
I'm solving Euler equations. For case which is on graph I used simple Lax-Friedrichs scheme for spatial discretisation.
|
|
May 17, 2013, 10:57 |
|
#9 |
New Member
Jakub
Join Date: May 2013
Location: Czech Republic
Posts: 16
Rep Power: 13 |
Please, Aeronautics El. K. don't you have any idea, why Runge Kutta behave strangely for my case?
Thank you. |
|
May 17, 2013, 11:16 |
|
#10 |
Senior Member
Lefteris
Join Date: Oct 2011
Location: UK
Posts: 341
Rep Power: 16 |
I can't make anything of it yet. I'm reading a little bit on it and I suggest you do the same
__________________
Lefteris |
|
May 17, 2013, 11:32 |
|
#11 |
New Member
Jakub
Join Date: May 2013
Location: Czech Republic
Posts: 16
Rep Power: 13 |
Aeronautics El. K.: Of course I do the same :-) I'm trying to solve it for about two weeks :-(. Thank you for your willingness to help.
If someone will have some idea or tip for book, where can I find it, please write it here. Many thanks. Jakub |
|
May 17, 2013, 19:32 |
|
#12 |
New Member
Jakub
Join Date: May 2013
Location: Czech Republic
Posts: 16
Rep Power: 13 |
I discovered an interesting thing. I found Masatsuka's code http://www.cfdbooks.com/cfdcodes/oned_euler_v1.f90, where he solve same problem as me. I implemented even Euler method to his code. I compared results obtained using RK2 and Euler method for time discretization and Euler is more accurate. So really advantage of using RK2 and RK4 instead of Euler is probably only possibility using larger timestep (or CFL)? I think that RK2 and RK4 may not be always more accurate.
I don't if this is correct conclusion of my problem :-). Books say something else, but numerical results not. Jakub |
|
August 20, 2019, 06:50 |
|
#13 |
New Member
Marko Josic
Join Date: Dec 2010
Posts: 20
Rep Power: 15 |
Hello,
this thread is almost 7 years old, but i think it is important knowing the real reason why for hyperbolic PDEs a higher order time integration could be less accurate. In hyperbolic PDEs solution with discontinuities are possible. Every spatial discretisation higher than first order produce non-physical solution. see Godunov's theorem To ensure Total Variation Diminishing property TVD it is also necessary having a time discretisation which don't violate the TVD property. For time integration Euler Method (explicit) ensure the TVD Property, and also higher order Runge Kutta TVD schemes (RK2-TVD and RK3-TVD) are suitable for this class of equations. Literatur: S. Gottlieb, C.W. Shu, Total variation diminishing Runge-Kutta schemes, Math. Comput. 67 (1998) 73–85. |
|
August 20, 2019, 12:55 |
|
#14 | |
Senior Member
Filippo Maria Denaro
Join Date: Jul 2010
Posts: 6,882
Rep Power: 73 |
Quote:
Just to address that the Godunov's theorem stated that only linear first order accurate schemes are monotone. You can have physical solution using higher order non-linear scheme. |
||
August 20, 2019, 17:15 |
|
#15 | |
New Member
Marko Josic
Join Date: Dec 2010
Posts: 20
Rep Power: 15 |
Quote:
But to preserve monotonicity it is also necessary having a TVD scheme as temproral Discretization. And i think that the thread creator have/had this problems with higher order time integration schemes. https://www.researchgate.net/publica...-Kutta_Schemes |
||
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
2nd order boundary conditions for 2nd order discretization? | quarkz | Main CFD Forum | 30 | December 26, 2011 08:12 |
1D Burgers euqation with 4th Runge Kutta | dokeun | Main CFD Forum | 3 | August 8, 2011 07:34 |
fractional step method with third order rugne kutta TVD | HaKu | Main CFD Forum | 1 | October 18, 2009 20:33 |
Higher order discretization on staggered grid | Chandra Shekhar | Main CFD Forum | 9 | January 27, 2005 17:31 |
Higher Order FV Schemes for unstructured meshes | Apurva Shukla | Main CFD Forum | 4 | December 15, 2000 10:17 |