非線性偏微分方程
亨特 - 薩克斯頓方程(Hunter–Saxton equation)是一個模擬向列型液晶中波動傳播的非線性偏微分方程:
以下是利用Maple的軟件包TWSolution求亨特 - 薩克斯頓方程的行波解
restart;with(PDEtools, TWSolutions, declare):
sys := {diff(u(x, t), x, t)+(diff(u(x, t), x))^2+u(x, t)*(diff(u(x, t), x, x)) = (1/2)*(diff(u(x, t), x))^2}:
>
> TWS := TWSolutions(sys, extended);
>
>
> _C1 := 1.2; _C3 := 2.3; _C4 := .88; _C5 := 1.5; _C2 := .88;
> f1 := op(TWS[1]);
>f2 := op(TWS[2])
> f3 := op(TWS[3]);
> with(plots);
> animate(complexplot3d, [f[1], x = -15-I .. 15+I, title = "Hunter Saxton nlpde animation", titlefont = [TIMES, ROMAN, 18], labels = [x, "", ""]], t = 0 .. 30);
> animate(complexplot3d, [f[2], x = -15-I .. 15+I, title = "Hunter Saxton nlpde animation", titlefont = [TIMES, ROMAN, 18], labels = [x, "", ""]], t = 0 .. 30);
> animate(complexplot3d, [f[3], x = -15-I .. 15+I, title = "Hunter Saxton nlpde animation", titlefont = [TIMES, ROMAN, 18], labels = [x, "", ""]], t = 0 .. 30);