Lecture 1: Finite Volume WENO Schemes Chi-Wang Shu

Size: px
Start display at page:

Download "Lecture 1: Finite Volume WENO Schemes Chi-Wang Shu"

Transcription

1 Lecture 1: Finite Volume WENO Schemes Chi-Wang Shu Division of Applied Mathematics Brown University

2 Outline of the First Lecture General description of finite volume schemes for conservation laws The WENO reconstruction procedure Bound-preserving limiter for high order finite volume WENO schemes A simple WENO limiter for discontinuous Galerkin methods Concluding remarks

3 Finite volume schemes for conservation laws We look first at the one-dimensional hyperbolic conservation law u t + f(u) x = 0 which has discontinuous solutions even if the initial condition is smooth. We discretize the computational domain into cells I i = [x i 1/2,x i+1/2 ] with cell sizes x i (not necessary to be uniform or smooth varying). The cell averages are denoted by ū i = 1 x i xi+1/2 x i 1/2 u(x)dx.

4 A finite volume scheme approximates this conservation law in its integral form d dtūi + 1 x i ( f(ui+1/2 ) f(u i 1/2 ) ) = 0 (1) To convert (1) to a finite volume scheme, we take our computational variables as the cell averages ū i, i = 1, 2,,N and use a reconstruction procedure to obtain an approximation to u i+1/2.

5 A typical reconstruction procedure is to choose several consecutive cells near x i+1/2, which typically include at least one of I i and I i+1, the two neighbors of x i+1/2. The collection of these cells are called the stencil of the reconstruction. We seek a polynomial p(x) (or another simple function such as a trigonometric or exponential function) whose cell average over each cell I j in the stencil agrees with the given cell average ū j. We then take u i+1/2 = p(x i+1/2 ).

6 In order to obey upwinding for stability, we replace f(u i+1/2 ) by ( ) ˆf u i+1/2,u+ i+1/2 where ˆf(u,u + ) is a monotone numerical flux satisfying 1. ˆf(u,u + ) is non-decreasing in its first argument u and non-increasing in its second argument u +, symbolically ˆf(, ); 2. ˆf(u,u + ) is consistent with the physical flux f(u), i.e. ˆf(u,u) = f(u); 3. ˆf(u,u + ) is Lipschitz continuous with respect to both arguments u and u +. Here, both u i+1/2 and u+ i+1/2 are obtained through the reconstruction procedure, with their stencil biased to the left and to the right, respectively.

7 Time discretization can be achieved by the TVD (also called SSP) Runge-Kutta or multi-step methods Shu and Osher JCP 1987; Gottlieb, Shu and Tadmor SIAM Rev 2001; Gottlieb, Ketcheson and Shu, World Scientific For example, the third order TVD Runge-Kutta scheme is ū (1) = ū n + tl(ū n ) ū (2) = 3 4ūn + 1 4ū(1) tl(ū(1) ) ū n+1 = 1 3ūn + 2 3ū(2) tl(ū(2) )

8 One advantage of finite volume schemes is that they can be generalized to multi-dimensions including unstructured meshes easily in principle, even though the reconstruction procedure and the computation of numerical fluxes become more complicated, especially for unstructured meshes.

9 The WENO reconstruction procedure We would like to have schemes which are both high order accurate in smooth regions, and (essentially) non-oscillatory with sharp shock transition For typical linear schemes, i.e. schemes which are linear for a linear PDE u t + au x = 0 (2) (this corresponds to the situation that the stencil relative to the point x i+1/2 is fixed, for example, it is always {I i 1,I i,i i+1 }), the two properties desired above cannot be fulfilled simultaneously (Godunov Theorem).

10 We would therefore need to consider nonlinear schemes, which are nonlinear even for the linear PDE (2), such as the WENO schemes. In fact, the nonlinearity of the algorithm is only at the stage of choosing stencils in the reconstruction. Essentially non-oscillatory (ENO) reconstruction (Harten, Engquist, Osher and Chakravarthy, JCP 1987): Uniform high order polynomial reconstruction; The stencil is locally adaptive: among several candidate stencils one is chosen according to local smoothness.

11 j-2 S1 j j+1/2 j+2 j-1 S0 j+1 S2 Figure 1: Three possible stencils for reconstructing the point value at x j+1/2 using three cells in each stencil.

12 Weighted ENO (WENO) reconstruction (Liu, Osher and Chan, JCP 1994; Jiang and Shu, JCP 1996): Instead of using just one candidate stencil; a linear combination of all candidate stencils is used The choice of the weight to each candidate stencil, which is a nonlinear function of the cell averages, is a key to the success of WENO.

13 Advantages of ENO and WENO schemes: Uniform high order accuracy in smooth regions including at smooth extrema, unlike second order TVD schemes which degenerate to first order accuracy at smooth extrema; Sharp and essentially non-oscillatory (to the eyes) shock transition; Robust for many physical systems with strong shocks; Especially suitable for simulating solutions containing both discontinuities and complicated smooth solution structure, such as shock interaction with vortices.

14 Some advantages of WENO schemes over ENO schemes: Higher order of accuracy with the same set of candidate stencils: the order of accuracy is 3 instead of 2 for piecewise linear, and 5 instead of 3 for piecewise quadratic; No logical if statements in the stencil choosing process of ENO. Cleaner programming; Numerical flux function is smoother: C instead of only Lipschitz as in the ENO case. Hence: (i) a convergence proof when the solution is smooth (Jiang and Shu, JCP 1996), and (ii) better steady state convergence (Zhang and Shu, JSC 2007; Zhang, Jiang and Shu, JSC 2011; Hao et al., JCP submitted).

15 The WENO reconstruction procedure Given the cell averages ū i = 1 x i xi+1/2 x i 1/2 u(x)dx of a piecewise smooth function u(x) for the cells I i = [x i 1/2,x i+1/2 ] with cell sizes x i, find an approximation to the function u(x) at a desired location, e.g. at the cell boundaries x i+1/2. General procedure of reconstruction with a given stencil. e.g. to reconstruct u i+1/2 given ū i 1, ū i and ū i+1 :

16 1. Find the unique second order polynomial p(x) which agrees with the three given cell averages ū i 1, ū i and ū i+1 for the three cells in the stencil, respectively: 1 x i 1 1 x i 1 x i+1 xi 1/2 x i 3/2 p(x)dx = ū i 1, xi+1/2 x i 1/2 p(x)dx = ū i, xi+3/2 x i+1/2 p(x)dx = ū i Take the value p(x i+1/2 ) as an approximation to u i+1/2 : u i+1/2 = p(x i+1/2 )

17 3. The approximation u i+1/2 can be written out eventually as a linear combination of the given cell averages ū i 1, ū i and ū i+1 because the procedure is linear: u i+1/2 = 1 6ūi ūi + 1 3ūi+1 This approximation is third order accurate if the function u(x) is smooth in the stencil {I i 1, I i, I i+1 }.

18 Using such approximations with a fixed stencil leads to high order linear schemes, which will be oscillatory in the presence of shocks by the Godunov Theorem. The general procedure of a WENO reconstruction: 1. Compute the approximations from several different substencils, e.g. the three stencils in Figure 2:

19 j-2 S1 j j+1/2 j+2 j-1 S0 j+1 S2 Figure 2: Three sub-stencils for the reconstruction at x j+1/2 using three cells in each stencil.

20 u (0) i+1/2 = 1 3ūi 2 7 6ūi ūi u (1) i+1/2 = 1 6ūi ūi + 1 3ūi+1 u (2) i+1/2 = 1 3ūi + 5 6ūi+1 1 6ūi+2 If the function u(x) is smooth in all three substencils, then the three approximations u (0) i+1/2, u(1) i+1/2 and u(2) i+1/2 are all third order accurate.

21 2. Find the combination coefficients γ 0, γ 1 and γ 2, also called linear weights, such that the linear combination u i+1/2 = γ 0 u (0) i+1/2 + γ 1u (1) i+1/2 + γ 2u (2) i+1/2 is fifth order accurate if u(x) is smooth in all substencils. This can be easily achieved with γ 0 = 1 10, γ 1 = 3 5 and γ 2 = 3 10 : u i+1/2 = 1 10 u(0) i+1/ u(1) i+1/ u(2) i+1/2 would lead to a fifth order accurate linear scheme which is oscillatory. At this stage, if we only require the reconstructed value u i+1/2 to be of the same order of accuracy as that from each of the substencils (in this case, third order rather than fifth order), then we can choose the linear weights γ k > 0 arbitrarily as long as they sum to one.

22 3. Find the nonlinear weights w 0, w 1 and w 2 such that u i+1/2 = w 0 u (0) i+1/2 + w 1u (1) i+1/2 + w 2u (2) i+1/2 is both fifth order accurate in smooth regions and non-oscillatory for shocks. Thus we require the nonlinear weights w 0, w 1 and w 2 to satisfy the following two properties: If u(x) is smooth in all three substencils, then the nonlinear weights w 0, w 1 and w 2 are close to the linear weights γ 0, γ 1 and γ 2 : w k = γ k + O( x 2 ), k = 0, 1, 2. If u(x) has a discontinuity in the substencil S k, then the corresponding w k is very small: w k = O( x 4 )

23 4. A robust choice of the nonlinear weights, given in (Jiang and Shu, JCP 1996) and used in most WENO literature, is w k = w k w 0 + w 1 + w 2, w k = γ k (ε + β k ) 2 where ε = 10 6 typically (it can be adjusted by the average size of the solution), and the smoothness indicator β k measures the smoothness of the function u(x) in the substencil S k and is given by β k = x i xi+1 2 x i 1 2 (p r(x)) 2 dx + x 3 i xi+ 1 2 x i 1 2 (p r(x)) 2 dx.

24 These smoothness indicators can be worked out explicitly as β 0 = (ū i 2 2ū i 1 + ū i ) (ū i 2 4ū i 1 + 3ū i ) 2 β 1 = (ū i 1 2ū i + ū i+1 ) (ū i 1 ū i+1 ) 2 β 2 = (ū i 2ū i+1 + ū i+2 ) (3ū i 4ū i+1 + ū i+2 ) 2

25 Bound-preserving limiter For many physical problems, there are natural bounds for the solution. For example, if the solution represents a percentage of a component in a mixture, then it must be between 0 and 1. If the solution is the probability density function, it must be non-negative. For Euler equations of gas dynamics, the density and pressure must be non-negative. For shallow water equations, the water height should be non-negative, etc.

26 We take the scalar conservation laws u t + F(u) = 0, u(x, 0) = u 0 (x) (3) as an example. An important property of the entropy solution (which may be discontinuous) is that it satisfies a strict maximum principle: If M = max x u 0 (x), m = min x u 0 (x), (4) then u(x,t) [m,m] for any x and t.

27 First order monotone schemes can maintain the maximum principle. For the one-dimensional conservation law the first order monotone scheme u t + f(u) x = 0, u n+1 j = H λ (u n j 1,u n j,u n j+1) = u n j λ[h(u n j,u n j+1) h(u n j 1,u n j )] where λ = t x and h(u,u + ) is a monotone flux (h(, )), satisfies under a suitable CFL condition H λ (,, ) λ λ 0.

28 Therefore, if m u n j 1,u n j,u n j+1 M then and u n+1 j = H λ (u n j 1,u n j,u n j+1) H λ (m,m,m) = m, u n+1 j = H λ (u n j 1,u n j,u n j+1) H λ (M,M,M) = M.

29 However, for higher order linear schemes, i.e. schemes which are linear for a linear PDE u t + au x = 0 for example the second order accurate Lax-Wendroff scheme u n+1 j = aλ 2 (1 + aλ)un j 1 + (1 a 2 λ 2 )u n j aλ 2 (1 aλ)un j+1 where λ = t x and a λ 1, the maximum principle is not satisfied. In fact, no linear schemes with order of accuracy higher than one can satisfy the maximum principle (Godunov Theorem).

30 Therefore, nonlinear schemes, namely schemes which are nonlinear even for linear PDEs, have been designed to overcome this difficulty. These include roughly two classes of schemes: TVD schemes. Most TVD (total variation diminishing) schemes also satisfy strict maximum principle, even in multi-dimensions. TVD schemes can be designed for any formal order of accuracy for solutions in smooth, monotone regions. However, all TVD schemes will degenerate to first order accuracy at smooth extrema. TVB schemes, ENO schemes, WENO schemes. These schemes do not insist on strict TVD properties, therefore they do not satisfy strict maximum principles, although they can be designed to be arbitrarily high order accurate for smooth solutions.

31 Remark: If we insist on the maximum principle interpreted as m u n+1 j M, j if m u n j M, j, where u n j is either the approximation to the point value u(x j,t n ) for a xj+1/2 x j 1/2 u(x,t n )dx for finite difference scheme, or to the cell average 1 x a finite volume or DG scheme, then the scheme can be at most second order accurate (proof due to Harten, see Zhang and Shu, Proceedings of the Royal Society A, 2011).

32 Therefore, the correct procedure to follow in designing high order schemes that satisfy a strict maximum principle is to change the definition of maximum principle. Note that a high order finite volume scheme has the following algorithm flowchart: (1) Given {ū n j } (2) reconstruct u n (x) (piecewise polynomial with cell average ū n j ) (3) evolve by, e.g. Runge-Kutta time discretization to get {ū n+1 j } (4) return to (1)

33 Therefore, instead of requiring m ū n+1 j M, j if we will require if m ū n j M, m u n+1 (x) M, m u n (x) M, j, x x. Similar definition and procedure can be used for discontinuous Galerkin schemes.

34 Maximum-principle-preserving for scalar equations The flowchart for designing a high order scheme which obeys a strict maximum principle is as follows: 1. Start with u n (x) which is high order accurate u(x,t n ) u n (x) C x p and satisfy m u n (x) M, x therefore of course we also have m ū n j M, j.

35 2. Evolve for one time step to get m ū n+1 j M, j. (5) 3. Given (5) above, obtain the reconstruction u n+1 (x) which satisfies the maximum principle m u n+1 (x) M, x; is high order accurate u(x,t n+1 ) u n+1 (x) C x p.

36 Three major difficulties 1. The first difficulty is how to evolve in time for one time step to guarantee m ū n+1 j M, j. (6) This is very difficult to achieve. Previous works use one of the following two approaches:

37 Use exact time evolution. This can guarantee m ū n+1 j M, j. However, it can only be implemented with reasonable cost for linear PDEs, or for nonlinear PDEs in one dimension. This approach was used in, e.g., Jiang and Tadmor, SISC 1998; Liu and Osher, SINUM 1996; Sanders, Math Comp 1988; Qiu and Shu, SINUM 2008; Zhang and Shu, SINUM 2010; to obtain TVD schemes or maximum-principle-preserving schemes for linear and nonlinear PDEs in one dimension or for linear PDEs in multi-dimensions, for second or third order accurate schemes.

38 Use simple time evolution such as SSP Runge-Kutta or multi-step methods. However, additional limiting will be needed on u n (x) which will destroy accuracy near smooth extrema. We have figured out a way to obtain m ū n+1 j M, j with simple Euler forward or SSP Runge-Kutta or multi-step methods without losing accuracy on the limited u n (x):

39 The evolution of the cell average for a higher order finite volume or DG scheme satisfies ū n+1 j = G(ū n j,u,u +,u,u + j 1 j 1 j+ 1 j ) = ū n j λ[h(u,u + ) h(u j+ 1 j+ 1 j ,u + j 1 2)], where G(,,,, ) therefore there is no maximum principle. The problem is with the two arguments u + j 1 and u j+ 1 which are values at points inside the cell 2 2 I j.

40 The polynomial p j (x) (either reconstructed in a finite volume method or evolved in a DG method) is of degree k, defined on I j such that ū n j is its cell average on I j, u + = p j 1 j (x j 1 and u 2 2) = p j+ 1 j (x j+ 1). 2 2 We take a Legendre Gauss-Lobatto quadrature rule which is exact for polynomials of degree k, then ū n j = m l=0 ω l p j (y l ) with y 0 = x j 1, y m = x 2 j+ 1. The scheme for the cell average is then 2 rewritten as

41 ū n+1 j = ω m [ u j ω 0 [ u + j m 1 l=1 λ ) (h(u ],u + ) h(u +,u ω j+ 1 j+ 1 j 1 j+ 1 m ) λ ( ) ] h(u +,u ) h(u,u + ω j 1 j+ 1 j 1 j ) ω l p j (y l ) = H λ/ωm (u + j m 1 l=1 ω l p j (y l ).,u,u + j+ 1 j ) + H λ/ω0 (u j 1 2,u + j 1 2,u j+ 1 2)

42 Therefore, if m p j (y l ) M at all Legendre Gauss-Lobatto quadrature points and a reduced CFL condition λ/ω m = λ/ω 0 λ 0 is satisfied, then m ū n+1 j M.

43 2. The second difficulty is: given m ū n+1 j M, j how to obtain an accurate reconstruction u n+1 (x) which satisfy m u n+1 (x) M, x. Previous work was mainly for relatively lower order schemes (second or third order accurate), and would typically require an evaluation of the extrema of u n+1 (x), which, for a piecewise polynomial of higher degree, is quite costly. We have figured out a way to obtain such reconstruction with a very simple scaling limiter, which only requires the evaluation of u n+1 (x) at certain pre-determined quadrature points and does not destroy accuracy:

44 We replace p j (x) by the limited polynomial p j (x) defined by p j (x) = θ j (p j (x) ū n j ) + ū n j where θ j = min { M ū n j M j ū n j, m ū n j m j ū n j }, 1, with M j = max x S j p j (x), m j = min x S j p j (x) where S j is the set of Legendre Gauss-Lobatto quadrature points of cell I j. Clearly, this limiter is just a simple scaling of the original polynomial around its average.

45 The following lemma, guaranteeing the maintenance of accuracy of this simple limiter, is proved in Zhang and Shu, JCP 2010a: Lemma: Assume ū n j [m,m] and p j (x) is an O( x p ) approximation, then p j (x) is also an O( x p ) approximation.

46 3. The third difficulty is how to generalize the algorithm and result to 2D (or higher dimensions). Algorithms which would require an evaluation of the extrema of the reconstructed polynomials u n+1 (x,y) would not be easy to generalize at all. Our algorithm uses only explicit Euler forward or SSP (also called TVD) Runge-Kutta or multi-step time discretizations, and a simple scaling limiter involving just evaluation of the polynomial at certain quadrature points, hence easily generalizes to 2D or higher dimensions on structured or unstructured meshes, with strict maximum-principle-satisfying property and provable high order accuracy.

47 The technique has been generalized to the following situations maintaining uniformly high order accuracy: 2D scalar conservation laws on rectangular or triangular meshes with strict maximum principle (Zhang and Shu, JCP 2010a; Zhang, Xia and Shu, JSC 2012). 2D incompressible equations in the vorticity-streamfunction formulation (with strict maximum principle for the vorticity), and 2D passive convections in a divergence-free velocity field, i.e. ω t + (uω) x + (vω) x = 0, with a given divergence-free velocity field (u, v), again with strict maximum principle (Zhang and Shu, JCP 2010a; Zhang, Xia and Shu, JSC 2012).

48 The framework of establishing maximum-principle-satisfying schemes for scalar equations can be generalized to hyperbolic systems to preserve the positivity of certain physical quantities, such as density and pressure of compressible gas dynamics. Positivity-preserving finite volume or DG schemes have been designed for: One and multi-dimensional compressible Euler equations maintaining positivity of density and pressure (Zhang and Shu, JCP 2010b; Zhang, Xia and Shu, JSC 2012). One and two-dimensional shallow water equations maintaining non-negativity of water height and well-balancedness for problems with dry areas (Xing, Zhang and Shu, Advances in Water Resources 2010; Xing and Shu, Advances in Water Resources 2011).

49 One and multi-dimensional compressible Euler equations with source terms (geometric, gravity, chemical reaction, radiative cooling) maintaining positivity of density and pressure (Zhang and Shu, JCP 2011). One and multi-dimensional compressible Euler equations with gaseous detonations maintaining positivity of density, pressure and reactant mass fraction, with a new and simplified implementation of the pressure limiter. DG computations are stable without using the TVB limiter (Wang, Zhang, Shu and Ning, JCP 2012). A minimum entropy principle satisfying high order scheme for gas dynamics equations (Zhang and Shu, Num Math 2012).

50 A simple WENO limiter for DG methods Finite volume WENO schemes involve rather complicated reconstruction procedure for unstructured meshes. However, they have the advantage of essentially non-oscillatory performance for solutions with strong shocks. Therefore, the WENO methodology is often used as limiters for discontinuous Galerkin (DG) methods (Qiu and Shu, JCP 2003; SISC 2005; Computers & Fluids 2005; Zhu, Qiu, Shu and Dumbser, JCP 2008; Zhu and Qiu, JCP 2012.).

51 In particular, the very recent work in Zhong and Shu, JCP 2012; Zhu, Zhong, Shu and Qiu, JCP submitted contains a very simple and effective WENO limiter: Use a troubled-cell indicator to identify troubled cells. Qiu and Shu, SISC If the cell I j is identified as a troubled cell, then the DG solution polynomial p j (x) is replaced by a convex combination of p j (x) with p j 1 (x) and p j+1 (x), the DG solution polynomials of the two immediate neighboring cells. Suitable adjustment is made (a constant is added to p j 1 (x) to obtain p j 1 (x), likewise for p j+1 (x)) to ensure that the new polynomial maintains the original cell average (conservation).

52 Details: p new j = w 1 p j 1 (x) + w 2 p j (x) + w 3 p j+1 (x) where w l = with the linear weights given by w l w 1 + w 2 + w 3 ; w l = γ 1 = γ 3 = , γ 2 = γ l (s l + ε) 2 and the s l are the standard smoothness indicators of WENO approximations.

53 Example 1: A Mach 3 wind tunnel with a step. The wind tunnel is 1 length unit wide and 3 length units long. The step is 0.2 length units high and is located 0.6 length units from the left-hand end of the tunnel. The problem is initialized by a right-going Mach 3 flow. Reflective boundary conditions are applied along the wall of the tunnel and inflow/outflow boundary conditions are applied at the entrance/exit.

54 Y X Figure 3: Forward step problem. Sample mesh. The mesh points on the boundary are uniformly distributed with cell length h = 1/20.

55 1 Y X Figure 4: Forward step problem. Third order (k = 2) RKDG with the WENO limiter. 30 equally spaced density contours from 0.32 to The mesh points on the boundary are uniformly distributed with cell length h = 1/100.

56 1 Y X Figure 5: Forward step problem. Third order (k = 2) RKDG with the WENO limiter. Troubled cells. Circles denote triangles which are identified as troubled cell subject to the WENO limiting. The mesh points on the boundary are uniformly distributed with cell length h = 1/100.

57 Example 2: We consider inviscid Euler transonic flow past a single NACA0012 airfoil configuration with Mach number M = 0.85, angle of attack α = 1. The computational domain is [ 15, 15] [ 15, 15].

58 Y/C X/C Figure 6: NACA0012 airfoil mesh zoom in.

59 Y/C 0 Y/C X/C X/C Figure 7: NACA0012 airfoil. Mach number. M = 0.85, angle of attack α = 1, 30 equally spaced mach number contours from to Left: second order (k = 1); right: third order (k = 2) RKDG with the WENO limiter.

60 Y/C 0 Y/C X/C X/C Figure 8: NACA0012 airfoil. Troubled cells. Circles denote triangles which are identified as troubled cells subject to the WENO limiting. M = 0.85, angle of attack α = 1. Left: second order (k = 1); right: third order (k = 2) RKDG with the WENO limiter.

61 Concluding remarks Finite volume schemes can maintain conservation and achieve high order accuracy both for structured and unstructured meshes. WENO reconstruction in finite volume schemes can provide high order accuracy and essentially non-oscillatory shock transition. Bound-preserving limiter based on a simple scaling limiter can guarantee maximum-principle for scalar equations and passive-convection in a divergence-free velocity field, positivity for density and pressure for Euler equations, and positivity for water height for shallow water equations, among many others applications, without compromising high order accuracy.

62 A simple WENO limiter can be designed for discontinuous Galerkin method to handle strong shocks without affecting high order accuracy.

63 The End THANK YOU!

On the order of accuracy and numerical performance of two classes of finite volume WENO schemes

On the order of accuracy and numerical performance of two classes of finite volume WENO schemes On the order of accuracy and numerical performance of two classes of finite volume WENO schemes Rui Zhang, Mengping Zhang and Chi-Wang Shu November 29, 29 Abstract In this paper we consider two commonly

More information

Runge-Kutta discontinuous Galerkin method using a new type of WENO limiters on unstructured mesh 1

Runge-Kutta discontinuous Galerkin method using a new type of WENO limiters on unstructured mesh 1 Runge-Kutta discontinuous Galerkin method using a new type of WENO limiters on unstructured mesh Jun Zhu, inghui Zhong 3, Chi-Wang Shu 4 and Jianxian Qiu 5 Abstract In this paper we generalize a new type

More information

High Order Weighted Essentially Non-Oscillatory Schemes for Convection. Dominated Problems. Chi-Wang Shu 1

High Order Weighted Essentially Non-Oscillatory Schemes for Convection. Dominated Problems. Chi-Wang Shu 1 High Order Weighted Essentially Non-Oscillatory Schemes for Convection Dominated Problems Chi-Wang Shu Division of Applied Mathematics, Brown University, Providence, Rhode Island 09 ABSTRACT High order

More information

Third Order WENO Scheme on Three Dimensional Tetrahedral Meshes

Third Order WENO Scheme on Three Dimensional Tetrahedral Meshes COMMUNICATIONS IN COMPUTATIONAL PHYSICS Vol. 5, No. 2-4, pp. 86-848 Commun. Comput. Phys. February 29 Third Order WENO Scheme on Three Dimensional Tetrahedral Meshes Yong-Tao Zhang 1, and Chi-Wang Shu

More information

The WENO Method in the Context of Earlier Methods To approximate, in a physically correct way, [3] the solution to a conservation law of the form u t

The WENO Method in the Context of Earlier Methods To approximate, in a physically correct way, [3] the solution to a conservation law of the form u t An implicit WENO scheme for steady-state computation of scalar hyperbolic equations Sigal Gottlieb Mathematics Department University of Massachusetts at Dartmouth 85 Old Westport Road North Dartmouth,

More information

Runge Kutta discontinuous Galerkin method using WENO limiters II: unstructured meshes

Runge Kutta discontinuous Galerkin method using WENO limiters II: unstructured meshes Runge Kutta discontinuous Galerkin method using WENO limiters II: unstructured meshes Jun Zhu, Jianxian Qiu,Chi-WangShu 3 and Michael Dumbser 4 Abstract In [], Qiu and Shu investigated using weighted essentially

More information

On the Order of Accuracy and Numerical Performance of Two Classes of Finite Volume WENO Schemes

On the Order of Accuracy and Numerical Performance of Two Classes of Finite Volume WENO Schemes Commun. Comput. Phys. doi: 8/cicp.99.84s Vol. 9, No. 3, pp. 87-87 March On the Order of Accuracy and Numerical Performance of Two Classes of Finite Volume WENO Schemes Rui Zhang, Mengping Zhang and Chi-Wang

More information

A New Trouble-Cell Indicator for Discontinuous Galerkin Methods for. Hyperbolic Conservation Laws ABSTRACT

A New Trouble-Cell Indicator for Discontinuous Galerkin Methods for. Hyperbolic Conservation Laws ABSTRACT A New Trouble-Cell Indicator for Discontinuous Galerkin Methods for Hyperbolic Conservation Laws Guosheng Fu and Chi-Wang Shu ABSTRACT We introduce a new troubled-cell indicator for the discontinuous Galerkin

More information

Hierarchical Reconstruction for Spectral Volume Method on Unstructured Grids

Hierarchical Reconstruction for Spectral Volume Method on Unstructured Grids Hierarchical Reconstruction for Spectral Volume Method on Unstructured Grids Zhiliang Xu, Yingjie Liu and Chi-Wang Shu April 4, 2009 Abstract The hierarchical reconstruction (HR) [, 24] is applied to a

More information

Numerical study on the convergence to steady state solutions of a new class of finite volume WENO schemes: triangular meshes

Numerical study on the convergence to steady state solutions of a new class of finite volume WENO schemes: triangular meshes Numerical study on the convergence to steady state solutions of a new class of finite volume WENO schemes: triangular meshes Jun Zhu and Chi-Wang Shu Abstract In this paper we continue our research on

More information

On the Construction, Comparison, and Local Characteristic Decomposition for High-Order Central WENO Schemes

On the Construction, Comparison, and Local Characteristic Decomposition for High-Order Central WENO Schemes Journal of Computational Physics 8, 87 09 (00) doi:0.006/jcph.00.79 On the Construction, Comparison, and Local Characteristic Decomposition for High-Order Central WENO Schemes Jianxian Qiu, and Chi-Wang

More information

On the convergence to steady state solutions of a new class of high order WENO schemes

On the convergence to steady state solutions of a new class of high order WENO schemes On the convergence to steady state solutions of a new class of high order WENO schemes Jun Zhu and Chi-Wang Shu Abstract A new class of high order weighted essentially non-oscillatory (WENO) schemes [J.

More information

Observations on the fifth-order WENO method with non-uniform meshes

Observations on the fifth-order WENO method with non-uniform meshes Observations on the fifth-order WENO method with non-uniform meshes Rong Wang, a, Hui Feng, b, Raymond J. Spiteri a,, a Department of Computer Science, University of Saskatchewan, Saskatoon, SK, S7N 5C9,

More information

High Order Schemes for CFD: A Review. Juan Cheng 1. Institute of Applied Physics and Computational Mathematics, Beijing , China.

High Order Schemes for CFD: A Review. Juan Cheng 1. Institute of Applied Physics and Computational Mathematics, Beijing , China. High Order Schemes for CFD: A Review Juan Cheng 1 Institute of Applied Physics and Computational Mathematics, Beijing 100088, China and Chi-Wang Shu 2 Division of Applied Mathematics, Brown University,

More information

High Order Fixed-Point Sweeping WENO Methods for Steady State of Hyperbolic Conservation Laws and Its Convergence Study

High Order Fixed-Point Sweeping WENO Methods for Steady State of Hyperbolic Conservation Laws and Its Convergence Study Commun. Comput. Phys. doi:.48/cicp.375.6a Vol., No. 4, pp. 835-869 October 6 High Order Fixed-Point Sweeping WENO Methods for Steady State of Hyperbolic Conservation Laws and Its Convergence Study Liang

More information

On the high order FV schemes for compressible flows

On the high order FV schemes for compressible flows Applied and Computational Mechanics 1 (2007) 453-460 On the high order FV schemes for compressible flows J. Fürst a, a Faculty of Mechanical Engineering, CTU in Prague, Karlovo nám. 13, 121 35 Praha, Czech

More information

Mid-Year Report. Discontinuous Galerkin Euler Equation Solver. Friday, December 14, Andrey Andreyev. Advisor: Dr.

Mid-Year Report. Discontinuous Galerkin Euler Equation Solver. Friday, December 14, Andrey Andreyev. Advisor: Dr. Mid-Year Report Discontinuous Galerkin Euler Equation Solver Friday, December 14, 2012 Andrey Andreyev Advisor: Dr. James Baeder Abstract: The focus of this effort is to produce a two dimensional inviscid,

More information

Final Report. Discontinuous Galerkin Compressible Euler Equation Solver. May 14, Andrey Andreyev. Adviser: Dr. James Baeder

Final Report. Discontinuous Galerkin Compressible Euler Equation Solver. May 14, Andrey Andreyev. Adviser: Dr. James Baeder Final Report Discontinuous Galerkin Compressible Euler Equation Solver May 14, 2013 Andrey Andreyev Adviser: Dr. James Baeder Abstract: In this work a Discontinuous Galerkin Method is developed for compressible

More information

NON-OSCILLATORY HIERARCHICAL RECONSTRUCTION FOR CENTRAL AND FINITE VOLUME SCHEMES

NON-OSCILLATORY HIERARCHICAL RECONSTRUCTION FOR CENTRAL AND FINITE VOLUME SCHEMES NON-OSCILLATORY HIERARCHICAL RECONSTRUCTION FOR CENTRAL AND FINITE VOLUME SCHEMES YINGJIE LIU, CHI-WANG SHU, EITAN TADMOR, AND MENGPING ZHANG Abstract. This is the continuation of the paper central discontinuous

More information

A new type of multi-resolution WENO schemes with increasingly higher order of accuracy

A new type of multi-resolution WENO schemes with increasingly higher order of accuracy A new type of multi-resolution WENO schemes with increasingly higher order of accuracy Jun Zhu and Chi-Wang Shu Abstract In this paper, a new type of high-order finite difference and finite volume multi-resolution

More information

A robust reconstruction for unstructured WENO schemes 1

A robust reconstruction for unstructured WENO schemes 1 A robust reconstruction for unstructured WENO schemes 1 Yuan Liu 2 and Yong-Tao Zhang 3 Corresponding author. Tel.: +1 574 631 6079. E-mail: yzhang10@nd.edu Abstract The weighted essentially non-oscillatory

More information

CS205b/CME306. Lecture 9

CS205b/CME306. Lecture 9 CS205b/CME306 Lecture 9 1 Convection Supplementary Reading: Osher and Fedkiw, Sections 3.3 and 3.5; Leveque, Sections 6.7, 8.3, 10.2, 10.4. For a reference on Newton polynomial interpolation via divided

More information

Non-Oscillatory Hierarchical Reconstruction for Central and Finite Volume Schemes

Non-Oscillatory Hierarchical Reconstruction for Central and Finite Volume Schemes COMMUNICATIONS IN COMPUTATIONAL PHYSICS Vol., No., pp. 933-963 Commun. Comput. Phys. October 7 Non-Oscillatory Hierarchical Reconstruction for Central and Finite Volume Schemes Yingjie Liu,, Chi-Wang Shu,

More information

Debojyoti Ghosh. Adviser: Dr. James Baeder Alfred Gessow Rotorcraft Center Department of Aerospace Engineering

Debojyoti Ghosh. Adviser: Dr. James Baeder Alfred Gessow Rotorcraft Center Department of Aerospace Engineering Debojyoti Ghosh Adviser: Dr. James Baeder Alfred Gessow Rotorcraft Center Department of Aerospace Engineering To study the Dynamic Stalling of rotor blade cross-sections Unsteady Aerodynamics: Time varying

More information

Conservative high order semi-lagrangian finite difference WENO methods for advection in incompressible flow. Abstract

Conservative high order semi-lagrangian finite difference WENO methods for advection in incompressible flow. Abstract Conservative high order semi-lagrangian finite difference WENO methods for advection in incompressible flow Jing-Mei Qiu 1 and Chi-Wang Shu Abstract In this paper, we propose a semi-lagrangian finite difference

More information

A robust WENO type finite volume solver for steady Euler equations on unstructured grids

A robust WENO type finite volume solver for steady Euler equations on unstructured grids A robust WENO type finite volume solver for steady Euler equations on unstructured grids Guanghui Hu,, Ruo Li 2, Tao Tang Department of Mathematics, Hong Kong Baptist University, Kowloon Tong, Hong Kong.

More information

A Technique of Treating Negative Weights in WENO Schemes

A Technique of Treating Negative Weights in WENO Schemes NASA/CR--63 ICASE Report No. -49 A Technique of Treating Negative Weights in WENO Schemes Jing Shi, Changqing Hu, and Chi-Wang Shu Brown University, Providence, Rhode Island ICASE NASA Langley Research

More information

Numerical Methods for Hyperbolic and Kinetic Equations

Numerical Methods for Hyperbolic and Kinetic Equations Numerical Methods for Hyperbolic and Kinetic Equations Organizer: G. Puppo Phenomena characterized by conservation (or balance laws) of physical quantities are modelled by hyperbolic and kinetic equations.

More information

A new class of central compact schemes with spectral-like resolution II: Hybrid weighted nonlinear schemes. Abstract

A new class of central compact schemes with spectral-like resolution II: Hybrid weighted nonlinear schemes. Abstract A new class of central compact schemes with spectral-like resolution II: Hybrid weighted nonlinear schemes Xuliang Liu 1, Shuhai Zhang, Hanxin Zhang 3 and Chi-Wang Shu 4 Abstract In this paper, we develop

More information

A new multidimensional-type reconstruction and limiting procedure for unstructured (cell-centered) FVs solving hyperbolic conservation laws

A new multidimensional-type reconstruction and limiting procedure for unstructured (cell-centered) FVs solving hyperbolic conservation laws HYP 2012, Padova A new multidimensional-type reconstruction and limiting procedure for unstructured (cell-centered) FVs solving hyperbolic conservation laws Argiris I. Delis & Ioannis K. Nikolos (TUC)

More information

This is an author-deposited version published in: Eprints ID: 4362

This is an author-deposited version published in:   Eprints ID: 4362 This is an author-deposited version published in: http://oatao.univ-toulouse.fr/ Eprints ID: 4362 To cite this document: CHIKHAOUI Oussama, GRESSIER Jérémie, GRONDIN Gilles. Assessment of the Spectral

More information

A-posteriori Diffusion Analysis of Numerical Schemes in Wavenumber Domain

A-posteriori Diffusion Analysis of Numerical Schemes in Wavenumber Domain 2th Annual CFD Symposium, August 9-1, 218, Bangalore A-posteriori Diffusion Analysis of Numerical Schemes in Wavenumber Domain S. M. Joshi & A. Chatterjee Department of Aerospace Engineering Indian Institute

More information

Nonoscillatory Central Schemes on Unstructured Triangulations for Hyperbolic Systems of Conservation Laws

Nonoscillatory Central Schemes on Unstructured Triangulations for Hyperbolic Systems of Conservation Laws Nonoscillatory Central Schemes on Unstructured Triangulations for Hyperbolic Systems of Conservation Laws Ivan Christov Bojan Popov Department of Mathematics, Texas A&M University, College Station, Texas

More information

Nonoscillatory Central Schemes on Unstructured Triangular Grids for Hyperbolic Systems of Conservation Laws

Nonoscillatory Central Schemes on Unstructured Triangular Grids for Hyperbolic Systems of Conservation Laws Nonoscillatory Central Schemes on Unstructured Triangular Grids for Hyperbolic Systems of Conservation Laws Ivan Christov 1,* Bojan Popov 1 Peter Popov 2 1 Department of Mathematics, 2 Institute for Scientific

More information

Parallel Adaptive Tsunami Modelling with Triangular Discontinuous Galerkin Schemes

Parallel Adaptive Tsunami Modelling with Triangular Discontinuous Galerkin Schemes Parallel Adaptive Tsunami Modelling with Triangular Discontinuous Galerkin Schemes Stefan Vater 1 Kaveh Rahnema 2 Jörn Behrens 1 Michael Bader 2 1 Universität Hamburg 2014 PDES Workshop 2 TU München Partial

More information

A Semi-Lagrangian Discontinuous Galerkin (SLDG) Conservative Transport Scheme on the Cubed-Sphere

A Semi-Lagrangian Discontinuous Galerkin (SLDG) Conservative Transport Scheme on the Cubed-Sphere A Semi-Lagrangian Discontinuous Galerkin (SLDG) Conservative Transport Scheme on the Cubed-Sphere Ram Nair Computational and Information Systems Laboratory (CISL) National Center for Atmospheric Research

More information

A Central Compact-Reconstruction WENO Method for Hyperbolic Conservation Laws

A Central Compact-Reconstruction WENO Method for Hyperbolic Conservation Laws AIAA SciTech Forum 8 January 08, Kissimmee, Florida 08 AIAA Aerospace Sciences Meeting 0.54/6.08-0067 A Central Compact-Reconstruction WENO Method for Hyperbolic Conservation Laws Kilian Cooley and Dr.

More information

Development of a Maxwell Equation Solver for Application to Two Fluid Plasma Models. C. Aberle, A. Hakim, and U. Shumlak

Development of a Maxwell Equation Solver for Application to Two Fluid Plasma Models. C. Aberle, A. Hakim, and U. Shumlak Development of a Maxwell Equation Solver for Application to Two Fluid Plasma Models C. Aberle, A. Hakim, and U. Shumlak Aerospace and Astronautics University of Washington, Seattle American Physical Society

More information

A Novel Multi-Dimensional Limiter for High-Order Finite Volume Methods on Unstructured Grids

A Novel Multi-Dimensional Limiter for High-Order Finite Volume Methods on Unstructured Grids Commun. Comput. Phys. doi:.428/cicp.oa-27-39 Vol. xx, No. x, pp. -28 xxx 2x A Novel Multi-Dimensional Limiter for High-Order Finite Volume Methods on Unstructured Grids Yilang Liu, Weiwei Zhang, and Chunna

More information

An Introduction to Viscosity Solutions: theory, numerics and applications

An Introduction to Viscosity Solutions: theory, numerics and applications An Introduction to Viscosity Solutions: theory, numerics and applications M. Falcone Dipartimento di Matematica OPTPDE-BCAM Summer School Challenges in Applied Control and Optimal Design July 4-8, 2011,

More information

High order WENO and DG methods for time-dependent convection-dominated. PDEs: a brief survey of several recent developments 1.

High order WENO and DG methods for time-dependent convection-dominated. PDEs: a brief survey of several recent developments 1. High order WENO and DG methods for time-dependent convection-dominated PDEs: a brief survey of several recent developments 1 Chi-Wang Shu Division of Applied Mathematics Brown University Providence, RI

More information

On the thickness of discontinuities computed by THINC and RK schemes

On the thickness of discontinuities computed by THINC and RK schemes The 9th Computational Fluid Dynamics Symposium B7- On the thickness of discontinuities computed by THINC and RK schemes Taku Nonomura, ISAS, JAXA, Sagamihara, Kanagawa, Japan, E-mail:nonomura@flab.isas.jaxa.jp

More information

High Order Finite Difference and Finite Volume WENO Schemes and Discontinuous Galerkin Methods for CFD

High Order Finite Difference and Finite Volume WENO Schemes and Discontinuous Galerkin Methods for CFD NASA/CR-200-20865 ICASE Report No. 200- High Order Finite Difference and Finite Volume WENO Schemes and Discontinuous Galerkin Methods for CFD Chi-Wang Shu Brown University, Providence, Rhode Island ICASE

More information

Defense Technical Information Center Compilation Part Notice

Defense Technical Information Center Compilation Part Notice UNCLASSIFIED Defense Technical Information Center Compilation Part Notice ADP013629 TITLE: Recent Development and Applications of WENO Schemes DISTRIBUTION: Approved for public release, distribution unlimited

More information

A high order stable conservative method for solving hyperbolic conservation. laws on arbitrarily distributed point clouds.

A high order stable conservative method for solving hyperbolic conservation. laws on arbitrarily distributed point clouds. A high order stable conservative method for solving hyperbolic conservation laws on arbitrarily distributed point clouds Jie Du and Chi-Wang Shu Abstract In this paper, we aim to solve one and two dimensional

More information

Weighted Essentially Non-oscillatory Schemes on Triangular Meshes 1

Weighted Essentially Non-oscillatory Schemes on Triangular Meshes 1 Journal of Computational Physics 150, 97 127 (1999) Article ID jcph.1998.6165, available online at http://www.idealibrary.com on Weighted Essentially Non-oscillatory Schemes on Triangular Meshes 1 Changqing

More information

High-Order CENO Reconstruction Scheme For Three-Dimensional Unstructured Mesh

High-Order CENO Reconstruction Scheme For Three-Dimensional Unstructured Mesh High-Order CENO Reconstruction Scheme For Three-Dimensional Unstructured Mesh by Al-Amin Aziz A thesis submitted in conformity with the requirements for the degree of Masters of Applied Science Graduate

More information

A third order conservative Lagrangian type scheme on curvilinear meshes for the compressible Euler equations

A third order conservative Lagrangian type scheme on curvilinear meshes for the compressible Euler equations A third order conservative Lagrangian type scheme on curvilinear meshes for the compressible Euler equations Juan Cheng and Chi-Wang Shu 2 Abstract Based on the high order essentially non-oscillatory (ENO)

More information

A high order moving boundary treatment for compressible inviscid flows 1. Abstract

A high order moving boundary treatment for compressible inviscid flows 1. Abstract A high order moving boundary treatment for compressible inviscid flows Sirui Tan and Chi-Wang Shu Abstract We develop a high order numerical boundary condition for compressible inviscid flows involving

More information

Central-Upwind Schemes on Triangular Grids for Hyperbolic Systems of Conservation Laws

Central-Upwind Schemes on Triangular Grids for Hyperbolic Systems of Conservation Laws Central-Upwind Schemes on Triangular Grids for Hyperbolic Systems of Conservation Laws Alexander Kurganov, 1 Guergana Petrova 2 1 Department of Mathematics, Tulane University, New Orleans, Louisiana 70118

More information

Computational Astrophysics 5 Higher-order and AMR schemes

Computational Astrophysics 5 Higher-order and AMR schemes Computational Astrophysics 5 Higher-order and AMR schemes Oscar Agertz Outline - The Godunov Method - Second-order scheme with MUSCL - Slope limiters and TVD schemes - Characteristics tracing and 2D slopes.

More information

WENO scheme with subcell resolution for computing nonconservative Euler. equations with applications to one-dimensional compressible two-medium flows

WENO scheme with subcell resolution for computing nonconservative Euler. equations with applications to one-dimensional compressible two-medium flows WENO scheme with subcell resolution for computing nonconservative Euler equations with applications to one-dimensional compressible two-medium flows Tao Xiong, Chi-Wang Shu and Mengping Zhang 3 Abstract

More information

Edge Detection Free Postprocessing for Pseudospectral Approximations

Edge Detection Free Postprocessing for Pseudospectral Approximations Edge Detection Free Postprocessing for Pseudospectral Approximations Scott A. Sarra March 4, 29 Abstract Pseudospectral Methods based on global polynomial approximation yield exponential accuracy when

More information

Weno Scheme for Transport Equation on Unstructured Grids with a DDFV Approach

Weno Scheme for Transport Equation on Unstructured Grids with a DDFV Approach Weno Scheme for Transport Equation on Unstructured Grids with a DDFV Approach Florence Hubert and Rémi Tesson Abstract In this paper we develop a DDFV approach for WENO scheme on unstructred grids for

More information

Local-structure-preserving discontinuous Galerkin methods with Lax-Wendroff type time discretizations for Hamilton-Jacobi equations

Local-structure-preserving discontinuous Galerkin methods with Lax-Wendroff type time discretizations for Hamilton-Jacobi equations Local-structure-preserving discontinuous Galerkin methods with Lax-Wendroff type time discretizations for Hamilton-Jacobi equations Wei Guo, Fengyan Li and Jianxian Qiu 3 Abstract: In this paper, a family

More information

Application of ENO technique to semi-lagrangian interpolations. RC LACE stay report Scientific supervisors: Petra Smolíková and Ján Mašek

Application of ENO technique to semi-lagrangian interpolations. RC LACE stay report Scientific supervisors: Petra Smolíková and Ján Mašek Application of ENO technique to semi-lagrangian interpolations RC LACE stay report Scientific supervisors: Petra Smolíková and Ján Mašek Alexandra Crăciun NMA, Romania CHMI, Prague 09.05-03.06.2016 1 Introduction

More information

Semi-Conservative Schemes for Conservation Laws

Semi-Conservative Schemes for Conservation Laws Semi-Conservative Schemes for Conservation Laws Rosa Maria Pidatella 1 Gabriella Puppo, 2 Giovanni Russo, 1 Pietro Santagati 1 1 Università degli Studi di Catania, Catania, Italy 2 Università dell Insubria,

More information

Homework 4A Due November 7th IN CLASS

Homework 4A Due November 7th IN CLASS CS207, Fall 2014 Systems Development for Computational Science Cris Cecka, Ray Jones Homework 4A Due November 7th IN CLASS Previously, we ve developed a quite robust Graph class to let us use Node and

More information

Spectral(Finite) Volume Method for Conservation Laws on Unstructured Grids

Spectral(Finite) Volume Method for Conservation Laws on Unstructured Grids Journal of Computational Physics 179, 665 697 (2002) doi:10.1006/jcph.2002.7082 Spectral(Finite) Volume Method for Conservation Laws on Unstructured Grids II. Extension to Two-Dimensional Scalar Equation

More information

Numerical Methods for (Time-Dependent) HJ PDEs

Numerical Methods for (Time-Dependent) HJ PDEs Numerical Methods for (Time-Dependent) HJ PDEs Ian Mitchell Department of Computer Science The University of British Columbia research supported by National Science and Engineering Research Council of

More information

TVD and ENO Schemes for Multidimensional Steady and Unsteady Flows A Comparative Analysis

TVD and ENO Schemes for Multidimensional Steady and Unsteady Flows A Comparative Analysis TVD and ENO Schemes for Multidimensional Steady and Unsteady Flows A Comparative Analysis Philippe Angot IRPHE équipe MNM, UMR CNRS 38, Universit Aix-Marseille I. & II., 2, Av. Général Leclerc, 30 03 Marseille,

More information

A Review on the Numerical Solution of the 1D Euler Equations. Hudson, Justin. MIMS EPrint:

A Review on the Numerical Solution of the 1D Euler Equations. Hudson, Justin. MIMS EPrint: A Review on the Numerical Solution of the D Euler Equations Hudson, Justin 6 MIMS EPrint: 6.9 Manchester Institute for Mathematical Sciences School of Mathematics The University of Manchester Reports available

More information

Partition Design and Optimization for High-Order Spectral Volume Schemes on Tetrahedral Grids

Partition Design and Optimization for High-Order Spectral Volume Schemes on Tetrahedral Grids 48th AIAA Aerospace Sciences Meeting Including the New Horizons Forum and Aerospace Exposition 4-7 January 200, Orlando, Florida AIAA 200-720 Partition Design and Optimization for High-Order Spectral Volume

More information

A Spectral Difference Method for the Euler and Navier-Stokes Equations on Unstructured Meshes

A Spectral Difference Method for the Euler and Navier-Stokes Equations on Unstructured Meshes 44th AIAA Aerospace Sciences Meeting and Exhibit 9-12 January 2006, Reno, Nevada AIAA 2006-304 A Spectral Difference Method for the Euler and Navier-Stokes Equations on Unstructured Meshes Georg May and

More information

A Toolbox of Level Set Methods

A Toolbox of Level Set Methods A Toolbox of Level Set Methods Ian Mitchell Department of Computer Science University of British Columbia http://www.cs.ubc.ca/~mitchell mitchell@cs.ubc.ca research supported by the Natural Science and

More information

A CONSERVATIVE FRONT TRACKING ALGORITHM

A CONSERVATIVE FRONT TRACKING ALGORITHM A CONSERVATIVE FRONT TRACKING ALGORITHM Vinh Tan Nguyen, Khoo Boo Cheong and Jaime Peraire Singapore-MIT Alliance Department of Mechanical Engineering, National University of Singapore Department of Aeronautics

More information

A Bi Hyperbolic Finite Volume Method on Quadrilateral Meshes

A Bi Hyperbolic Finite Volume Method on Quadrilateral Meshes A Bi Hyperbolic Finite Volume Method on Quadrilateral Meshes H. Joachim Schroll and Fredrik Svensson July 6, 24 preprint Lund University 24 Abstract A non oscillatory, high resolution reconstruction method

More information

Central Runge-Kutta Schemes for Conservation Laws

Central Runge-Kutta Schemes for Conservation Laws Central Runge-Kutta Schemes for Conservation Laws Lorenzo Pareschi Gabriella Puppo Giovanni Russo Abstract In this work, a new formulation for central schemes based on staggered grids is proposed. It is

More information

weighted minimal surface model for surface reconstruction from scattered points, curves, and/or pieces of surfaces.

weighted minimal surface model for surface reconstruction from scattered points, curves, and/or pieces of surfaces. weighted minimal surface model for surface reconstruction from scattered points, curves, and/or pieces of surfaces. joint work with (S. Osher, R. Fedkiw and M. Kang) Desired properties for surface reconstruction:

More information

BACK AND FORTH ERROR COMPENSATION AND CORRECTION METHODS FOR REMOVING ERRORS INDUCED BY UNEVEN GRADIENTS OF THE LEVEL SET FUNCTION

BACK AND FORTH ERROR COMPENSATION AND CORRECTION METHODS FOR REMOVING ERRORS INDUCED BY UNEVEN GRADIENTS OF THE LEVEL SET FUNCTION BACK AND FORTH ERROR COMPENSATION AND CORRECTION METHODS FOR REMOVING ERRORS INDUCED BY UNEVEN GRADIENTS OF THE LEVEL SET FUNCTION TODD F. DUPONT AND YINGJIE LIU Abstract. We propose a method that significantly

More information

Discontinuous Fluctuation Distribution

Discontinuous Fluctuation Distribution Discontinuous Fluctuation Distribution Matthew Hubbard School of Computing, University of Leeds, Leeds, LS2 9JT, UK. Abstract This paper describes a new numerical scheme for the approximation of steady

More information

Extension of the spectral volume method to high-order boundary representation

Extension of the spectral volume method to high-order boundary representation Journal of Computational Physics 211 (2006) 154 178 www.elsevier.com/locate/jcp Extension of the spectral volume method to high-order boundary representation Z.J. Wang a, *, Yen Liu b,1 a Department of

More information

Limiters for Unstructured Higher-Order Accurate Solutions of the Euler Equations

Limiters for Unstructured Higher-Order Accurate Solutions of the Euler Equations Limiters for Unstructured Higher-Order Accurate Solutions of the Euler Equations Krzysztof Michalak and Carl Ollivier-Gooch Advanced Numerical Simulation Laboratory University of British Columbia Higher-order

More information

APPROXIMATING PDE s IN L 1

APPROXIMATING PDE s IN L 1 APPROXIMATING PDE s IN L 1 Veselin Dobrev Jean-Luc Guermond Bojan Popov Department of Mathematics Texas A&M University NONLINEAR APPROXIMATION TECHNIQUES USING L 1 Texas A&M May 16-18, 2008 Outline 1 Outline

More information

NIA CFD Seminar, October 4, 2011 Hyperbolic Seminar, NASA Langley, October 17, 2011

NIA CFD Seminar, October 4, 2011 Hyperbolic Seminar, NASA Langley, October 17, 2011 NIA CFD Seminar, October 4, 2011 Hyperbolic Seminar, NASA Langley, October 17, 2011 First-Order Hyperbolic System Method If you have a CFD book for hyperbolic problems, you have a CFD book for all problems.

More information

Numerical Analysis of Shock Tube Problem by using TVD and ACM Schemes

Numerical Analysis of Shock Tube Problem by using TVD and ACM Schemes Numerical Analysis of Shock Tube Problem by using TVD and Schemes Dr. Mukkarum Husain, Dr. M. Nauman Qureshi, Syed Zaid Hasany IST Karachi, Email: mrmukkarum@yahoo.com Abstract Computational Fluid Dynamics

More information

Unstructured Mesh Generation for Implicit Moving Geometries and Level Set Applications

Unstructured Mesh Generation for Implicit Moving Geometries and Level Set Applications Unstructured Mesh Generation for Implicit Moving Geometries and Level Set Applications Per-Olof Persson (persson@mit.edu) Department of Mathematics Massachusetts Institute of Technology http://www.mit.edu/

More information

AN ADAPTIVE MESH REDISTRIBUTION ALGORITHM FOR CONVECTION-DOMINATED PROBLEMS. Zheng-Ru Zhang and Tao Tang

AN ADAPTIVE MESH REDISTRIBUTION ALGORITHM FOR CONVECTION-DOMINATED PROBLEMS. Zheng-Ru Zhang and Tao Tang COMMUNICATIONS ON Website: http://aimsciences.org PURE AND APPLIED ANALYSIS Volume, Number 3, september pp. 34 357 AN ADAPTIVE MESH REDISTRIBUTION ALGORITHM FOR CONVECTION-DOMINATED PROBLEMS Zheng-Ru Zhang

More information

A higher-order finite volume method with collocated grid arrangement for incompressible flows

A higher-order finite volume method with collocated grid arrangement for incompressible flows Computational Methods and Experimental Measurements XVII 109 A higher-order finite volume method with collocated grid arrangement for incompressible flows L. Ramirez 1, X. Nogueira 1, S. Khelladi 2, J.

More information

Efficient implementation of WENO Scheme on structured meshes

Efficient implementation of WENO Scheme on structured meshes Efficient implementation of WENO Scheme on structured meshes o Xinrong Su, Dept. Aero. Enging, Tohoku Univ, Sendai, E-mail: su@ad.mech.tohoku.ac.jp Daisuke Sasaki, Dept. Aero. Enging, Tohoku Univ, Sendai,

More information

GENUINELY MULTIDIMENSIONAL NON-DISSIPATIVE FINITE VOLUME SCHEMES FOR TRANSPORT

GENUINELY MULTIDIMENSIONAL NON-DISSIPATIVE FINITE VOLUME SCHEMES FOR TRANSPORT GENUINELY MULTIDIMENSIONAL NON-DISSIPATIVE FINITE VOLUME SCHEMES FOR TRANSPORT BRUNO DESPRÉS, FRÉDÉRIC LAGOUTIÈRE Commissariat à l Énergie Atomique, Bruyères-le-Châtel. despres@cmpax.polytechnique.fr e-mail:

More information

A HYBRID SEMI-PRIMITIVE SHOCK CAPTURING SCHEME FOR CONSERVATION LAWS

A HYBRID SEMI-PRIMITIVE SHOCK CAPTURING SCHEME FOR CONSERVATION LAWS Eighth Mississippi State - UAB Conference on Differential Equations and Computational Simulations. Electronic Journal of Differential Equations, Conf. 9 (), pp. 65 73. ISSN: 7-669. URL: http://ejde.math.tstate.edu

More information

High-Order Numerical Algorithms for Steady and Unsteady Simulation of Viscous Compressible Flow with Shocks (Grant FA )

High-Order Numerical Algorithms for Steady and Unsteady Simulation of Viscous Compressible Flow with Shocks (Grant FA ) High-Order Numerical Algorithms for Steady and Unsteady Simulation of Viscous Compressible Flow with Shocks (Grant FA9550-07-0195) Sachin Premasuthan, Kui Ou, Patrice Castonguay, Lala Li, Yves Allaneau,

More information

Modeling External Compressible Flow

Modeling External Compressible Flow Tutorial 3. Modeling External Compressible Flow Introduction The purpose of this tutorial is to compute the turbulent flow past a transonic airfoil at a nonzero angle of attack. You will use the Spalart-Allmaras

More information

Positivity-Preserving Runge-Kutta Discontinuous Galerkin Method on Adaptive Cartesian Grid for Strong Moving Shock

Positivity-Preserving Runge-Kutta Discontinuous Galerkin Method on Adaptive Cartesian Grid for Strong Moving Shock Numer. Math. Theor. Meth. Appl. Vol. 9, No., pp. 7- doi:./nmtma.5.m February Positivity-Preserving Runge-Kutta Discontinuous Galerkin Method on Adaptive Cartesian Grid for Strong Moving Shock Jianming

More information

A DETAILED COMPARISON OF WENO AND SFV HIGH-ORDER METHODS FOR INVISCID AERODYNAMIC APPLICATIONS

A DETAILED COMPARISON OF WENO AND SFV HIGH-ORDER METHODS FOR INVISCID AERODYNAMIC APPLICATIONS Blucher Mechanical Engineering Proceedings May 2014, vol. 1, num. 1 www.proceedings.blucher.com.br/evento/10wccm A DETAILED COMPARISON OF WENO AND SFV HIGH-ORDER METHODS FOR INVISCID AERODYNAMIC APPLICATIONS

More information

PERFORMANCE ANALYSIS OF DATA STRUCTURES FOR UNSTRUCTURED GRID SOLUTIONS ON FINITE VOLUME SIMULATIONS

PERFORMANCE ANALYSIS OF DATA STRUCTURES FOR UNSTRUCTURED GRID SOLUTIONS ON FINITE VOLUME SIMULATIONS 22nd International Congress of Mechanical Engineering (COBEM 2013) November 3-7, 2013, Ribeirão Preto, SP, Brazil Copyright c 2013 by ABCM PERFORMANCE ANALYSIS OF DATA STRUCTURES FOR UNSTRUCTURED GRID

More information

MESHLESS SOLUTION OF INCOMPRESSIBLE FLOW OVER BACKWARD-FACING STEP

MESHLESS SOLUTION OF INCOMPRESSIBLE FLOW OVER BACKWARD-FACING STEP Vol. 12, Issue 1/2016, 63-68 DOI: 10.1515/cee-2016-0009 MESHLESS SOLUTION OF INCOMPRESSIBLE FLOW OVER BACKWARD-FACING STEP Juraj MUŽÍK 1,* 1 Department of Geotechnics, Faculty of Civil Engineering, University

More information

Study on the Numerical Accuracy for the CFD

Study on the Numerical Accuracy for the CFD Study on the Numerical Accuracy for the CFD T.Yamanashi 1, H.Uchida, and M.Morita 1 Department of Mathematics, Master s Research Course of Faculty of Science, Tokyo University of Science,1-3 Kagurazaka,

More information

New Very High-Order Upwind Multilayer Compact Schemes with Spectral-Like Resolution for Flow Simulations

New Very High-Order Upwind Multilayer Compact Schemes with Spectral-Like Resolution for Flow Simulations New Very High-Order Upwind Multilayer Compact Schemes with Spectral-Lie Resolution for Flow Simulations Zeyu Bai and Xiaolin Zhong University of California, Los Angeles, CA, 995, USA Hypersonic boundary

More information

Non-Oscillatory Third Order Fluctuation Splitting Schemes for Steady Scalar Conservation Laws

Non-Oscillatory Third Order Fluctuation Splitting Schemes for Steady Scalar Conservation Laws Non-Oscillatory Third Order Fluctuation Splitting Schemes for Steady Scalar Conservation Laws Matthew Hubbard School of Computing, University of Leeds, Leeds, LS 9JT, UK. Abstract This paper addresses

More information

Partial Differential Equations

Partial Differential Equations Simulation in Computer Graphics Partial Differential Equations Matthias Teschner Computer Science Department University of Freiburg Motivation various dynamic effects and physical processes are described

More information

COMPARISON OF FINITE VOLUME HIGH-ORDER SCHEMES FOR THE TWO-DIMENSIONAL EULER EQUATIONS

COMPARISON OF FINITE VOLUME HIGH-ORDER SCHEMES FOR THE TWO-DIMENSIONAL EULER EQUATIONS ECCOMAS Congress 206 VII European Congress on Computational Methods in Applied Sciences and Engineering M. Papadrakakis, V. Papadopoulos, G. Stefanou, V. Plevris (eds.) Crete Island, Greece, 5 0 June 206

More information

A Jiang Tadmor Scheme on Unstructured Triangulations

A Jiang Tadmor Scheme on Unstructured Triangulations A Jiang Tadmor Scheme on Unstructured Triangulations Ivan Christov, Bojan Popov Department of Mathematics, Texas A&M University, College Station, TX 77843-3368, USA Abstract Nonoscillatory central schemes

More information

ICASE $-I!1'!l~il '1] NASA Contractor Report , - I r" ICASE Report No AD-A

ICASE $-I!1'!l~il '1] NASA Contractor Report , - I r ICASE Report No AD-A NASA Contractor Report 187542 -, - I r" ICASE Report No. 91-32 AD-A236 842 ICASE THE P L- RKDG METHOD FOR TWO-DIMENSIONAL EULER EQUATIONS OF GAS DYNAMICS Bernardo Cockburn Chi-Wang Shu Contract No. NAS1-18605

More information

EXPLICIT AND IMPLICIT TVD AND ENO HIGH RESOLUTION ALGORITHMS APPLIED TO THE EULER AND NAVIER-STOKES EQUATIONS IN THREE-DIMENSIONS RESULTS

EXPLICIT AND IMPLICIT TVD AND ENO HIGH RESOLUTION ALGORITHMS APPLIED TO THE EULER AND NAVIER-STOKES EQUATIONS IN THREE-DIMENSIONS RESULTS EXPLICIT AND IMPLICIT TVD AND ENO HIGH RESOLUTION ALGORITHMS APPLIED TO THE EULER AND NAVIER-STOKES EQUATIONS IN THREE-DIMENSIONS RESULTS Edisson Sávio de Góes Maciel, edissonsavio@yahoo.com.br Mechanical

More information

A limiting strategy for the back and forth error compensation and correction method for solving advection equations

A limiting strategy for the back and forth error compensation and correction method for solving advection equations A limiting strategy for the back and forth error compensation and correction method for solving advection equations Lili Hu, Yao Li, Yingjie Liu April 22, 2014 Abstract We further study the properties

More information

Advective and conservative semi-lagrangian schemes on uniform and non-uniform grids

Advective and conservative semi-lagrangian schemes on uniform and non-uniform grids Advective and conservative semi-lagrangian schemes on uniform and non-uniform grids M. Mehrenberger Université de Strasbourg and Max-Planck Institut für Plasmaphysik 5 September 2013 M. Mehrenberger (UDS

More information

Efficiency of adaptive mesh algorithms

Efficiency of adaptive mesh algorithms Efficiency of adaptive mesh algorithms 23.11.2012 Jörn Behrens KlimaCampus, Universität Hamburg http://www.katrina.noaa.gov/satellite/images/katrina-08-28-2005-1545z.jpg Model for adaptive efficiency 10

More information

Overview of Traditional Surface Tracking Methods

Overview of Traditional Surface Tracking Methods Liquid Simulation With Mesh-Based Surface Tracking Overview of Traditional Surface Tracking Methods Matthias Müller Introduction Research lead of NVIDIA PhysX team PhysX GPU acc. Game physics engine www.nvidia.com\physx

More information