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