Maple Professionel
Maple Académique
Maple Edition Étudiant
Maple Personal Edition
Maple Player
Maple Player for iPad
MapleSim Professionel
MapleSim Académique
Maple T.A. - Suite d'examens de classement
Maple T.A. MAA Placement Test Suite
Möbius - Didacticiels de mathématiques en ligne
Machine Design / Industrial Automation
Aéronautique
Ingénierie des véhicules
Robotics
Energie
System Simulation and Analysis
Model development for HIL
Modélisation du procédé pour la conception de systèmes de contrôle
Robotics/Motion Control/Mechatronics
Other Application Areas
Enseignement des mathématiques
Enseignement de l’ingénierie
Enseignement secondaire et supérieur (CPGE, BTS)
Tests et évaluations
Etudiants
Modélisation financière
Recherche opérationnelle
Calcul haute performance
Physique
Webinaires en direct
Webinaires enregistrés
Agenda des évènements
Forum MaplePrimes
Blog Maplesoft
Membres Maplesoft
Maple Ambassador Program
MapleCloud
Livres blancs techniques
Bulletin électronique
Livres Maple
Math Matters
Portail des applications
Galerie de modèles MapleSim
Cas d'Etudes Utilisateur
Exploring Engineering Fundamentals
Concepts d’enseignement avec Maple
Centre d’accueil utilisateur Maplesoft
Centre de ressources pour enseignants
Centre d’assistance aux étudiants
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