Maple Professionel
Maple Académique
Maple Edition Étudiant
Maple Personal Edition
Maple Player
Maple Player for iPad
MapleSim Professionel
MapleSim Académique
Maple T.A. - Suite d'examens de classement
Maple T.A. MAA Placement Test Suite
Möbius - Didacticiels de mathématiques en ligne
Machine Design / Industrial Automation
Aéronautique
Ingénierie des véhicules
Robotics
Energie
System Simulation and Analysis
Model development for HIL
Modélisation du procédé pour la conception de systèmes de contrôle
Robotics/Motion Control/Mechatronics
Other Application Areas
Enseignement des mathématiques
Enseignement de l’ingénierie
Enseignement secondaire et supérieur (CPGE, BTS)
Tests et évaluations
Etudiants
Modélisation financière
Recherche opérationnelle
Calcul haute performance
Physique
Webinaires en direct
Webinaires enregistrés
Agenda des évènements
Forum MaplePrimes
Blog Maplesoft
Membres Maplesoft
Maple Ambassador Program
MapleCloud
Livres blancs techniques
Bulletin électronique
Livres Maple
Math Matters
Portail des applications
Galerie de modèles MapleSim
Cas d'Etudes Utilisateur
Exploring Engineering Fundamentals
Concepts d’enseignement avec Maple
Centre d’accueil utilisateur Maplesoft
Centre de ressources pour enseignants
Centre d’assistance aux étudiants
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