Processing math: 100%

First time here? Check out the FAQ!

Ask Your Question
0

Covariant derivative

asked 1 year ago

Richard_L gravatar image

I understand how to compute the Levi-Civita connection on a pseudo-Riemannian manifold. I would like now to use it to compute the covariant derivative in various directions, as hinted in the code commentary to class Levi-Civita Connections. Is there a already existing method which I am overlooking or must I use explicit sums over coefficient indices?

Preview: (hide)

1 Answer

Sort by » oldest newest most voted
2

answered 1 year ago

eric_g gravatar image

updated 1 year ago

No, there is no dedicated method to compute the covariant derivative of a tensor field along a given vector field. You have to perform the contraction with the vector field explicitly. Note that you can use the method contract to avoid explicit sums on the indices. For instance, to compute the covariant derivative vT of a tensor field T along the vector field v, simply write

nabla(T).contract(v)

It would be desirable though to implement a method covariant_derivative to perform this directly, by writing

T.covariant_derivative(v, connection=nabla)

which could be shortened to

T.covariant_derivative(v)

when there exists a default connection, e.g. on a pseudo-Riemannian manifold. This would be on the same footing as the existing method for the Lie derivative: T.lie_derivative(v) evaluates LvT.

Preview: (hide)
link

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

1 follower

Stats

Asked: 1 year ago

Seen: 246 times

Last updated: Aug 31 '23