+ All Categories
Home > Documents > Mid-Year Report Discontinuous Galerkin Euler Equation Solver

Mid-Year Report Discontinuous Galerkin Euler Equation Solver

Date post: 03-Feb-2022
Category:
Upload: others
View: 2 times
Download: 0 times
Share this document with a friend
15
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, compressible flow solver using the Discontinuous Galerkin Finite Element approach. The Discontinuous Galerkin method seeks to project the exact solution onto a finite polynomial space while allowing for discontinuities at cell interfaces. This allows for the natural discontinuity capture that is required for a compressible flow solver. The appeal of the Discontinuous Galerkin Method is that it handles higher order spatial discretization without the use of larger stencils which is required in Finite Volume implementations. Initially the goal was to have a two dimensional version of the code implemented (not validated). However a series of setbacks limited the scope of this work to a one dimensional flow solver. Thus far, a one-dimensional Discontinuous Galerkin Euler Equation solver was implemented using second and third order spatial discretization and a third order Runge-Kutta time-stepping method. A local projection limiter in the characteristic fields is applied to ensure the method is total variation bounded (TVB). [1,2] The ability of the method to capture discontinuities is tested on a known set of one dimensional problems: Sod’s Shock Tube and Osher’s Shock-Entropy Wave Interaction problem. It was found that the method captures the discontinuities in Sod’s Shock tube fairly well; however the method had problems capturing the highly non-linear behavior in Osher’s problem. Correcting this problem is the focus of current efforts. 1. Introduction The need to solve inviscid, compressible flow governed by the Euler Equations comprises a large set of engineering problems of practical importance. Unfortunately the Euler Equations are a system of non- linear partial differential equations which have few exact solutions. The exact solutions that do exist are based on a series of simplifying assumptions that make the solutions not applicable to engineering problems. The need of robust numerical methods to solve the Euler Equations is of great importance. Traditionally finite difference and finite volume methods are used in development of compressible flow solvers with finite volume method being the dominant because of its natural conservative properties. [3] However these methods are difficult to make higher order in space because of the need for a larger stencil size to approximate the gradients numerically. The details of this will be discussed in further detail in the mathematical background section. The appeal of the Discontinuous Galerkin method is that in finite element formulations gradients of the approximate solution are represented as shape functions and thus there is no need to use a larger computational stencil. This has several implications. The first being is that boundary treatment is simpler because there is no need to adjust the computational stencil around domain boundaries. The second implication is that there is less “numerical smearing” around flow discontinuities because the numerical gradients are not calculated based on several values across the discontinuity. This feature is known as locality. [2]
Transcript
Page 1: Mid-Year Report Discontinuous Galerkin Euler Equation Solver

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, compressible flow solver using the Discontinuous Galerkin Finite Element approach. The Discontinuous Galerkin method seeks to project the exact solution onto a finite polynomial space while allowing for discontinuities at cell interfaces. This allows for the natural discontinuity capture that is required for a compressible flow solver. The appeal of the Discontinuous Galerkin Method is that it handles higher order spatial discretization without the use of larger stencils which is required in Finite Volume implementations.

Initially the goal was to have a two dimensional version of the code implemented (not validated). However a series of setbacks limited the scope of this work to a one dimensional flow solver.

Thus far, a one-dimensional Discontinuous Galerkin Euler Equation solver was implemented using second and third order spatial discretization and a third order Runge-Kutta time-stepping method. A local projection limiter in the characteristic fields is applied to ensure the method is total variation bounded (TVB). [1,2] The ability of the method to capture discontinuities is tested on a known set of one dimensional problems: Sod’s Shock Tube and Osher’s Shock-Entropy Wave Interaction problem. It was found that the method captures the discontinuities in Sod’s Shock tube fairly well; however the method had problems capturing the highly non-linear behavior in Osher’s problem. Correcting this problem is the focus of current efforts.

1. Introduction

The need to solve inviscid, compressible flow governed by the Euler Equations comprises a large set of engineering problems of practical importance. Unfortunately the Euler Equations are a system of non-linear partial differential equations which have few exact solutions. The exact solutions that do exist are based on a series of simplifying assumptions that make the solutions not applicable to engineering problems. The need of robust numerical methods to solve the Euler Equations is of great importance.

Traditionally finite difference and finite volume methods are used in development of compressible flow solvers with finite volume method being the dominant because of its natural conservative properties.[3] However these methods are difficult to make higher order in space because of the need for a larger stencil size to approximate the gradients numerically. The details of this will be discussed in further detail in the mathematical background section. The appeal of the Discontinuous Galerkin method is that in finite element formulations gradients of the approximate solution are represented as shape functions and thus there is no need to use a larger computational stencil. This has several implications. The first being is that boundary treatment is simpler because there is no need to adjust the computational stencil around domain boundaries. The second implication is that there is less “numerical smearing” around flow discontinuities because the numerical gradients are not calculated based on several values across the discontinuity. This feature is known as locality.[2]

Page 2: Mid-Year Report Discontinuous Galerkin Euler Equation Solver

2. Background

2.0 Mathematical Background

A general form of the Euler Equations are presented in equation (1.1), is presented. The main advantage of the Discontinuous Galerkin Method is its abilities to automatically handle discontinuities in the flow fields and higher order spatial discretization without the use of a larger computational stencil.

(2.0.1)

The one-dimensional version of the Euler Equations is given in 1.2

(2.0.2)

One major characteristic of hyperbolic equations such as the Euler Equations is that it allows for discontinuities in the solution and the ability of numerical methods to handle the discontinuities automatically as part of the solution procedure is a desired property. Figure 1 shows the difference between a conservative and non-conservative method solution in one dimension.[3]

Figure 1 Difference Between conservative and non-conservative methods[3]

The discontinuities also present a problem when using higher stencils across these discontinuities. Stencils are locations where functions are evaluated. These function evaluations are used to calculate the numerical derivatives present in the Euler Equations. A graphical representation of a numerical stencil is shown in figure 2. [3] The stencil presented is for one dimensional problems. The horizontal axis is the spatial variable discretization and the vertical axis is the time.

Page 3: Mid-Year Report Discontinuous Galerkin Euler Equation Solver

Figure 2 Graphical Representation of a computational stencil

As one can imagine, if there is a discontinuity within the stencil, the result for the derivative will be polluted. One can also see the boundary treatment implications. Imagine a boundary on the right side of the horizontal axis, the derivative approximation near that boundary will be problematic once points right of the boundary are required.

As mentioned earlier finite element implementation avoids the issue of larger stencils by using higher order shape functions to approximate the variation (derivative) of the solution. The reason why finite element methods were not used for Euler Equations solvers is that traditional methods were not conservative because they enforced discontinuities across cell interfaces. It is the Discontinuous Galerkin Method that allows for discontinuities across cell interfaces and thus allows discontinuous solutions.

2.1 Background of Discontinuous Galerkin Method

The development of the method will be shown using the one-dimensional version of the equations. The unknown solution is projected onto a finite kth order polynomial function space [1] and the

resulting approximate solution is labeled as

. Where

are the

components of the function space and are the degrees of freedom of each element. The

components of the function space up to third order are [2]:

(2.1.1)

The degrees of freedom are given by [2]

(2.1.2)

Page 4: Mid-Year Report Discontinuous Galerkin Euler Equation Solver

Note that in the case of , the first degree of freedom represents the cell average. The second

degree of freedom represents the linear variation within the cell and so on [2].

To develop the finite element model, a weak formulation is required. To do this, the exact solution is

replaced by and multiplied by a weight function. In the case of the Galerkin method, the weight

functions are the same as the components of the function space. Applying this procedure and

integrating by parts results in [1]

2.1.3)

Note that the second term in (1.5) involves the flux across the cell interface. It is this flux that allows for

the discontinuity in the solution. The choice of the interface flux is somewhat arbitrary and there are

quite a lot of choices given in [3]. For this implementation a Roe Flux with entropy fix was used. Roe Flux

is given by [3] The Roe Flux is an approximation to a Riemann Problem. The Riemann problem

will be discussed in more detail later as it will be used as a validation case.

2.1.4)

The evaluation of at the interface is obtained by evaluating (1.4) at the each interface. After

some manipulation

1.7

Page 5: Mid-Year Report Discontinuous Galerkin Euler Equation Solver

where are the degrees of freedom. Note that the above equation is for a third order scheme. To

obtain second order scheme, the third term is dropped in each equation.

The spatial discretization is complete. However, a local projection limiter still needs to be applied to

stabilize the scheme around discontinuities.[2] A characteristic limiter is used. The procedure is outlined

below.

Compute and calculate the Flux Jacobian

at . Calculate the matrices

which consist of right eigenvectors as columns and left eigenvectors as rows respectively. [3]

Calculate

and multiply each by to project each of the

variables onto the left eigenspace.

where represents all of the above variables. The goal is to limit in the left

eigenspace by applying the minmod limiter. A minmod function

returns the lowest value unless there is a sign difference in which case it returns

zero.[1]

)

2.1.5)

The modified values are now used to project

onto the cell interface

and project back on to component space by

This result is used in the Roe Flux function shown earlier.

The only step left is to march in time using the third order Runge-Kutta Technique [1]

2.1.6)

Page 6: Mid-Year Report Discontinuous Galerkin Euler Equation Solver

2.1.7)

Note that is recalculated and the projection limiter is applied at every sub-time step. This concludes

the background of the Discontinuous Galerkin Method.

3. Implementation

This section describes the implementation of the above Discontinuous Galerkin method using psedo-

code. Some definitions are required. The Residual is defined as at each cell

3.1)

The first term in the residual is the cell interface flux calculated using 2.1.4 and the second term is the

integration performed using Gauss Quadrature. The partial differential equation is now reduced to the

following ordinary differential equation at each cell.

3.2)

Thus equation 3.2 can be solved the third order Runge-Kutta method given in equation 2.1.6.

The pseudo-code for the implementation is:

Calculate the initial degrees of freedom using the initial condition, DOFs are given by equation 2.1.2 time=0 do time=0: final_time calculate time step dt using equation 2.1.7 do rk=1:nRungeKuttaSteps (3) Apply Flux Limiting Calculate the Residual according to equation 3.1 Update solution to the rkth step end do time=time+dt end do

4. Results

The code was run using test cases that have known solutions with sharp discontinuities such as a Sod’s

Shock tube problem. Sod’s shock tube problem is a Riemann problem with the following initial

condition.

Page 7: Mid-Year Report Discontinuous Galerkin Euler Equation Solver

4.1)

The shock tube and the flow details are illustrated in figure 1.

Figure 3. Illustration of a shock tube [3]

The shock tube problem’s exact solution is given by [3]

4.2)

Expansion fan

Page 8: Mid-Year Report Discontinuous Galerkin Euler Equation Solver

This problem proves to be a good test problem because it contains many of the features one hopes to

resolve when using a CFD code such as shocks and entropy waves. Many schemes prove to be oscillatory

around flow discontinuities. Thus in order for this scheme to pass the test, it not only has to predict the

flow features of the flow, but it also cannot oscillate around shocks and entropy waves.

The results for this problem are given in the figures below for the second and third order methods with

the exact solution. The third order method does smear the discontinuities more. That is to be expected

since the limiter is activated at more cells. However it is essentially non-oscillatory in both second and

third order schemes. However there does seem to be oscillations present which point to the existence

of a bug in the third order implementations. The figures only show density because it shows all of the

flow features: entropy wave, shock wave, and the expansion fan. All other flow variables are also can be

provided upon request.

2nd Order 100 Cells

Page 9: Mid-Year Report Discontinuous Galerkin Euler Equation Solver

3rd Order 100 Cells

2nd Order 200 Cells

Page 10: Mid-Year Report Discontinuous Galerkin Euler Equation Solver

3rd Order 200 Cells

An entropy and shock wave interaction was also used as a test case. This is known as the Osher problem

and was taken out of [1]. The initial condition is given by 2.2. The figures for the results are shown

below. The method was able to capture the n-wave patterns of the density variation, however the third

order method could not capture the non-linear features around the entropy-shock wave collision

(circled in figure 2). The limiter believed to be the reason for this issue as it seems the smoothing is too

aggressive; relaxing the limiting criteria renders the method unstable however. This issue is currently

under investigation.

2.1)

Page 11: Mid-Year Report Discontinuous Galerkin Euler Equation Solver

*-

Figure 4. Osher Problem Solution [4]

2nd Order Implementation

Page 12: Mid-Year Report Discontinuous Galerkin Euler Equation Solver

3rd Order Implementation

The third order method does not seem to perform well under the given conditions.

5. Validation

For validation a grid convergence study was performed on the shock tube problem. This is done by

decreasing the cell size systematically and examining if the error reduces by the order the spatial

discretization dictates. For example if the cell size is reduced by a factor of two, the error should go be

reduced by a factor of two, four, and eight for 1st, 2nd, and 3rd order methods respectively. The error is

defined as the time average of the L2 norm of the difference between the exact and numerical solution.

5.1)

The shock tube problem turned out to not be a good test because most of the solution is flat and the

shock turns on the limiters which are not guaranteed to produce the correct order solution in the region

with discontinuities. To counter this, a grid convergence study is being performed currently on an

entropy wave convection problem. This problem has a smooth solution requiring no limiting and has a

sinusoidal profile eliminating any flat regions. The problem is defined by

Page 13: Mid-Year Report Discontinuous Galerkin Euler Equation Solver

5.2)

The solution is simply the convection of the density wave with the velocity .[5]

This solution does not implement the limiter and thus should give a smooth solution which follows the

grid convergence described earlier. This is currently being performed. Initial tests show that the second

order method gives good results and a formal grid convergence study for the 2nd order will provided in

an auxiliary report. The third order method is non-convergent without the limiter proving that there is a

bug in the 3rd method. This is currently the focus of the work.

Preliminary 2nd order results are shown in figure 4 for clarity only.

Figure 4. Density Wave at t=2 secs

6. Conclusion

A one-dimensional Galerkin Method was implemented with some success in capturing the

discontinuities that arise naturally in the Euler Equations. However because of the apparent worse

behavior of the third order scheme, there is a bug in the third order implementation. The overall goal of

this work is to develop a two-dimensional flow solver with multiple boundary condition

implementations. The immediate focus is to fix the issue causing the third order scheme to perform

Page 14: Mid-Year Report Discontinuous Galerkin Euler Equation Solver

worse than the second order scheme. All the modifications will be tested using the density wave

convection which has an exact solution and also has smooth, varying feature that make it ideal for grid

convergence studies. Once this is complete, work on the two-dimensional version will begin. The

original timeline proposed is shown below. Some unforeseen problems were encountered causing a

delay in the progress of the work.

7. Initial and Revised Timeline

Initially proposed timeline for the project is given below

10/31/12- One dimensional version. Apply to one dimensional problem with a known

solution to test accuracy and shock capturing abilities. Sod shock tube problem. Will validate the 1-D

version (serial)

12/15/13- Two dimensional version. Apply to 2-D airfoil problem using

provided grids (serial)

02/15/13- Validation of the two dimensional version using experimental airfoil results as well as the

results published in literature

03/15/13- Parallelization of the two dimensional. Validate using results from the serial

version

Currently the one dimensional 2nd order implementation is working correctly (grid convergence study

results pending). The third order method has a bug that renders it unstable even for smooth solutions.

This is being investigated. The complete and validated implementation up to 3rd order will be delivered

by January 20th, 2013.

The two dimensional problem has not been addressed as of yet. The revised timeline for uncompleted

work for one and two dimensional problems is given below. The details of the timeline are in a separate

revised proposal for the project.

01/20/13- Complete and validated one dimensional Discontinuous Galerkin Code up to 3rd order

accurate in space

03/01/13- Two dimensional solution of the vortex convection problem to test spatial order of

accuracy without limiting (analogous to entropy convection in one dimension). With validation.

04/01/13?- Two dimensional solution of vortex-shock interaction problem to test the shock capturing

capabilities as well as the limiter. (Estimate delivery date because of possible unforeseen complications).

With validation

Time permitting- Boundary treatment such as inviscid wall applied to allow for solutions to airfoils

Page 15: Mid-Year Report Discontinuous Galerkin Euler Equation Solver

Delivarables:

Mid- year report

1/20/13-Complete and validated flow solver for one dimensional Euler Equations

03/01/13-Summary of the vortex convection problem including grid convergence studies

04/01/13-05/01/13-Summary of vortex shock interaction problem

05/15/13-Final Report and two dimensional code. Time permitting with boundary treatments.

References:

1. Bernardo Cockburn, Chi-Wang Shu, TVB Runge-Kutta Local Projection Discontinuous Galerkin Method

for Conservation Laws III: One-Dimensioanl System, Journal of Computational Physics 84 90-133 (1989)

2. Bernardo Cockburn, Chi-Wang Shu, TVB Runge-Kutta Local Projection Discontinuous Galerkin Method

for Conservation Laws II: General Frame Work Mathematics of Computation Volume 52 186 (1989)

3. Culbert B. Laney. Computational Gasdynamics. Cambridge University Press. 1998

4. M.P. Martin E.M Taylor, A bandwidth-optimized WENO scheme for the effective direct simulation of

compressible turbulence, Journal of Computational Physics 220 270-289 (2006)

5. D. Gosh, Compact-Reconstruction Weighted Essentially Non-Oscillatory Schemes for Hyperbolic Conservation Laws. Doctor of Philosophy Thesis, University of Maryland, College Park 2012.


Recommended