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[build] - build an explicit expression for the indeterminate function from the solution given by the pdsolve command for a PDE
Calling Sequence
build(sol)
Parameters
sol
-
solution returned by the pdsolve command
Description
This command takes a result given by pdsolve and uses it to arrive at an explicit expression for the indeterminate function of the corresponding PDE. This is particularly useful when the PDE was solved using separation of variables, with the corresponding introduction of ODEs, or when automatic changes of variables were realized. In these cases, build will attempt to integrate these ODEs or reintroduce the original variables (or both).
Given a PDE, there are three ways to directly obtain, when possible, a concrete expression for the indeterminate function of the problem, without dealing with the intermediate structure returned by pdsolve. These are:
build(pdsolve(PDE));
This builds the result of pdsolve. Alternatively, you can use
pdsolve(PDE, build);
Finally, you can assign the environment variable _EnvBuildPdsolve to 2 and pdsolve will build any returned result.
_EnvBuildPdsolve := 2;
Although you can assign to directly receive an expression for the indeterminate function, in many cases pdsolve will obtain a result which is not the most general. In those cases, it would be preferable to display the PDE solution structure obtained with the default . That structure contains information relevant to finding a general solution; for instance, using the HINT option of pdsolve and the dchange command.
When, for any reason, a concrete expression for the indeterminate function cannot be built, then partially built results are returned using the same internal PDESolStruc function used by pdsolve (see ?pdsolve).
This function is part of the PDEtools package, and so it can be used in the form build(..) only after executing the command with(PDEtools). However, it can always be accessed through the long form of the command by using PDEtools[build](..).
Examples
See Also
dchange, dsolve, pdetest, PDEtools, pdsolve
Download Help Document