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

tensor

  

d2metric

  

compute the second partial derivatives of the covariant metric tensor components

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

d2metric( d1g, coord)

Parameters

d1g

-

first partials of the 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 first partials of the covariant metric tensor, d1g, d2metric( d1g, coord ) computes the second partial derivatives of g, which will be a new tensor_type of rank four and which uses the `d2met` indexing function provided by the tensor package to implement the symmetry in the indices of the second partials.

• 

d1g must be a rank 3 tensor_type with character [-1,-1,-1] and must use the `cf1` indexing function for its component array.  It is recommended that d1g be computed using tensor[d1metric].

• 

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

• 

Indexing Function: The `d2met` indexing function is meant to index the second partials of the covariant metric tensor components. Specifically, it implements the symmetry in the first and second indices (due to the symmetry in the metric components themselves) and the symmetry in the third and fourth indices (due to the symmetry of the mixed partial derivatives) of a four index quantity.

• 

Simplification:  This routine uses the `tensor/d2metric/simp` routine for simplification purposes.  The simplification routine is applied to each component of result after it is computed.  By default, `tensor/d2metric/simp` is initialized to the `tensor/simp` routine.  It is recommended that the `tensor/d2metric/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.

• 

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 d2metric(..) only after performing the command with(tensor) or with(tensor, d2metric).  The function can always be accessed in the long form tensor[d2metric](..).

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,4r2sinth2:

gcreate1,1,evalg_compts

gtablecompts=12mr0000112mr0000r20000r2sinth2,index_char=−1,−1

(1)

Compute the first partials of g:

d1gd1metricg,coord:

Compute the second partials of g:

d2gd2metricd1g,coord:

All indices are covariant

get_chard2g

−1,−1,−1,−1

(2)

comptsget_comptsd2g:

The symmetries in the indices are implemented with indexing:

op1,opcompts

d2met

(3)

Extract only the nonzero entries

map( proc(x) if compts[op(x)]<>0 then op(x)=compts[op(x)] else NULL end if end proc,
   [ indices(compts) ] );

2&comma;2&comma;2&comma;2=4mr+2m3&comma;4&comma;4&comma;2&comma;2=2sinth2&comma;3&comma;3&comma;2&comma;2=−2&comma;1&comma;1&comma;2&comma;2=4mr3

(4)

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)[d1metric]

tensor(deprecated)[indexing]

tensor(deprecated)[simp]