Boundary condition for PDE

64 Views Asked by At

I've been asked to come up with a way to numerically solve the differential equation $$\frac{\partial T}{\partial t} = \frac{\partial}{\partial x} \left( \chi(T) \frac{\partial T}{\partial x} \right) $$ for a function $T(x, t)$ with the boundary condition $\chi(T) \frac{\partial T}{\partial x} = P$ at $x=x_R$, where $P$ is some constant. My thinking at this point was that \begin{align} \frac{\partial T}{\partial t} \biggr|_{x=x_R} & = \frac{\partial}{\partial x} \left( \chi(T) \frac{\partial T}{\partial x}\biggr|_{x=x_R} \right)\\ &=\frac{\partial}{\partial x} \left( P \right)\\ &= 0 \\ \implies T(x_R, t) &=constant \end{align} and in particular that $T(x_R, t) = T(x_R, 0)$ but when I asked my lecturer about it they said that I "couldn't just apply that equation to that point" and I'm not sure what he means. Should I instead be evaluating $$\frac{\partial T}{\partial t} \biggr|_{x=x_R} = \frac{\partial}{\partial x} \left( \chi(T) \frac{\partial T}{\partial x} \right)\biggr|_{x=x_R} $$

1

There are 1 best solutions below

0
On

The problem is not applying the heat equation to the boundary point. The problem is a more basic one that has nothing to do with PDE:

Your argument basically is that if $ f (0)=0$ then $ \frac{d}{dx}_{|x=0 }f (x)=\frac{d}{dx} 0=0$. This is obviously nonsense.

EDIT: Woops, just read the final part of your question. Yes, that's what you should be evaluating.