tensor(deprecated)/d1metric - 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)/d1metric

tensor

  

d1metric

  

compute the first partial derivatives of the covariant metric tensor components

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

d1metric( g, coord)

Parameters

g

-

covariant metric tensor

coord

-

list of names representing the coordinate variables

Description

Important: The tensor package has been deprecated. Use the superseding packages DifferentialGeometry and Physics instead.

• 

Given the coordinate variables, coord, and the covariant metric tensor, g, d1metric( g, coord ) computes the partial derivatives of g, which will be a new tensor_type of rank three and which uses the `cf1` indexing function provided by the tensor package to implement the symmetry in the first two indices of the partials.  Thus, the symmetry of the metric components is preserved by the d1metric function.

• 

g must be a rank two tensor_type with character [-1,-1] and must use Maple's symmetric indexing function for its component array.

• 

The extra index due to differentiation is of covariant character, by convention. Thus, the index_char field of the result is [-1, -1, -1].

• 

Indexing Function: The `cf1` indexing function is used to implement the symmetry properties of the first partials of the covariant metric tensor components (it is also used for the Christoffel symbols of the first kind, hence the name `cf1`). Specifically, it implements the symmetry in the first and second indices of a three index quantity.

• 

Simplification:  This routine uses the `tensor/d1metric/simp` routine for simplification purposes.  The simplification routine is applied to each component of result after it is computed.  By default, `tensor/d1metric/simp` is initialized to the `tensor/simp` routine.  It is recommended that the `tensor/d1metric/simp` routine be customized to suit the needs of the particular problem. For example, if the metric component functions are not fully known but are known to satisfy certain differential equations, the `tensor/d2metric/simp` routine could be used to make substitutions for the partial derivatives of these functions.

• 

To compute the second partials of the metric components while preserving the symmetry in the metric components and in the second partials, use tensor[d2metric]. For computing the partial derivatives of the components of an arbitrary tensor, use tensor[partial_diff].

• 

This function is part of the tensor package, and so can be used in the form d1metric(..) only after performing the command with(tensor) or with(tensor, d1metric).  The function can always be accessed in the long form tensor[d1metric](..).

Examples

Important: The tensor package has been deprecated. Use the superseding packages DifferentialGeometry and Physics instead.

withtensor:

Define the coordinate variables and the covariant components of the Schwarzchild metric.

coordt,r,θ,φ:

g_comptsarraysymmetric,sparse,1..4,1..4:

g_compts1,112mr:g_compts2,21g_compts1,1:

g_compts3,3r2:g_compts4,4r2sinθ2:

gcreate1,1,evalg_compts

gtablecompts=12mr0000112mr0000r20000r2sinθ2,index_char=−1,−1

(1)

Compute the first partials of g:

d1gd1metricg,coord

d1gtablecompts=arraycf1,1..4,1..4,1..4,1,1,1=0,1,1,2=2mr2,1,1,3=0,1,1,4=0,1,2,1=0,1,2,2=0,1,2,3=0,1,2,4=0,1,3,1=0,1,3,2=0,1,3,3=0,1,3,4=0,1,4,1=0,1,4,2=0,1,4,3=0,1,4,4=0,2,1,1=0,2,1,2=0,2,1,3=0,2,1,4=0,2,2,1=0,2,2,2=2mr+2m2,2,2,3=0,2,2,4=0,2,3,1=0,2,3,2=0,2,3,3=0,2,3,4=0,2,4,1=0,2,4,2=0,2,4,3=0,2,4,4=0,3,1,1=0,3,1,2=0,3,1,3=0,3,1,4=0,3,2,1=0,3,2,2=0,3,2,3=0,3,2,4=0,3,3,1=0,3,3,2=2r,3,3,3=0,3,3,4=0,3,4,1=0,3,4,2=0,3,4,3=0,3,4,4=0,4,1,1=0,4,1,2=0,4,1,3=0,4,1,4=0,4,2,1=0,4,2,2=0,4,2,3=0,4,2,4=0,4,3,1=0,4,3,2=0,4,3,3=0,4,3,4=0,4,4,1=0,4,4,2=2rsinθ2,4,4,3=sin2θr2,4,4,4=0,index_char=−1,−1,−1

(2)

See Also

Physics[Christoffel]

Physics[D_]

Physics[d_]

Physics[Einstein]

Physics[g_]

Physics[LeviCivita]

Physics[Ricci]

Physics[Riemann]

Physics[Weyl]

tensor(deprecated)

tensor(deprecated)/partial_diff

tensor(deprecated)[d2metric]

tensor(deprecated)[indexing]

tensor(deprecated)[simp]