tensor(deprecated)/create - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


Home : Support : Online Help : tensor(deprecated)/create

tensor

  

create

  

create a new tensor_type object

 

Calling Sequence

Parameters

Description

Examples

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

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 abc+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](..).

Examples

Important: The tensor package has been deprecated. Use the superseding commands DifferentialGeometry[evalDG] and Physics[Define] instead.

withtensor:

Create a 2-tensor of mixed character with components stored in the array "cmpts".

cmptsarraya,b,c,d,e,f,g,h,i

cmptsabcdefghi

(1)

create1,1,cmpts

tableindex_char=−1,1,compts=cmpts

(2)

Create a zero-rank tensor with "component" arctan(y/x).

create,arctanyx

tableindex_char=,compts=arctanyx

(3)

Create a 2-tensor of mixed character by directly entering the components.

create1,1,arraya,b,c,d,e,f,g,h,i

tableindex_char=−1,1,compts=abcdefghi

(4)

Create the contravariant Euclidean 3-space metric (2-tensor) in spherical-polar coordinates.

Acreate1,1,array1,0,0,0,1r2,0,0,0,1r2sinθ2

Atableindex_char=1,1,compts=10001r20001r2sinθ2

(5)

See Also

DifferentialGeometry[evalDG]

Physics

Physics[Define]

tensor(deprecated)