Boundary value problems (BVPs)

Linear:

$$ \frac{d^2y}{dx^2} + P(x)\frac{dy}{dx} + Q(x)y = F(x).$$

Nonlinear: * Terms have products of $y$, $y^{\prime}$, $y^{\prime\prime}$. * Nonlinear means nonlinear in $y$ or derivatives of $y$, not nonlinear in $x$. * The above is nonlinear if $k=k(T)$.

Boundary conditions: BCs

  1. Dirichlet Specify $y$ at boundary
  2. Neumann Specify $y^{\prime}$ at boundary
  3. Robin Specify additive combination of $y$ and $y^{\prime}$ at boundary.
    • this is sometimes called a mixed boundary condition.

Examples for heat transfer: * Dirichlet? * Neumann? * Robin?

Examples: heat conduction.

  1. Dirichlet: Specify $T$
  2. Neumann: Specify $q=k\frac{dT}{dx}$
  3. Robin: Specify $h(T-T_{\infty}) = -k\frac{dT}{dx}$ * This is conjugate heat transfer, where we have a heat flux conservation boundary condition (equating convection to a wall to conduction through the wall).

Solution approaches include:

Shooting Method

put in a value, solve an ODE IVP, take the difference between the known BC, and the BC you got with the guess. Return that difference.

Example, gas stripper

Example: heat conduction

boundary T z
x=0 $T_L$ ?
x=H $T_R$ ?
$$z_{Og3} = z_{Og2} + (z_{Og2}-z_{Og1})\frac{T_R-T_{R2}}{T_{R2}-T_{R1}}.$$

Shooting is just root finding!

But with a function that involves solving an ODE and then checking the resulting boundary condition against the specified boundary condition.

BC types