PDEs Flashcards

(26 cards)

1
Q

What is a differential equation (DE)?

What do they describe?

A
  • A differential equation is an equation that contains one or more derivatives
  • Describe the rate of change of a variable with respect to another.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is a partial differential equation (PDE)?

A

A PDE is a differential equation involving derivatives with respect to more than one variable

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

What is the difference between time derivatives and spatial derivates?

A
  • Time derivates represent rate of change with respect to time
  • Spatial derivates represent rate of change with respect to position
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is exponential decay?

A

When a quantity N(t) decreases at a rate proportional to itself, described by dN/dt = -λN.

Where λ is a positive constant

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

How is the radioactive decay rate mathematically modeled?

A

dN/dt = -λN, where λ = ln(2)/halflife

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

What is numerical approximation in the context of PDEs? Why is it used?

A
  • We don’t know how the rate of change will be over a large time period
  • It approximates derivatives using small finite differences over a discrete time step
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is advection? Name two examples.

A

The transport of a quantity by a velocity field.
1. Dust in the atmosphere
2. Silt in a river

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

What is the 1D advection equation?

A

The advection of a scalar field u(x,t) by a constant velocity c is:
∂u/∂t = -c ∂u/∂x

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

What is the 2D advection equation?

A

The advection of a scalar field u(x,y,t) by a constant velocity c=(c{x}, c{y}) is:
∂u/∂t = -(c{x}∂u/∂x + c{y}∂u/∂y)

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

What is the Gaussian distribution’s behavior under the 1D advection equation?

A

The shape remains the same but shifts horizontally with time.

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

What is a finite difference approximation?

A

A numerical method that approximates derivatives using discrete values

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

What would be the finite difference expression to calculate du/dx at x=x{i}?

A

(u{i} - u{i-1})/(x{i} - x{i-1})

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

What would be the finite difference expression to calculate d2u/dx2 at x=x{i}?

A

(u{i+1} - 2u{i} + u{i-1}) / (dx)^2

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

What is diffusion?

A

The movement of a quantity from high to low concentration, modelled by the diffusion equation.

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

What is the 1D diffusion equation?

A

The diffusion of a scalar field u(x,t) is:
∂u/∂t = K ∂²u/∂x², where K is a constant.

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

What is the 2D diffusion eqauation?

A

The diffusion of a scalar field u(x,y,t) is:
∂u/∂t = -K(∂2u/∂x2 + ∂2u/∂y2), where K is a constant

17
Q

What is the Gaussian’s distribution’s behaviour under the 1D diffusion equation?

A

The ‘bump’ ‘spreads out’ as we timestep

18
Q

What is truncation error in finite difference approximations?

A

The error introduced by approximating a derivative with a finite difference formula.

19
Q

How does reducing step size affect accuracy?

A

Smaller step sizes reduce truncation error, improving accuracy.

20
Q

What is accuracy in PDEs?

A

How exact (close) your solution is to the solution

21
Q

What is stable/unstable in PDEs?

A
  • Stable - The solution must be guaranteed to remain finite
  • Unstable - Errors in the solution can grow without bounds
22
Q

What factors affect stability?

A
  1. The (type of) equation being solved
  2. How to the spatial derivatives are calculated
  3. How the timesteps are calculated
23
Q

What are the types of stability?

Explain each

A
  1. Unconditionally Stable - errors are damped and solution is always stable
  2. Unconditionally Unstable - errors are amplified and the solution is always unstable
  3. Conditionally Stable - solution is stable subject to a constraint
24
Q

What is CFL?

A

When solving the advection equation, the resulting scheme is stable provided:
Δt <= C (Δx / v{max}), where 0 < C < 1 is a constant

25
What happens if the CFL condition is violated?
The numerical solution can become unstable, leading to diverging errors.
26
Why is stability important in numerical PDE solutions?
An unstable scheme leads to incorrect, diverging results.