PDEtools
PDEplot
plot the solution to a first order linear or nonlinear partial differential equation
Calling Sequence
Parameters
Description
Examples
PDEplot(PDE, inits, srange, options)
PDE
-
first order PDE containing one indeterminate function of n unknowns
inits
list of n+1 expressions or equations specifying the parametric form of an n−1-dimensional manifold in n+1 dimensions; initial data
srange
the range or ranges of the parameters for the initial data
options
(optional) equations, described in PDEplot_options
The PDEplot command produces the plot of the solution for a first order, linear or nonlinear partial differential equation (PDE), for given initial conditions.
Given initial data consisting of equations of a manifold in n+1-space depending on n−1 parameters (for n=2, this is a curve) through which the required integral hypersurface must pass, the method of characteristics is used to generate the solution, resulting in a system of coupled first order ODEs to which numerical methods can be applied. The default is to use an internal Runge-Kutta fourth order (fixed step size) method. Other dsolve/numeric methods can be chosen by way of the method optional equation. Note, however, that use of these external methods tends to slow considerably the creation of plots.
The first argument, PDE, can be any first order partial differential equation. PDEs involving piecewise functions are handled using hardware arithmetic (evalhf) as of Maple V Release 4. All arguments after the first can be given in any order.
The inits parameter is a list of n+1 elements specifying the parametric form of a curve in n+1-space through which the required integral surface must pass. The elements should depend on n−1 parameters. Using s and t as the parameters with n=3, for example, the elements of the list must be expressions such as f1⁡s,t,f2⁡s,t,f3⁡s,t,f4⁡s,t, or equations of the form x2=f1⁡s,t,u=f2⁡s,t,x1=f3⁡s,t,x3=f4⁡s,t, where the f⁡s,t are explicit expressions of s and t that can be evaluated numerically. The two possible inputs are equivalent but if equations are given the order of the elements is irrelevant.
The srange parameter is a list of ranges for the parameters used in the initial data. It should be given as [s1=a1..b1,s2=a2..b2,...].
If n=2, by default the solution surface is displayed as an opaque, colored membrane, with the initial conditions highlighted in black. For 2<n, by default a sequence of surfaces is shown in animation which together map out the required solution hypersurface. For more information, see plots[animate].
Remaining arguments are interpreted as options which are specified as equations of the form option = value. In particular, the style option allows one to plot the points as points only, or to interpolate them using line mode. See plot3d,option for more information.
This function is part of the PDEtools package, and so it can be used in the form PDEplot(..) only after executing the command with(PDEtools). However, it can always be accessed through the long form of the command by using PDEtools[PDEplot](..).
with⁡PDEtools:
We are given a nonlinear partial differential equation in two independent variables (pde1).
pde1≔diff⁡u⁡x,y,x⁢diff⁡u⁡x,y,y−x⁢y+u⁡x,y=0
pde1≔∂∂xu⁡x,y⁢∂∂yu⁡x,y−x⁢y+u⁡x,y=0
Using the unit circle in the x-y plane as an initial curve, we can explore the integral surface of the partial differential equation using PDEplot.
PDEplot⁡pde1,cos⁡t,sin⁡t,0,t=−π..π,ic_assumptions=diff⁡u⁡x,y,x=−cos⁡t
Because of the nonlinearity of the PDE, there are actually two possible solutions, depending on the values of the derivatives on the initial curve. These values are given using the option `ic_assumptions`.
PDEplot⁡pde1,cos⁡t,sin⁡t,0,t=−π..π,ic_assumptions=diff⁡u⁡x,y,x=cos⁡t
Another example.
pde2≔y2+z⁡x,y2+x2⁢diff⁡z⁡x,y,x−2⁢x⁢y⁢diff⁡z⁡x,y,y−2⁢z⁡x,y⁢x=0
pde2≔y2+z⁡x,y2+x2⁢∂∂xz⁡x,y−2⁢x⁢y⁢∂∂yz⁡x,y−2⁢z⁡x,y⁢x=0
PDEplot⁡pde2,z⁡x,y,t,t,sin⁡π⁢t0.110,t=0..0.1,numchar=40,orientation=−163,56,basechar=true,numsteps=20,20,stepsize=0.15,initcolor=cos⁡t⁢t,style=surfacecontour
The commands to create the plot from the Plotting Guide are
pde3≔sin⁡diff⁡u⁡x,y,z,y=u⁡x,y,z
pde3≔sin⁡∂∂yu⁡x,y,z=u⁡x,y,z
ics≔cos⁡t⁢sin⁡s,cos⁡s⁢cos⁡t,cos⁡t,sin⁡t,t=0..π,s=0..π
PDEplot⁡pde3,ics,numsteps=−5,6,stepsize=0.1,axes=none,style=surface,numchar=16,16,orientation=225,66,lightmodel=light2
More examples are available on the PDEplot_options page.
See Also
DEtools
DEtools[DEplot]
dsolve
dsolve/classical
dsolve/dverk78
dsolve/gear
dsolve/lsode
dsolve/numeric
dsolve/rkf45
PDEplot_options
plot3d
plots[animate]
Download Help Document