Skip to content

Commit 36c824b

Browse files
committed
Transport with decay
1 parent 2cf325f commit 36c824b

File tree

1 file changed

+35
-9
lines changed
  • content/applied-math/differential-equations/partial-differential-equations

1 file changed

+35
-9
lines changed

content/applied-math/differential-equations/partial-differential-equations/intro.md

Lines changed: 35 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,17 @@ $$ u(t,x) = f(x), \quad \text{where} \quad f(x) = u(0,x). $$
2828

2929
Note that this solution is a function of the space variable $x$ alone. We only require that $f(x)$ be continuously differentiable (why?). This solution represents a stationary wave - it does not change in time. The initial profile stays frozen in place and the system remains in equilibrium (in the same meaning as equilibrium in dynamical systems - a fixed point?)
3030

31-
# Transport Equation
31+
# Transport Equations
32+
33+
## Basic Transport Equation
3234

3335
The basic transport equation is
3436

35-
$$ u_t + c u_x = 0. \tag{a} $$
37+
$$ u_t + c u_x = 0, \quad u(0, x) = f(x). \tag{a} $$
3638

37-
We'll find its characteristic curves. First, let's parameterize $u(x,t)$ to get $v(t) = u(x(t), t).$ Now,
39+
We'll find its characteristic curves. First, let's parameterize $u(t,x)$ to get $v(t, x(t)) = u(t, x).$ Now,
3840

39-
$$ \frac{dv}{dt} = \frac{\partial u}{\partial x} \frac{dx}{dt} + \frac{\partial u}{\partial t} \frac{dt}{dt} = u_t + \frac{dx}{dt} u_x. \tag{b} $$
41+
$$ \frac{dv}{dt} = \frac{\partial u}{\partial t} \frac{dt}{dt} + \frac{\partial u}{\partial x} \frac{dx}{dt} = u_t + \frac{dx}{dt} u_x. \tag{b} $$
4042

4143
Comparing (b) to (a), we see that if if $u_t + c u_x = 0,$ then $\frac{dx}{dt} = c.$ Now, we solve that ODE:
4244

@@ -48,9 +50,9 @@ x & = ct + k \\
4850
x - ct & = k.
4951
\end{aligned} $$
5052

51-
So, we see that $x - ct$ is constant, and if we let $t=0,$ we get $x_0 = k.$ So, our characteristic curve is $\xi{(x,t)} = x - ct.$
53+
So, we see that $x - ct$ is constant, and if we let $t=0,$ we get $x_0 = k.$ So, our characteristic curve is $\xi{(t,x)} = x - ct.$
5254

53-
Now, we'll let perform a change of variables and let $\xi = x - ct.$ So we have
55+
Now, we'll let perform a change of variables (to a moving coordinate system that will create stations waves) and let $\xi{(t,x)} = x - ct.$ So we have
5456

5557
$$ u(t,x) = v(t, \xi) = v(t, x - ct). $$
5658

@@ -68,7 +70,7 @@ Substituting our terms from (c) into (a) gives us
6870
$$ \begin{aligned}
6971
v_t - c v_{\xi} + c v_{\xi} & = 0 \\
7072
v_t = \frac{dv}{dt} = 0.
71-
\end{aligned} $$
73+
\end{aligned} \tag{d} $$
7274

7375
Note: we can go from $v_t to \frac{dv}{dt}$ because $v(t, x - ct)$ is only a function of $t,$ because $x - ct$ is constant.
7476

@@ -80,6 +82,30 @@ v(t, \xi) - v(0, x_0) & = 0 \\
8082
v(t, \xi) & = v(0, x_0). \\
8183
\end{aligned} $$
8284

83-
We were given that $u(0, x) = f(x),$ and $\frac{dv}{dt} = 0,$ i.e. $v$ doesn't change with time so $v(t, \xi) = v(t, x_0) = v(0, x_0) = f(x_0) = f(\xi) = f(x - ct).$
85+
We were given that $u(0, x) = f(x),$ and found that $\frac{dv}{dt} = 0,$ i.e. $v$ doesn't change with time so $v(t, \xi) = v(t, x_0) = v(0, x_0) = f(x_0) = f(\xi) = f(x - ct).$
86+
87+
Since we defined $u(t,x) = v(t, \xi),$ our solution is $u(t,x) = f(x - ct) = f(\xi)$ for any $f \in C^1.$ This meany any reasonable function of $\xi$ will solve our PDE, i.e. $\xi^2 +1$ or $\cos{\xi}$ will produce a corresponding solution such as $(x-ct)^2 + 1$ or $\cos{(x - ct)}.$
88+
89+
## Transport with Decay
90+
91+
Let $a > 0$ be a positive constant, and $c$ an arbitrary constant. The homogeneous linear first-order partial differential equation
92+
93+
$$ \frac{\partial u}{\partial t} + c \frac{\partial u }{\partial x} + a u = 0 $$
94+
95+
models the transport of, for example, a radioactively decaying solute in a uniform fluid flow with wave speed $c,$ and the coefficient $a$ modeling the rate of decay.
96+
97+
We can reuse the same characteristic as we used in the basic transport equation (since, I believe, it is determined only by the differential terms of the equation.) Then, following what we did in (c) and (d) above we get
98+
99+
$$ \frac{dv}{dt} + av = 0. $$
100+
101+
This is a first order linear differential equation. We find the integrating factor to be $e^{at},$ and the solution to be
102+
103+
$$ e^{at} v(t, \xi) = C. \tag{e} $$
104+
105+
If we let $t = 0, $ we get $v(0, \xi) = f(\xi) = C.$ Then if we divide both sides by $e^{at}$ we get
106+
107+
$$ v(t, \xi) = f(\xi)e^{-at}, $$
108+
109+
and since $u(t,x) = v(t, \xi)$ we have $u(t,x) = f(x - ct)e^{-at}$ as our solution.
110+
84111

85-
Since we defined $u(t,x) = v(t, \xi),$ so our solution is $u(t,x) = f(x - ct).$

0 commit comments

Comments
 (0)