I am trying to solve for the Viscous Burgers Equation on a Ring
$$ u_t + u u_x = \nu u_{xx};\; (x,t) \in [0,1) \times \mathbb{R}_+ $$
$$ u(x,0) = \phi(x) $$
$$ u(0,t) = u(1,t) $$
$$ u_x(0,t) = u_x(1,t). $$
From a Cole-Hopf transformation, this equation can be turned into a Heat Equation
$$ u(x,t) \rightarrow \phi_x(x,t);\quad \phi(x,t) \rightarrow -2\nu\log(\psi(x,t)) $$
$$ \psi_t = \nu \psi_{xx} $$
$$ (*) \quad u(x,t) = \phi_x(x,t) = -2\nu \frac{\psi_x(x,t)}{\psi(x,t)}. $$
Here are my questions:
- How do I handle the boundary and initial conditions from the Burgers equation into the converted Heat Equation?
- The heat equation can be solved via separation of variables, $\psi(x,t) = X(x)T(t)$. If we take this form however and shove it into $(*)$, we get
$$ u(x,t) = -2\nu\frac{\psi_x(x,t)}{\psi(x,t)} = -2\nu\frac{X'(x)T(t)}{X(x)T(t)} = -2\nu\frac{X'(x)}{X(x)} $$
which is independent in time. Is there something being done wrong?
\in) to denote set inclusion, not epsilon. – K.defaoite Dec 10 '23 at 04:02I think my biggest confusion is in how the Boundary Conditions for the Burgers Equation translate to the Boundary Conditions to the Heat Equation. Perhaps if that was clear to me, the inseparability of the Heat Equation would be obvious.
– user3166083 Dec 10 '23 at 04:48