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[create] - create a new tensor_type object
Calling Sequence
create( index_character, components)
Parameters
index_character
-
list of positive ones (1) and negative ones (-1) specifying the contravariant/covariant character of the indices of the new tensor
components
components of the tensor: array for tensors of nonzero rank, an algebraic for zero-rank tensors
Description
The function create([1,-1], compts_array) returns a tensor_type with "index_char" field set to [1,-1] and "compts" field set to compts_array (where compts_array is either an array or the name of an array).
The contravariant indices (represented by 1) are those indices that appear as superscripts, whereas the covariant indices (represented by -1) are those that appear as subscripts.
The function create([], a*b/(c+d)) returns a tensor_type representing a scalar (zero-rank tensor) with fields "index_char" and "compts" set to and respectively.
When called, create checks its arguments for correct type and for the consistency between the index character and the components fields using a call to `type/tensor_type`. Upon passing those checks, the appropriate tensor_type is returned.
Note that this function is not a necessity but is provided as a convenient way of create new tensors.
This function is part of the tensor package, and so can be used in the form create(..) only after performing the command with(tensor), or with(tensor,create). This function can always be accessed in the long form tensor[create](..).
Examples
Create a 2-tensor of mixed character with components stored in the array "cmpts".
Create a zero-rank tensor with "component" arctan(y/x).
Create a 2-tensor of mixed character by directly entering the components.
Create the contravariant Euclidean 3-space metric (2-tensor) in spherical-polar coordinates.
See Also
tensor
Download Help Document