Week 3 Time Discretization; Solvers Week 4 Terminology; Pseudo Code Flashcards

1
Q

Q: RK method? Order of Accuracy & Type of method?

A

Q: RK method? Order of Accuracy & Type of method?

Multi-stage method
2nd order accurate globally - RK-2
3rd order accurate globally - RK-3
4th order accurate globally - RK-4
Low storage RK-3 will be used mostly in this course.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Q: Upwind schemes?

A

Q: Upwind schemes?

Biased schemes - Discretization based on cell velocity (more weightage given to upstream point)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Q: Overall accuracy of discretization?

A

Q: Overall accuracy of discretization?

Depends upon the discretization of both first-order & second-order derivatives.
If 1st order derivative is 2nd order accurate & 2nd order derivative is 4th order accurate - method will be 2nd order accurate

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Q: Positive Definite Matrix? Properties of PDM?

A

Q: Positive Definite Matrix? Properties of PDM?

c^* A c > 0 for all c &
c^* A c = 0 means c=0
Has Real & +ve Eigen values
Symmetric PDM has Unique Inverse

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Q: What is Thomas Algorithm for? Psuedo code?

A

Q: What is Thomas Algorithm for? Psuedo code?

for solving tri-diagonal system of equations
a specific case of GE for Tri-diagonal system of equations

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Q: Grid Type? Collocated & Staggered

A

Week 4

Q: Grid Type? Collocated & Staggered

Collocated - both p & velocity components are solved at nodes/ cell boundaries
Staggered - p at cell centre & velocity components are solved at cell boundaries

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Q: Types of BC?

A

Q: Types of BC?

Dirichlet BC - value - like no-slip
Neumann BC - gradient/ derivative - like heat flux
Periodic BC - outlet used as inlet - flow invariant, reduces the computational requirement

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Q: Direct & Iterative Methods

A

Q: Direct & Iterative Methods?

Direct Methods -
Iterative Methods - Jacobi, Gauss-Seidel (GS), Successive Over-Relaxation (SOR)
Jacobi - (n+1)th level using n(th) values
GS - use best possible updates
SOR - weighted avg. of nth & (n+1)th value

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Q: Psuedo-code for GS

A

Q: Psuedo-code for GS

allot arrays
save coefficients
write the iter equation
update Boundary values
calculate L2 norm & check for convergence
How well did you know this?
1
Not at all
2
3
4
5
Perfectly