You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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?)
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:
42
44
@@ -48,9 +50,9 @@ x & = ct + k \\
48
50
x - ct & = k.
49
51
\end{aligned} $$
50
52
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.$
52
54
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
54
56
55
57
$$ u(t,x) = v(t, \xi) = v(t, x - ct). $$
56
58
@@ -68,7 +70,7 @@ Substituting our terms from (c) into (a) gives us
68
70
$$ \begin{aligned}
69
71
v_t - c v_{\xi} + c v_{\xi} & = 0 \\
70
72
v_t = \frac{dv}{dt} = 0.
71
-
\end{aligned} $$
73
+
\end{aligned} \tag{d} $$
72
74
73
75
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.
74
76
@@ -80,6 +82,30 @@ v(t, \xi) - v(0, x_0) & = 0 \\
80
82
v(t, \xi) & = v(0, x_0). \\
81
83
\end{aligned} $$
82
84
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
+
84
111
85
-
Since we defined $u(t,x) = v(t, \xi),$ so our solution is $u(t,x) = f(x - ct).$
0 commit comments