Similarity Solutions of Partial Differential Equations
Similarity Solutions of Partial Differential Equations
differential equations
• Similarity solutions
• Associated stretching groups
• Asymptotic behaviour
• Case studies
The solution to the PDE is a surface in the (x, t, c) space. Its general
equation is
F (x, t, c) = 0
The equation is invariant to the stretching group
β α
F (λx, λ t, λ c) = 0
Differentiating it with respect to λ, then setting λ = 1 leads to
xFx + βtFt + αcFc = 0
whose characteristic form is
dx dt dc dF
= = =
x βt αc 0
Similarity and Transport Phenomena in Fluid Dynamics 4
o
Stretching groups: similarity solutions
Rottman, J.W., and J.E. Simpson, Gravity currents produced by instantaneous releases of a heavy fluid in a rectangular channel, J. Fluid Mech., 135, 95-110, 1
Gratton, J., and C. Vigo, Self-similar gravity currents with variable inflow revisited: plane currents, J. Fluid Mech., 258, 77-104, 1994.
Hint: Show that the PDE is invariant to a stretching group. Solve the
principal equation. Use the Matlab built-in function pdepe to solve the
equation numerically. You can also use an implicit scheme, e.g.
Crank-Nicolson. (Scripts on the website).
volume = 0.1;
temps = [0:0.1:1 2:0.5:20 21:5:40 40:10:100 200:100:1000];
[x,t,h] = newton(0.1,10,2500,temps);
figure
for i = 1:length(t)
hold on
plot (x,h(i,:))
end
hold off