[Math] 2D Heat Transfer Laplacian with Neumann, Robin, and Dirichlet Conditions on a semi-infinite slab

boundary value problemharmonic functionsheat equationpartial differential equations

So, I know I'm missing something simple, but I can't find a way to solve the Laplacian with the boundary conditions I've got down.

The Problem:

"Consider the semi-infinite plate sketched below with thickness 2b. The temperature at the base (x = 0) is constant at $T_0$. Heat is transferred on both sides of the plate to a surrounding temperature $T_{\infty}$. The conductivity of the plate is k and the heat transfer coefficient for both sides is h. There is no heat generation. As $x \rightarrow \infty $, the temperature is finite. Solve for steady state temperature."

Below is a sketch of the problem

https://i.stack.imgur.com/6MVti.png

So far I've managed to define my PDE

$$\frac {\partial^2T}{\partial y^2} + \frac {\partial^2T}{\partial x^2} = 0$$

and boundary conditions

\begin{align}
T(0,y) &= T_0 \\
T(\infty , y) &< \infty \\
\frac{\partial T}{\partial y}(x,b) &= – \frac hk [T_b(x) – T_{\infty}] \\
&= f(x) \\
\frac{\partial T}{\partial y}(x,0) &= 0
\end{align}

And I know I'm going to use my separation of variables, but I run into trouble when I try to solve my boundary conditions. I can't re-figure my boundary conditions in a way that gives me a known eigenvalue (generally of the form $\lambda = \frac{n\pi}b$) without giving me some $\sin(\infty)$ kind of a condition. I've tried for a few hours to find boundary conditions that work, but at this point I'm thinking I've either forgotten a simple trick, or I never learned how to deal with Laplacian boundary conditions approaching infinity. Any help would be appreciated.

Also, this is my first post and I'm sure I've left out some important detail or committed some faux pas. Please let me know if I've committed any breaches of etiquette, or if there's something I've left out.

Best Answer

This is because you are considering the equation on the half-line. Your domain is essentially $\Omega=[0,\infty)\times [0,y]$

If you look at the heat equation and wave equation on a bounded domain, you will see the solutions are typically given as Fourier Series, but on unbounded domains, the solutions look a lot different. You cannot use boundary methods and separation of variables to solve the PDE here.

Generally speaking, we want solutions $u(x,y)$ which "vanish at infinity" (tend towards $0$ as $||u(x,y)||_{L^2}\rightarrow \infty)$. Functions which are smooth and have compact support (denoted by $C_{c}^{\infty}(\Omega)$) include those that vanish at infinity $C_{0}(\Omega)$. These conditions imposed on the solutions are desirable because they make physical sense. The temperature/potential in a rod is not going to shoot off to infinity, it's going to decrease with time until it reaches a steady-state.

Now to actually solve the PDE, I don't think there is a slick and easy way to do it. Solutions to Laplace's equation in domains which aren't on a disk $D^n$ tend to be ad-hoc and very specific to the domain. Polynomials wouldn't work because they do not vanish at infinity. I would try to look for solutions which use sines and cosines. Alternatively, you could look for a harmonic function on the domain $[0,\infty)\times [0,y]$ (you don't necessarily need to work in the complex plane for this). Start by looking for qualitative solutions and then try to get a concrete, quantitative one.