Maple für Professional
Maple für Akademiker
Maple für Studenten
Maple Personal Edition
Maple Player
Maple Player für iPad
MapleSim für Professional
MapleSim für Akademiker
Maple T.A. - Testen & beurteilen
Maple T.A. MAA Placement Test Suite
Möbius - Online-Courseware
Machine Design / Industrial Automation
Luft- und Raumfahrt
Fahrzeugtechnik
Robotics
Energiebranche
System Simulation and Analysis
Model development for HIL
Anlagenmodelle für den Regelungsentwurf
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematikausbildung
Technik
Allgemein- und berufsbildende Schulen
Testen und beurteilen
Studierende
Finanzmodelle
Betriebsforschung
Hochleistungsrechnen
Physik
Live-Webinare
Aufgezeichnete Webinare
Geplante Veranstaltungen
MaplePrimes
Maplesoft-Blog
Maplesoft-Mitgliedschaft
Maple Ambassador Program
MapleCloud
Technische Whitepapers
E-Mail Newsletters
Maple-Bücher
Math Matters
Anwendungs-Center
MapleSim Modell-Galerie
Anwenderberichte
Exploring Engineering Fundamentals
Lehrkonzepte mit Maple
Maplesoft Welcome-Center
Resource-Center für Lehrer
Help-Center für Studierende
PDEtools[charstrip] - find the characteristic strip corresponding to a given first order partial differential equation
PDEtools[splitstrip] - divide the characteristic strip into uncoupled subsets
Calling Sequence
charstrip(PDE, f)
splitstrip(PDE, f)
Parameters
PDE
-
partial differential equation
f
indeterminate function
Description
These commands work only on first order PDEs, and return the given PDEs characteristic system depending on a parameter _s.
The splitstrip command returns the characteristic system divided into subsets, each one containing equations uncoupled with the ODEs of the other subsets. Depending on the PDE, this splitting of the characteristic system may strongly simplify its solving.
The Maple command usually used for solving coupled systems of ODEs (that is, the subsets returned by splitstrip) is dsolve. However, dsolve's strength is in solving single ODEs, not systems of ODEs. The PDEtools package, therefore, has an additional command for uncoupling systems of ODEs, which automatically sends the uncoupled ODEs obtained to dsolve, one at a time, to try solving the system sequentially. This often leads to the desired result (see ?dsolve,system).
Furthermore, it is possible to use the characteristic strip method for solving first order PDEs, by calling pdsolve with the option HINT = strip (see ?pdsolve).
This function is part of the PDEtools package, and so it can be used in the form charstrip(..) only after executing the command with(PDEtools). However, it can always be accessed through the long form of the command by using PDEtools[charstrip](..).
Examples
This system can now be solved using dsolve.
The system was solved by coupling the ODEs above and splitting the set into three subsets, which are mutually uncoupled.
This makes it possible to solve each ODE separately.
See Also
dchange, dsolve, pdetest, PDEtools, pdsolve
Download Help Document