Maple Professional
Maple Academic
Maple Student Edition
Maple Personal Edition
Maple Player
Maple Player for iPad
MapleSim Professional
MapleSim Academic
Maple T.A. - Testing & Assessment
Maple T.A. MAA Placement Test Suite
Möbius - Online Courseware
Machine Design / Industrial Automation
Aerospace
Vehicle Engineering
Robotics
Power Industries
System Simulation and Analysis
Model development for HIL
Plant Modeling for Control Design
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematics Education
Engineering Education
High Schools & Two-Year Colleges
Testing & Assessment
Students
Financial Modeling
Operations Research
High Performance Computing
Physics
Live Webinars
Recorded Webinars
Upcoming Events
MaplePrimes
Maplesoft Blog
Maplesoft Membership
Maple Ambassador Program
MapleCloud
Technical Whitepapers
E-Mail Newsletters
Maple Books
Math Matters
Application Center
MapleSim Model Gallery
User Case Studies
Exploring Engineering Fundamentals
Teaching Concepts with Maple
Maplesoft Welcome Center
Teacher Resource Center
Student Help Center
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