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
DifferentialGeometry[Flow] - calculate the one parameter group of differeomorphisms (flow) of a vector field
Calling Sequence
Flow(X, var, options)
Parameters
X
-
a vector field
var
an unassigned Maple name, the flow parameter
options
optional arguments to pass to the Maple command dsolve for solving the ordinary differential equations for the flow
Description
The flow of a vector field X on a manifold M is a one parameter group of transformations Phi_t: M -> M such that for all p in M, diff(Phi_t(p), t) = X(Phi_t(p)) and Phi_0(p) = p. For each fixed t, Phi_t is a local diffeomorphism of M and Phi_t o Phi_s = Phi_(t + s).
The flow of X is calculated by solving a first order system of ordinary differential equations with the Maple dsolve command.
If dsolve fails to solve these odes, the Flow command returns NULL.
The command Flow returns a transformation whose domain and range coincide with the manifold on which X is defined.
With the option ode = true, the system of odes (with initial conditions) defining the flow is returned.
With the option initialpoint = [x1 = a, x2 = b, ...], the flow though the specific point [a, b, ...] is calculated.
With the option dsolvehints = [hints], the list of optional arguments hints is passed to dsolve.
A customized ode solver can be used in place of dsolve though the use of the Preference command.
This command is part of the DifferentialGeometry package, and so can be used in the form Flow(...) only after executing the command with(DifferentialGeometry). It can always be used in the long form DifferentialGeometry:-Flow.
Examples
Example 1.
Calculate the flow Phi_t for the vector field X.
Flow plots
Plot the flows for various initial conditions:
We check that Phi_s o Phi_t is Phi_(t + s).
We check that the derivative of the flow with respect to t coincides with the vector field evaluated along the flow:
Differentiate the components of this curve with respect to t.
Example 2.
We find the flow of the vector X through the point (1, 0, 0).
Example 3.
We obtain the ode defining the flow for X. The result consists of a sequence of 3 sets: the ode, the initial conditions, and the dependent variables.
Example 4.
See Also
DifferentialGeometry, ApplyTransformation, ComposeTransformations, InfinitesimalTransformation, Preferences, Transformation
Download Help Document