tensor
create
create a new tensor_type object
Calling Sequence
Parameters
Description
Examples
create( index_character, components)
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
Important: The tensor package has been deprecated. Use the superseding commands DifferentialGeometry[evalDG] and Physics[Define] instead.
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 a⁢bc+d 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](..).
with⁡tensor:
Create a 2-tensor of mixed character with components stored in the array "cmpts".
cmpts≔array⁡a,b,c,d,e,f,g,h,i
cmpts≔abcdefghi
create⁡−1,1,cmpts
table⁡index_char=−1,1,compts=cmpts
Create a zero-rank tensor with "component" arctan(y/x).
create⁡,arctan⁡yx
table⁡index_char=,compts=arctan⁡yx
Create a 2-tensor of mixed character by directly entering the components.
create⁡−1,1,array⁡a,b,c,d,e,f,g,h,i
table⁡index_char=−1,1,compts=abcdefghi
Create the contravariant Euclidean 3-space metric (2-tensor) in spherical-polar coordinates.
A≔create⁡1,1,array⁡1,0,0,0,1r2,0,0,0,1r2⁢sin⁡θ2
A≔table⁡index_char=1,1,compts=10001r20001r2⁢sin⁡θ2
See Also
DifferentialGeometry[evalDG]
Physics
Physics[Define]
tensor(deprecated)
Download Help Document