Burgers equation
From CFD-Wiki
Line 22: | Line 22: | ||
==== Explicit Scheme (DRP)==== | ==== Explicit Scheme (DRP)==== | ||
:<math> {(\frac{\partial u}{\partial x})}_i=\frac{1.0}{dx}\sum_{k=-3}^3 a_k u_{i+k} </math> | :<math> {(\frac{\partial u}{\partial x})}_i=\frac{1.0}{dx}\sum_{k=-3}^3 a_k u_{i+k} </math> | ||
- | The coefficients can be found in Tam(1993).At the right boundaries use fourth order central difference and fourth backward difference.At left boundaries use second order central difference for i=2 and fourth order central difference for i=3.The Dispersion relation preserving (DRP) finite volume scheme can be found in Popescu (2005).The second order derivative can be calculated from the first order derivative inside the domain.Near the boundaries use a second order central difference. | + | The coefficients can be found in Tam(1993).At the right boundaries use fourth order central difference and fourth backward difference.At left boundaries use second order central difference for i=2 and fourth order central difference for i=3.The Dispersion relation preserving (DRP) finite volume scheme can be found in Popescu (2005).The second order derivative can be calculated from the first order derivative inside the domain using the abouve defined discretization.Near the boundaries use a second order central difference. |
====Implicit Scheme(Compact)==== | ====Implicit Scheme(Compact)==== | ||
+ | =====First derivative ===== | ||
:Domain: <math>\alpha v_{i-1} + v_i + \alpha v_{i+1}=\frac{a}{2h}(u_{i+1}-u_{i-1}) </math> | :Domain: <math>\alpha v_{i-1} + v_i + \alpha v_{i+1}=\frac{a}{2h}(u_{i+1}-u_{i-1}) </math> | ||
:Boundaries: <math> v_1+\alpha v_2=\frac{1}{h}(au_1+bu_2+cu_3+du_4) </math> | :Boundaries: <math> v_1+\alpha v_2=\frac{1}{h}(au_1+bu_2+cu_3+du_4) </math> | ||
Line 30: | Line 31: | ||
:<math> \mbox{Boundary:} \alpha=2 ,a=-(\frac{11+2\alpha}{6}),b=\frac{6-\alpha}{2},c=\frac{2\alpha-3}{2},d=\frac{2-\alpha}{6} </math> | :<math> \mbox{Boundary:} \alpha=2 ,a=-(\frac{11+2\alpha}{6}),b=\frac{6-\alpha}{2},c=\frac{2\alpha-3}{2},d=\frac{2-\alpha}{6} </math> | ||
Both the schemes are 4th order accurate in the domain.The compact scheme has third order accuracy at the boundary. | Both the schemes are 4th order accurate in the domain.The compact scheme has third order accuracy at the boundary. | ||
+ | ===== Second derivative ===== | ||
+ | :Domain: <math>\alpha v_{i-1} + v_i + \alpha v_{i+1}=\frac{a}{h^2}(u_{i+1}-2u_i+u_{i-1}) </math> | ||
+ | where v in here refers to the second derivative.Second order central difference is used at the boundaries.The coefficients used are | ||
+ | :<math> \alpha=1/10 ,a=6/5 </math> | ||
===Time (4th Order Runga-Kutta)=== | ===Time (4th Order Runga-Kutta)=== | ||
:<math>\frac{\partial u}{\partial t}=f </math> | :<math>\frac{\partial u}{\partial t}=f </math> | ||
Line 38: | Line 43: | ||
,M=1,2..5 .The coefficients a and b can be found in Williamson(1980) | ,M=1,2..5 .The coefficients a and b can be found in Williamson(1980) | ||
== Results == | == Results == | ||
- | + | ||
== Reference == | == Reference == |
Revision as of 22:15, 14 January 2006
Contents |
Problem definition
Domain
Initial Condition
Boundary condition
Exact solution
Numerical method
Space
Explicit Scheme (DRP)
The coefficients can be found in Tam(1993).At the right boundaries use fourth order central difference and fourth backward difference.At left boundaries use second order central difference for i=2 and fourth order central difference for i=3.The Dispersion relation preserving (DRP) finite volume scheme can be found in Popescu (2005).The second order derivative can be calculated from the first order derivative inside the domain using the abouve defined discretization.Near the boundaries use a second order central difference.
Implicit Scheme(Compact)
First derivative
- Domain:
- Boundaries:
where v refers to the first derivative.For a general treatment of compact scheme refer to Lele (1992).In this test case the following values are used
Both the schemes are 4th order accurate in the domain.The compact scheme has third order accuracy at the boundary.
Second derivative
- Domain:
where v in here refers to the second derivative.Second order central difference is used at the boundaries.The coefficients used are
Time (4th Order Runga-Kutta)
,M=1,2..5 .The coefficients a and b can be found in Williamson(1980)
Results
Reference
Mihaela Popescu, Wei Shyy , Marc Garbey (2005), "Finite volume treatment of dispersion-relation-preserving and optimized prefactored compact schemes for wave propagation", Journal of Computational Physics, Vol. 210, pp. 705-729.
Tam and Webb (1993), "Dispersion-relation-preserving finite difference schemes for computational acoustics", Journal of Computational Physics, Vol. 107, pp. 262-281.
SK Lele (1992), "Compact finite difference schemes with spectrum-like resolution", Journal of Computational Physics, Vol.103, pp.16-42.
Williamson (1980), "Low Storage Runge-Kutta Schemes", Journal of Computational Physics, Vol.35, pp.48–56.