Application Center - Maplesoft

App Preview:

Solitons of KdV Equation

You can switch back to the summary page by clicking here.

Learn about Maple
Download Application


 

solKdV.mws

Solitons of KdV Equation

by Constantin Rasinariu, Ph.D.

Columbia College Chicago

Department of Science and Mathematics

600 S. Michigan Ave

Chicago, IL 60605
E-mail: crasinariu@popmail.colum.edu

1. Introduction and fundamental concepts.

Definition. A soliton is a localized traveling wave that scatters elastically.

One of the most studied nonlinear differential equation in mathematical physics is the Korteweg-de Vries

equation (KdV) :

diff(u(x,t),t)+6*u(x,t)*diff(u(x,t),x)+diff(u(x,t),... .

KdV equation has solitonic solutions.

This one-dimensional equation (that is one spatial dimension plus time) is completely

integrable and gives rise to an infinite number of conservation laws.

Solutions of KdV equation can be systematically obtained from solutions psi[i] of of the free particle
Schroedinger equation:

-diff(psi[i],`$`(x,2)) = E[i]*psi[i] ,

via the Wronskian formula

u(x,t) = 2*diff(ln(W),`$`(x,2))

where

W = W(psi[1],psi[2] .. psi[n])

is the Wronkian determinant composed of psi[i](xi[i]) whereas xi[i] stands for

xi[i] = k[i]*(x-4*k[i]^2*t) for E[i] < 0 , and xi[i] = k[i]*(x+4*k[i]^2*t) for 0 < E[i] .

2. Symbolic calculation

> restart:

> with(linalg):

Warning, the protected names norm and trace have been redefined and unprotected

We design a simple procedure to compute the solution of the KdV equation, once the Wronskian

determinant is given:

> Soliton:=proc(w)
local L;
L := ln(w);
RETURN( simplify(2*diff(L,x$2)) )
end;

Soliton := proc (w) local L; L := ln(w); RETURN(sim...

>

2.1 One-soliton solution

We consider W = psi(xi) where psi(xi) = cosh(xi) corresponds to a negative energy E of associated Schroedinger equation.

> xi:= k*(x-4*k^2*t);

xi := k*(x-4*k^2*t)

> psi:= cosh(xi);

psi := cosh(k*(x-4*k^2*t))

The Wronksi matrix is

> MW1:=Wronskian([psi],x);

MW1 := matrix([[cosh(k*(x-4*k^2*t))]])

and its determinant reads:

> W1:=det(MW1);

W1 := cosh(k*(x-4*k^2*t))

Therefore we obtain :

> u1:=Soliton(W1);

u1 := 2*k^2/(cosh(k*(x-4*k^2*t))^2)

Is this result a solution of the KdV equation?

> KdV:=diff(u(x,t),t)+6*u(x,t)*diff(u(x,t),x)+diff(u(x,t),x$3);

KdV := diff(u(x,t),t)+6*u(x,t)*diff(u(x,t),x)+diff(...

> simplify(subs(u(x,t)=u1,KdV) );

0

>

2.2 Two-soliton solution

We consider in this case W = W(psi[1](xi[1]),psi[2](xi[2])) where psi[1](xi[1]) = cosh(xi[1]) , psi[2](xi[2]) = sinh(xi[2])

> xi[1]:= k[1]*(x-4*k[1]^2*t);xi[2]:= k[2]*(x-4*k[2]^2*t);

xi[1] := k[1]*(x-4*k[1]^2*t)

xi[2] := k[2]*(x-4*k[2]^2*t)

> psi[1]:=cosh(xi[1]); psi[2]:= sinh(xi[2]);

psi[1] := cosh(k[1]*(x-4*k[1]^2*t))

psi[2] := sinh(k[2]*(x-4*k[2]^2*t))

The Wronski matrix:

> MW2:=Wronskian([psi[1],psi[2]],x);

MW2 := matrix([[cosh(k[1]*(x-4*k[1]^2*t)), sinh(k[2...

has the determinant:

> W2:=det(MW2);

W2 := cosh(k[1]*(-x+4*k[1]^2*t))*cosh(k[2]*(-x+4*k[...

and the corresponding two-soliton solution:

> u2:=Soliton(W2);

u2 := -2*(k[2]^2*cosh(k[1]*(-x+4*k[1]^2*t))^2*k[1]^...
u2 := -2*(k[2]^2*cosh(k[1]*(-x+4*k[1]^2*t))^2*k[1]^...
u2 := -2*(k[2]^2*cosh(k[1]*(-x+4*k[1]^2*t))^2*k[1]^...

Check that it is a solution of KdV equation:

> KdV;

diff(u(x,t),t)+6*u(x,t)*diff(u(x,t),x)+diff(u(x,t),...

> simplify(subs(u(x,t)=u2,KdV) );

0

>

3. Visualisation

3.1. One-soliton solution

The simplest one-soliton solution of KdV is:

> u1;

2*k^2/(cosh(k*(x-4*k^2*t))^2)

Then we can graph the solution. Below is presented a static soliton with k = 0.5, t = - 10.

> with(plots):

Warning, the name changecoords has been redefined

> plot(subs({k=.5,t=-10},u1), x=-20..20,thickness=2);

[Maple Plot]

Or, this solution can be animated, to emphasise the propagating nature of the solution soluion:

> animate(
subs(k=.5,u1),x=-20..20, t=-10..10,
numpoints=200,frames=50,color = red,thickness=2);

[Maple Plot]

> soliton1:=%:

> soliton2:=animate(
subs(k=1,u1),x=-45..45, t=-10..10,
numpoints=300,frames=50,color = blue):

The speed and the amplitude of the soliton depend on the value of k .

> display(soliton1,soliton2);

[Maple Plot]

>

3.2. Two-soliton solution (Scattering)

> u2;

-2*(k[2]^2*cosh(k[1]*(-x+4*k[1]^2*t))^2*k[1]^2-k[2]...
-2*(k[2]^2*cosh(k[1]*(-x+4*k[1]^2*t))^2*k[1]^2-k[2]...
-2*(k[2]^2*cosh(k[1]*(-x+4*k[1]^2*t))^2*k[1]^2-k[2]...

> plot(
subs({k[1]=0.5, k[2]=1., t=-10},u2),x = -45..45,
color=yellow, thickness=2, numpoints=300);

[Maple Plot]

> animate(
subs({k[1]=0.5, k[2]=1.},u2),x = -45..45, t= -10..10,
color=yellow, thickness=2, numpoints=300,frames=50);

[Maple Plot]

> soliton22:=%:

> display(soliton1,soliton2,soliton22);

[Maple Plot]

After a collision, solitons remarkably regain their original shape and velocity. A phase shift (i.e. a change in the position they would have reached without interaction) is the only remaining effect of the scattering.

>

4. Conclusions

(a) One of the most exciting features of the nonlinear evolution equations of the integrable models is that they posses localized nonlinear waves called solitons as solutions.
(b) Solitons scatter elastically, exhibiting striking stability properties through a balance of dispersion and nonlinearity. These features are clearly exposed in many-soliton collisions. After a collision, solitons remarkably regain their original shape and velocity. A phase shift (i.e. a change in the position they would have reached without interaction) is the only remaining effect of the scattering.
(c) The conservation laws which fully determine the dynamics of the integrable systems are also responsible for keeping both the shape and the size of soliton waves invariant. This provides a conceptual link to integrable models as a natural setup for the theory of solitons.

5. Appendix: Catching the soliton

Soliton on the Scott Russell Aqueduct on the Union Canal near Heriot-Watt University, 12 July 1995. [Maple OLE 2.0 Object]