multigrid methods and applications in cfd · multigrid methods and their application in cfd michael...

54
16.06.2009 1 Multigrid Methods and their application in CFD Michael Wurst TU München

Upload: lynhi

Post on 30-Jul-2018

230 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Multigrid Methods and Applications in CFD · Multigrid Methods and their application in CFD Michael Wurst TU München. 16.06.2009 2 Multigrid Methods – Definition Multigrid (MG)

16.06.2009 1

Multigrid Methods and their application in CFD

Michael WurstTU München

Page 2: Multigrid Methods and Applications in CFD · Multigrid Methods and their application in CFD Michael Wurst TU München. 16.06.2009 2 Multigrid Methods – Definition Multigrid (MG)

16.06.2009 2

Multigrid Methods – Definition

Multigrid (MG) methods in numerical analysis are a groupof algorithms for solving differential equations

They are among the fastest solution techniques knowntoday

Page 3: Multigrid Methods and Applications in CFD · Multigrid Methods and their application in CFD Michael Wurst TU München. 16.06.2009 2 Multigrid Methods – Definition Multigrid (MG)

16.06.2009 3

Outline

1. Typical design of CFD solvers

2. Methods for Solving Linear Systems of Equations

3. Geometric Multigrid

4. Algebraic Multigrid

5. Examples

Page 4: Multigrid Methods and Applications in CFD · Multigrid Methods and their application in CFD Michael Wurst TU München. 16.06.2009 2 Multigrid Methods – Definition Multigrid (MG)

16.06.2009 4

Different CFD solversTypical design of CFD solver

CFD solver

Segregated solverCoupled solver

Page 5: Multigrid Methods and Applications in CFD · Multigrid Methods and their application in CFD Michael Wurst TU München. 16.06.2009 2 Multigrid Methods – Definition Multigrid (MG)

16.06.2009 5

SIMPLE AlgorithmTypical design of CFD solver

• segregated, sequential solutionof decoupled transportequations

• pressure correction equation: a tight tolerance for guaranteeing mass conservation

Multigrid methods

Momentum Equations

Pressure Correction Equation

Turbulence Equations

Non

-line

arlo

op(o

uter

itera

tions

)

time

loop

Convergence

Postprocessing

Preprocessing

Last timestep

other equations...

Page 6: Multigrid Methods and Applications in CFD · Multigrid Methods and their application in CFD Michael Wurst TU München. 16.06.2009 2 Multigrid Methods – Definition Multigrid (MG)

16.06.2009 6

Coupled Solution AlgorithmTypical design of CFD solver

• momentum equations and pressure correction equationare such discretized that onegets a big coupled block equation system

• this equation system becomes very large – fast solver necessary

Multigrid methods

Momentum Equations

Pressure Correction Equation

Turbulence Equations

Non

-line

arlo

op(o

uter

itera

tions

)

time

loop

Convergence

Postprocessing

Preprocessing

Last timestep

other equations...

Page 7: Multigrid Methods and Applications in CFD · Multigrid Methods and their application in CFD Michael Wurst TU München. 16.06.2009 2 Multigrid Methods – Definition Multigrid (MG)

16.06.2009 7

Coupled Solution AlgorithmTypical design of CFD solver

• Big coefficient matrix consisting of the momentum matrixes, thepressure correction matrix and coupling matrixes

• The solution vector contains velocity componentes and pressure

0 0

0 0

0 0

uuu uP

vvv vP

ww wwP

pPu Pv Pw PP

A A qu

A A qv

A A qw

A A A A qp

=

rr

rr

rr

rr

Page 8: Multigrid Methods and Applications in CFD · Multigrid Methods and their application in CFD Michael Wurst TU München. 16.06.2009 2 Multigrid Methods – Definition Multigrid (MG)

16.06.2009 8

Basic DefinitionsMethods for Solving Linear Systems of Equations

• Linear System of Equation:

A: sparse matrix of size n×n, symmetric, pos. diagonal elements, non-positive off diagonal elements (M-Matrix)

u: exact solution

v: approximation to the exact solution

• Two measures of v as an approximation to u:

(Absolute) error: e = u - vResidual: r = f – Av

• Measured by norms:

L∞

– norm: L2 - norm:

=Au f

=∑ ij j ia u f

∞ ≤ ≤= jj n

e1maxe

=

= ∑

n

jj

e

12

2

21

e

Page 9: Multigrid Methods and Applications in CFD · Multigrid Methods and their application in CFD Michael Wurst TU München. 16.06.2009 2 Multigrid Methods – Definition Multigrid (MG)

16.06.2009 9

Direct vs. Iterative MethodsMethods for Solving Linear Systems of Equations

• Direct methods– i.g. Gauss elimination / LU decomposition

– solve the problem to the computational accuracy– high computational power

• Iterative methods / Relaxation methods– Gauss-Seidel / Jacobi relaxation– Solve the problem only by an approximation

– could be sufficient and so be less time consuming

Page 10: Multigrid Methods and Applications in CFD · Multigrid Methods and their application in CFD Michael Wurst TU München. 16.06.2009 2 Multigrid Methods – Definition Multigrid (MG)

16.06.2009 10

Iterative methodsMethods for Solving Linear Systems of Equations

• Jacobi relaxation:

• Gauss-Seidel relaxation:

+

= −

∑n n

i i ij jj iii

u f a ua

( 1) ( )1

=∑ ij j ia u f

∑ ∑(n+1) (n+1) (n)

i i ij j ij jj<i j>iii

1u = f - a u - a u

a

Page 11: Multigrid Methods and Applications in CFD · Multigrid Methods and their application in CFD Michael Wurst TU München. 16.06.2009 2 Multigrid Methods – Definition Multigrid (MG)

16.06.2009 11

Properties of Iterative methodsMethods for Solving Linear Systems of Equations

• Example: Poisson equation

• Discretisation:

• Exact solution: u = 0 error e = u – v = -v

-u'' = 0

u(0)= u(n)= 0

j -1 j j+12

-u + 2u - u= 0

h≤ ≤j -1 j j+1-u + 2u - u = 0 1 j n+1

0 nu = u = 0

Page 12: Multigrid Methods and Applications in CFD · Multigrid Methods and their application in CFD Michael Wurst TU München. 16.06.2009 2 Multigrid Methods – Definition Multigrid (MG)

16.06.2009 12

Properties of Iterative methodsMethods for Solving Linear Systems of Equations

• Different starting values:

Sinus waves: Fourier modesΠ =

j

jkv sin

n

Page 13: Multigrid Methods and Applications in CFD · Multigrid Methods and their application in CFD Michael Wurst TU München. 16.06.2009 2 Multigrid Methods – Definition Multigrid (MG)

16.06.2009 13

Properties of Iterative methodsMethods for Solving Linear Systems of Equations

• Error vs. Number of iteration

Page 14: Multigrid Methods and Applications in CFD · Multigrid Methods and their application in CFD Michael Wurst TU München. 16.06.2009 2 Multigrid Methods – Definition Multigrid (MG)

16.06.2009 14

Properties of Iterative methodsMethods for Solving Linear Systems of Equations

• Realistic starting value:

k = 1:

“low frequency wave”k = 6:

“medium frequency wave”

k = 32:“high frequency wave”

j

1 jΠ 6jΠ 32jΠv = sin + sin + sin

3 n n n

Page 15: Multigrid Methods and Applications in CFD · Multigrid Methods and their application in CFD Michael Wurst TU München. 16.06.2009 2 Multigrid Methods – Definition Multigrid (MG)

16.06.2009 15

Properties of Iterative methodsMethods for Solving Linear Systems of Equations

• Error: written in eigenvectors of A:

• Eigenvectors correspond to the modes of the problem

• Our problem:

Low frequency modes High frequency modes„Do not dissappear“ „Disappear“

Smoother

≤ ≤ −1 k n 1

=

=∑n

k kk

c1

1

(0)e w

Π =

k , j

jkw sin

n

≤ ≤ n1 k

2≤ ≤ −n

k n 12

Page 16: Multigrid Methods and Applications in CFD · Multigrid Methods and their application in CFD Michael Wurst TU München. 16.06.2009 2 Multigrid Methods – Definition Multigrid (MG)

16.06.2009 16

Improvements of iterative solversGeometric Multigrid

• Idea: Have a good initial guessHow? Do some preliminary iterations on a coarse grid (grid with

less points)Good, because iterations need less computational time

• How does an error look like on a coarse grid?It looks more oscillatory!

Page 17: Multigrid Methods and Applications in CFD · Multigrid Methods and their application in CFD Michael Wurst TU München. 16.06.2009 2 Multigrid Methods – Definition Multigrid (MG)

16.06.2009 17

Improvements of iterative solversGeometric Multigrid

How does an error look like on a coarse grid?

If error is smooth on fine grid, maybe good to move to coarse grid.

Page 18: Multigrid Methods and Applications in CFD · Multigrid Methods and their application in CFD Michael Wurst TU München. 16.06.2009 2 Multigrid Methods – Definition Multigrid (MG)

16.06.2009 18

Possible schemes for improvementGeometric Multigrid

• Nested iteration:– Relax on Au = f on a very coarse grid

to obtain an initial guess for the next finer grid...

– Relax on Au = f on to obtain an initial guess for – Relax on Au = f on to obtain an initial guess for – Relax on Au = f on to obtain a final approximation to the

solution.

• Problems: Relax on Au = f on ?Last iteration: Error still smooth?

Ω h4

Ωh

Ω h2

Ω h2

Ωh

Ω h2

Page 19: Multigrid Methods and Applications in CFD · Multigrid Methods and their application in CFD Michael Wurst TU München. 16.06.2009 2 Multigrid Methods – Definition Multigrid (MG)

16.06.2009 19

• 2nd possibility: Use of the residual equation

=Au f

− = −A A Au v f v

=Ae r

Page 20: Multigrid Methods and Applications in CFD · Multigrid Methods and their application in CFD Michael Wurst TU München. 16.06.2009 2 Multigrid Methods – Definition Multigrid (MG)

16.06.2009 20

Possible schemes for improvementGeometric Multigrid

• Correction scheme:

– Relax on Au = f on to obtain an approximation vh

– Compute the residual r = f - A vh

Relax on the residual equation Ae = r on to obtain an approximation to the error e2h

– Correct the approximation obtained on with the error estimate obtained on :

• Problems: Relax on Ae = r on ?Transfer from to ?

Ωh

Ωh

Ω h2 ← +h h h2v v e

Ω h2

Ω h2

Ωh

Ω h2

Page 21: Multigrid Methods and Applications in CFD · Multigrid Methods and their application in CFD Michael Wurst TU München. 16.06.2009 2 Multigrid Methods – Definition Multigrid (MG)

16.06.2009 21

Transfer operatorsGeometric Multigrid

• Transfer from coarse to fine grids: Interpolation / Prolongation

• Transfer from fine to coarse grids: Restriction

Ω → Ωh h2

Ω → Ωh h2

Page 22: Multigrid Methods and Applications in CFD · Multigrid Methods and their application in CFD Michael Wurst TU München. 16.06.2009 2 Multigrid Methods – Definition Multigrid (MG)

16.06.2009 22

Transfer operators – Interpolation / ProlongationGeometric Multigrid

• Interpolation / Prolongation: from coarse to fine grid

• Points on fine and on coarse grid:

• Points only on the fine grid:

=h hj jv v 2

2

+ += +h h hj j jv v v2 2

2 1 1

1( )

2

Page 23: Multigrid Methods and Applications in CFD · Multigrid Methods and their application in CFD Michael Wurst TU München. 16.06.2009 2 Multigrid Methods – Definition Multigrid (MG)

16.06.2009 23

Transfer operators – RestrictionGeometric Multigrid

• Restriction: from fine to coarse grid

• Full weigthening: ( )− += + +h h h hj j j jv v v v2

2 1 2 2 1

12

4

Page 24: Multigrid Methods and Applications in CFD · Multigrid Methods and their application in CFD Michael Wurst TU München. 16.06.2009 2 Multigrid Methods – Definition Multigrid (MG)

16.06.2009 24

Properties of transfer operatorsGeometric Multigrid

Interpolation / Prolongation Restriction

Variational property:

=

hhI2

1

2

1 1

2

1 11

22

1

... 1

2

1

=

hhI2

1 2 1

1 2 11

1 2 14

...

1 2 1

( )=Th h

h hI c I 22

Page 25: Multigrid Methods and Applications in CFD · Multigrid Methods and their application in CFD Michael Wurst TU München. 16.06.2009 2 Multigrid Methods – Definition Multigrid (MG)

16.06.2009 25

Properties of transfer operatorsGeometric Multigrid

• Transfer of vectors:

• Transfer of matrix A:

• Geometric answer: is discretisation of the problem on thecoarse grid

• Algebraic answer: (Galerkin condition )

→h hA A2

hA2

=h h h hh hA I A I2 2

2

Page 26: Multigrid Methods and Applications in CFD · Multigrid Methods and their application in CFD Michael Wurst TU München. 16.06.2009 2 Multigrid Methods – Definition Multigrid (MG)

16.06.2009 26

RecapitulationGeometric Multigrid

• Iterative methods can effectively reduce high-oscillating errors untilonly a smooth error remains

• Smooth errors look less smooth on coarse grids• Transfer of vectors and matrices from coarse to fine grids possible with

two conditions:Galerkin condition

Variational property

How can we put this in a good solution algorithm?

=h h h hh hA I A I2 2

2

( )=Th h

h hI c I 22

Page 27: Multigrid Methods and Applications in CFD · Multigrid Methods and their application in CFD Michael Wurst TU München. 16.06.2009 2 Multigrid Methods – Definition Multigrid (MG)

16.06.2009 27

V-CycleGeometric Multigrid

Relax on times with initial guess vh

Compute Relax on times with initial guess v2h

Compute

Relax on times with initial guess v4h

Compute

Solve …

Correct

Relax times with initial guess v4h

Correct

Relax times with initial guess v2h

Correct Relax times with initial guess vh

=h h hA u f ν1

=h h hhI

2 2f r=h h hA2 2 2u f ν1

=h h hhI4 4 2

2f r=h h hA4 4 4u f ν1

=h h hhI8 8 4

4f r

=Lh Lh LhA u f

← +h h h hhI2 2 2 4

4v v v=h h hA2 2 2u f

ν2

← +h h h hhI4 4 4 8

8v v v=h h hA4 4 4u f

ν2

← +h h h hhI 2

2v v v=h h hA u f ν2

Page 28: Multigrid Methods and Applications in CFD · Multigrid Methods and their application in CFD Michael Wurst TU München. 16.06.2009 2 Multigrid Methods – Definition Multigrid (MG)

16.06.2009 28

V-CycleGeometric Multigrid

h

2h

4h

8h

16h

Restricition

Prolongation

Relax

Page 29: Multigrid Methods and Applications in CFD · Multigrid Methods and their application in CFD Michael Wurst TU München. 16.06.2009 2 Multigrid Methods – Definition Multigrid (MG)

16.06.2009 29

Other cycles – W CycleGeometric Multigrid

4h

2h

8h

h

Page 30: Multigrid Methods and Applications in CFD · Multigrid Methods and their application in CFD Michael Wurst TU München. 16.06.2009 2 Multigrid Methods – Definition Multigrid (MG)

16.06.2009 30

Other cycles – Full Multigrid Cycle (FMG) Geometric Multigrid

ν0-times

4h

2h

8h

h

ν0-times

ν0-times

Page 31: Multigrid Methods and Applications in CFD · Multigrid Methods and their application in CFD Michael Wurst TU München. 16.06.2009 2 Multigrid Methods – Definition Multigrid (MG)

16.06.2009 31

Geometric vs. Algebraic multigridAlgebraic Multigrid

• Geometric Multigrid: structured meshes• Problem: unstructured meshes, no mesh at all

• Algebraic Multigrid (AMG)Questions:1) What is meant by grid now?2) How to define coarse grids?3) Can we use the same smoothers (Jacobi, Gauss-Seidel)4) When is an error on a grid smooth?5) How can we transfer data from fine grids to coarse grids or vice

versa?

Page 32: Multigrid Methods and Applications in CFD · Multigrid Methods and their application in CFD Michael Wurst TU München. 16.06.2009 2 Multigrid Methods – Definition Multigrid (MG)

16.06.2009 32

Grid Algebraic Multigrid

• GMG: known locations of grid pointswell-defined subset of the grid points define coarse grid

• AMG: subset of solution variables form coarse grid

=Au f

= n

u

u

u

M

1

2u

Page 33: Multigrid Methods and Applications in CFD · Multigrid Methods and their application in CFD Michael Wurst TU München. 16.06.2009 2 Multigrid Methods – Definition Multigrid (MG)

16.06.2009 33

Smooth errorAlgebraic Multigrid

• Defined as an error which is not effectively reduced by an iterative method

• Jacobi method:

• Measurement of the error with the A-inner product:

• Smooth error:

−= −I D A1( )i+1 ie e

( )=A

A1 2

e e,e

−− ≈AA

I D A1( )e e

−− ≈AA

D A1e e e

−→AA

D A 1 e e

Page 34: Multigrid Methods and Applications in CFD · Multigrid Methods and their application in CFD Michael Wurst TU München. 16.06.2009 2 Multigrid Methods – Definition Multigrid (MG)

16.06.2009 34

Smooth errorAlgebraic Multigrid

• Smooth error: −AA

D A 1 e e

( ) ( )−D A A A1 , ,e e e e

( ) ( )−D 1 , ,r r e r

= =∑ ∑

n ni

i ii iii

rr e

a

2

1 1

→ i ii ir a e

≈A 0e

Page 35: Multigrid Methods and Applications in CFD · Multigrid Methods and their application in CFD Michael Wurst TU München. 16.06.2009 2 Multigrid Methods – Definition Multigrid (MG)

16.06.2009 35

Implications of smooth errorAlgebraic Multigrid

≈A 0e

+ ≈∑ii i ij jj i

a e a e 0

≈ −∑ii i ij jj i

a e a e

Page 36: Multigrid Methods and Applications in CFD · Multigrid Methods and their application in CFD Michael Wurst TU München. 16.06.2009 2 Multigrid Methods – Definition Multigrid (MG)

16.06.2009 36

Selecting the coarse grid - requirementsAlgebraic Multigrid

• Smooth error can be approximated accurately.

• Good interpolation to the fine grid.

• Should have substantially fewer points, so the problem on coarse grid can be solved with little expense.

Page 37: Multigrid Methods and Applications in CFD · Multigrid Methods and their application in CFD Michael Wurst TU München. 16.06.2009 2 Multigrid Methods – Definition Multigrid (MG)

16.06.2009 37

Selecting the coarse grid – Influence and DependenceAlgebraic Multigrid

• Definition 1:Given a threshold value , the variable (point) strongly depends on the variable (point) if:

• Definition 2:If the variable strongly depends on the variable , then the variable strongly influences the variable .

θ< ≤0 1 iu

ju

θ≠

− ≥ −ij ikk ia amax

iuiu

juju

Page 38: Multigrid Methods and Applications in CFD · Multigrid Methods and their application in CFD Michael Wurst TU München. 16.06.2009 2 Multigrid Methods – Definition Multigrid (MG)

16.06.2009 38

Selecting the coarse grid – definitionsAlgebraic Multigrid

• Two important sets:

Si: set of points that strongly influence i, that is the points on which the point i strongly depends.

: set of points that strongly depend on the point i.

θ≠

= − ≥ −i ij ikk iS j a a: max

TiS

= ∈Ti jS j i S:

Page 39: Multigrid Methods and Applications in CFD · Multigrid Methods and their application in CFD Michael Wurst TU München. 16.06.2009 2 Multigrid Methods – Definition Multigrid (MG)

16.06.2009 39

Selecting the coarse grid - ExampleAlgebraic Multigrid

• Poisson equation: −∆ =u 0

j -1 i j+1i -1 i i+12 2

-u + 2u - u-u + 2u - u+ = 0

h h

( )i -1 i+1 i j -1 j+12

1-u - u + 4u - u - u = 0

h

0 105 15 20

1 116 16 21

2 127 17 22

3 138 18 23

4 149 19 24

i

j

Page 40: Multigrid Methods and Applications in CFD · Multigrid Methods and their application in CFD Michael Wurst TU München. 16.06.2009 2 Multigrid Methods – Definition Multigrid (MG)

16.06.2009 40

Selecting the coarse grid - ExampleAlgebraic Multigrid

Discretisation on 5x5 grid:

For example, Point 12:

( )7 11 12 13 172

1-u - u + 4u - u - u = 0

h

0 105 15 20

1 116 16 21

2 127 17 22

3 138 18 23

4 149 19 24

= −= −

= −

= −=

a

a

a

a

a

12,7

12,11

12,13

12,17

12,12

1

1

1

1

4

θ≠

= − ≥ −i ij ikk iS j a a: max =S12 7, 11, 13, 17

= ∈Ti jS j i S: =TS12 7, 11, 13, 17

Page 41: Multigrid Methods and Applications in CFD · Multigrid Methods and their application in CFD Michael Wurst TU München. 16.06.2009 2 Multigrid Methods – Definition Multigrid (MG)

16.06.2009 41

Selecting the coarse grid - ExampleAlgebraic Multigrid

1) Define a measure to each point of its potential quality as a coarse (C) point: amount of members of T

iSλi

2 233 3

3 344 4

3 344 4

3 344 4

2 233 3

0 105 15 20

1 116 16 21

2 127 17 22

3 138 18 23

4 149 19 24

Page 42: Multigrid Methods and Applications in CFD · Multigrid Methods and their application in CFD Michael Wurst TU München. 16.06.2009 2 Multigrid Methods – Definition Multigrid (MG)

16.06.2009 42

Selecting the coarse grid - ExampleAlgebraic Multigrid

2) Assign point with maximum to C-point3) All points in become fine (F) points4) For each new F point j: increase the measeure for all each

unassigned point k that strongly influence j:

5) Do 2)-4) until all points are assigned

λi

2 233 3

3 344 4

3 344 4

3 344 4

2 233 3

2 233 3

3 344 5

3 454 F

3 FF5 C

2 343 F

TiS

λk

∈ jk S

Page 43: Multigrid Methods and Applications in CFD · Multigrid Methods and their application in CFD Michael Wurst TU München. 16.06.2009 2 Multigrid Methods – Definition Multigrid (MG)

16.06.2009 43

Selecting the coarse grid - ExampleAlgebraic Multigrid

2 233 3

3 344 5

3 454 F

3 FF5 C

2 343 F

2 343 F

3 FF5 C

3 564 F

3 FF5 C

2 343 F

C CCF F

F FFC C

C CCF F

F FFC C

C CCF F

Page 44: Multigrid Methods and Applications in CFD · Multigrid Methods and their application in CFD Michael Wurst TU München. 16.06.2009 2 Multigrid Methods – Definition Multigrid (MG)

16.06.2009 44

Definition of transfer operatorsAlgebraic Multigrid

• Interpolation: from coarse to fine grids

• Each fine grid point i can have three different types of neighboringpoints:The neighboring coarse grid points that strongly influence iThe neighboring fine grid points that strongly influence iPoints that do not strongly influence i, can be fine and coarse gridpoints

This information is contained in

( ) ω∈

∈= ∈∑

i

ihh i ij j

j C

e if i CI e e if i F2

ωij

Page 45: Multigrid Methods and Applications in CFD · Multigrid Methods and their application in CFD Michael Wurst TU München. 16.06.2009 2 Multigrid Methods – Definition Multigrid (MG)

16.06.2009 45

ExampleAlgebraic Multigrid

• Example:

• Discretised with a two-dimensional mesh, divided into 4 parts;

xx yy xy-au -cu +bu =0

b=0b=0

c=1c=1

a=1000a=1

b=2b=0

c=1c=1

a=1a=1000

Page 46: Multigrid Methods and Applications in CFD · Multigrid Methods and their application in CFD Michael Wurst TU München. 16.06.2009 2 Multigrid Methods – Definition Multigrid (MG)

16.06.2009 46

ExampleAlgebraic Multigrid

Grid 2h

'X'

'Y'

0 0.2 0.4 0.6 0.8 10

0.2

0.4

0.6

0.8

1

Page 47: Multigrid Methods and Applications in CFD · Multigrid Methods and their application in CFD Michael Wurst TU München. 16.06.2009 2 Multigrid Methods – Definition Multigrid (MG)

16.06.2009 47

ExampleAlgebraic Multigrid

Grid 4h

'X'

'Y'

0 0.2 0.4 0.6 0.8 10

0.2

0.4

0.6

0.8

1

Page 48: Multigrid Methods and Applications in CFD · Multigrid Methods and their application in CFD Michael Wurst TU München. 16.06.2009 2 Multigrid Methods – Definition Multigrid (MG)

16.06.2009 48

ExampleAlgebraic Multigrid

Grid 8h

'X'

'Y'

0 0.2 0.4 0.6 0.8 10

0.2

0.4

0.6

0.8

1

Page 49: Multigrid Methods and Applications in CFD · Multigrid Methods and their application in CFD Michael Wurst TU München. 16.06.2009 2 Multigrid Methods – Definition Multigrid (MG)

16.06.2009 49

Advantages & Disadvantages of AMGAlgebraic Multigrid

Number of Iterations

Nor

mal

ized

Res

idua

l

0 100 200 300 400 50010-12

10-10

10-8

10-6

10-4

10-2

100

SIP (Iterations: 2410)V-Cycle (3 Grid-Levels)W-Cycle (3 Grid-Level)FMG-Cycle (3 Grid-Levels)

Page 50: Multigrid Methods and Applications in CFD · Multigrid Methods and their application in CFD Michael Wurst TU München. 16.06.2009 2 Multigrid Methods – Definition Multigrid (MG)

16.06.2009 50

Advantages & Disadvantages of AMGAlgebraic Multigrid

Advantages• Fast and robust• Good for segregated solvers (SIMPLE)

Disadvantages

• The Galerkin Operation is a very expensive step

• Diffucult to parallelize

• High setup-phase

• High storage requirements

• Not for coupled solvers

A cure are the aggregation based AMGs

Page 51: Multigrid Methods and Applications in CFD · Multigrid Methods and their application in CFD Michael Wurst TU München. 16.06.2009 2 Multigrid Methods – Definition Multigrid (MG)

16.06.2009 51

Aggregation based AMGAlgebraic Multigrid

1 2 3 4 5 6

7 8 9 10 11 12

13 14 15 16 17 12

18 19 20 21 22 23II

I• cell 7 influences strongly cell 1• cell 2 influences strongly cell 1• build a new cell I from cell 1,2,7• do the same to get the new cell II

•In the simplest case strongly connected coefficient are simplysummed up

•Example:

Page 52: Multigrid Methods and Applications in CFD · Multigrid Methods and their application in CFD Michael Wurst TU München. 16.06.2009 2 Multigrid Methods – Definition Multigrid (MG)

16.06.2009 52

Aggregation based AMGAlgebraic Multigrid

•To get the coefficients of the new coarse linear equation system sumup

•AI,II=A7,13+A7,8+A2,8

•AI,II=A13,7+A8,7+A8,2

•AI,I=A1,1+A2,2+A7,7

•AII,II=A8,8+A9,9+A13,13+A14,14+A15,15+A18,18+A19,19+A20,20

1 2 3 4 5 6

7 8 9 10 11 12

13 14 15 16 17 12

18 19 20 21 22 23II

I

Page 53: Multigrid Methods and Applications in CFD · Multigrid Methods and their application in CFD Michael Wurst TU München. 16.06.2009 2 Multigrid Methods – Definition Multigrid (MG)

16.06.2009 53

Aggregation based AMGAlgebraic Multigrid

Advantages• The Galerkin operation becomes a simple summation of coefficients• The setup-phase becomes very fast• The procedure is easy to parallelize• Through giving maximum and minimum size of cells on coarser grids, one can

pre-estimate memory effort• in a finite volume method, the coefficients are representing flux sizes from one

cell to another, through summation on keeps the conservativness of thediscretized system over all coarser levels

Disadvantages• The convergence rate becomes small compared to original AMG, but in the

case of solution of the non-linear Navier-Stokes equation the reduction of theresidual within one outer iteration has not to be very tight, reducing of aboutone to two orders of magnitude suffices

The Agglomeration AMG is ideally applicable to the coupl ed solution of Navier-Stokes Equation System

Page 54: Multigrid Methods and Applications in CFD · Multigrid Methods and their application in CFD Michael Wurst TU München. 16.06.2009 2 Multigrid Methods – Definition Multigrid (MG)

16.06.2009 54

Thank you!

Discussion