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
LieAlgebras[ChangeLieAlgebraTo] - change the current frame to the frame for a Lie algebra
Calling Sequences
ChangeLieAlgebraTo(AlgName)
Parameters
AlgName - name or string, the name of an initialized Lie algebra
Description
With the DifferentialGeometry package, the user can create many manifolds (coordinate systems) and Lie algebras within a single Maple session. The structure equations and other attributes of these manifolds and Lie algebras are all stored in memory and are accessible at any time. However, at any given moment one manifold or Lie algebra has the preferred status of the current frame. The default value of the current frame is the frame in which the most recent calculation was performed or the most recent object displayed.
The DifferentialGeometry:-DGinfo("currentFrame") returns the value of the current frame.
The command ChangeLieAlgebraTo(AlgName) simply changes the current frame to the frame for the Lie algebra AlgName. It returns the name of the previous frame.
The command ChangeLieAlgebraTo is part of the DifferentialGeometry:-LieAlgebras package. It can be used in the form ChangeLieAlgebraTo(...) only after executing the commands with(DifferentialGeometry) and with(LieAlgebras), but can always be used by executing DifferentialGeometry:-LieAlgebras:-ChangeLieAlgebraTo(...).
Examples
Example 1.
First initialize a pair of Lie algebras.
We used the same names e1 and e2 for vectors in the two algebras Alg1 and Alg2. It is important then to remember that e1 will refer to the first vector in the Lie algebra of the current frame. We can illustrate this by using lprint to display the internal representation of the vector e1 or by using the command Tools:-DGinfo with the keyword "ObjectFrame".
_DG([["vector", Alg1, []], [[[1], 1]]])
Now change to the Lie algebra Alg2 and run the lprint and Tools:-DGinfo commands with the keyword "ObjectFrame".
_DG([["vector", Alg2, []], [[[1], 1]]])
See Also
DifferentialGeometry, LieAlgebras, DGinfo
Download Help Document