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[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