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
tensor[exterior_diff] - Compute the exterior derivative of a completely anti-symmetric covariant tensor.
Calling Sequence
exterior_diff(T, coord)
Parameters
T
-
covariant anti-symmetric tensor or scalar
coord
list of coordinate variable names
Description
The function exterior_diff( T, coord ) computes the exterior derivative of the (covariant) components of the anti-symmetric tensor T and returns them as a tensor_type of rank equal to . The result is totally anti-symmetric and uses the antisymmetric indexing function (unless T is a scalar).
If T is not a scalar or vector, it should be indexed using the antisymmetric indexing function. If it is not indexed using the antisymmetric indexing function and it is not a scalar or vector, then the routine will determine its anti-symmetric part and compare that with the tensor to see if the components are really totally anti-symmetric. If it is found not to be completely anti-symmetric, the routine exits with an error.
The result is computed first by finding the first partials of the tensor components and then antisymmetrizing them.
Simplification: This routine uses the `tensor/lin_com/simp` and `tensor/partial_diff/simp` routines for simplification purposes. The simplification routines are used internally by the partial_diff and antisymmetrize routines as they are called by exterior_diff. By default, `tensor/lin_com/simp` and `tensor/partial_diff/simp` are initialized to the `tensor/simp` routine. It is recommended that these routines be customized to suit the needs of the particular problem.
This command is part of the tensor package, so it can be used in the form exterior_diff(..) only after executing the command with(tensor). However, it can always be accessed through the long from of the command by using tensor[exterior_diff](..).
Examples
Define the coordinates and an arbitrary skew-symmetric second rank tensor:
Now compute the exterior derivative:
Note that the result uses antisymmetric indexing:
See Also
tensor, tensor/exterior_prod, tensor/partial_diff, tensor[antisymmetrize], tensor[simp]
Download Help Document