Metric manifold
A Riemannian manifold always consists of a topological manifold together with a smoothly varying metric $g$.
However, often there is an implicitly assumed (default) metric, like the usual inner product on Euclidean
space. This decorator takes this into account. It is not necessary to use this decorator if you implement just one (or the first) metric. If you later introduce a second, the old (first) metric can be used with the (non MetricManifold
) AbstractManifold
, i.e. without an explicitly stated metric.
This manifold decorator serves two purposes:
- to implement different metrics (e.g. in closed form) for one
AbstractManifold
- to provide a way to compute geodesics on manifolds, where this
AbstractMetric
does not yield closed formula.
Note that a metric manifold is an AbstractConnectionManifold
with the LeviCivitaConnection
of the metric $g$, and thus a large part of metric manifold's functionality relies on this.
Let's first look at the provided types.
Types
Manifolds.AbstractMetric
β TypeAbstractMetric
Abstract type for the pseudo-Riemannian metric tensor $g$, a family of smoothly varying inner products on the tangent space. See inner
.
Functor
(metric::Metric)(M::Manifold)
Generate the MetricManifold
that wraps the manifold M
with given metric
. This works for both a variable containing the metric as well as a subtype T<:AbstractMetric
, where a zero parameter constructor T()
is availabe.
Manifolds.MetricManifold
β TypeMetricManifold{π½,M<:AbstractManifold{π½},G<:AbstractMetric} <: AbstractDecoratorManifold{π½}
Equip a AbstractManifold
explicitly with a AbstractMetric
G
.
For a Metric AbstractManifold, by default, assumes, that you implement the linear form from local_metric
in order to evaluate the exponential map.
If the corresponding AbstractMetric
G
yields closed form formulae for e.g. the exponential map and this is implemented directly (without solving the ode), you can of course still implement that directly.
Constructor
MetricManifold(M, G)
Generate the AbstractManifold
M
as a manifold with the AbstractMetric
G
.
Manifolds.RiemannianMetric
β TypeRiemannianMetric <: AbstractMetric
Abstract type for Riemannian metrics, a family of positive definite inner products. The positive definite property means that for $X β T_p \mathcal M$, the inner product $g(X, X) > 0$ whenever $X$ is not the zero vector.
Implement Different Metrics on the same Manifold
In order to distinguish different metrics on one manifold, one can introduce two AbstractMetric
s and use this type to dispatch on the metric, see SymmetricPositiveDefinite
. To avoid overhead, one AbstractMetric
can then be marked as being the default, i.e. the one that is used, when no MetricManifold
decorator is present. This avoids reimplementation of the first existing metric, access to the metric-dependent functions that were implemented using the undecorated manifold, as well as the transparent fallback of the corresponding MetricManifold
with default metric to the undecorated implementations. This does not cause any runtime overhead. Introducing a default AbstractMetric
serves a better readability of the code when working with different metrics.
Implementation of Metrics
For the case that a local_metric
is implemented as a bilinear form that is positive definite, the following further functions are provided, unless the corresponding AbstractMetric
is marked as default β then the fallbacks mentioned in the last section are used for e.g. the exp!
onential map.
Base.log
β Methodlog(N::MetricManifold{M,G}, p, q)
Copute the logarithmic map on the AbstractManifold
M
equipped with the AbstractMetric
G
.
If the metric was declared the default metric using is_default_metric
, this method falls back to log(M,p,q)
. Otherwise, you have to provide an implementation for the non-default AbstractMetric
G
metric within its MetricManifold
{M,G}
.
Manifolds.christoffel_symbols_first
β Methodchristoffel_symbols_first(
M::MetricManifold,
p,
B::AbstractBasis;
backend::AbstractDiffBackend = diff_backend(),
)
Compute the Christoffel symbols of the first kind in local coordinates of basis B
. The Christoffel symbols are (in Einstein summation convention)
\[Ξ_{ijk} = \frac{1}{2} \Bigl[g_{kj,i} + g_{ik,j} - g_{ij,k}\Bigr],\]
where $g_{ij,k}=\frac{β}{β p^k} g_{ij}$ is the coordinate derivative of the local representation of the metric tensor. The dimensions of the resulting multi-dimensional array are ordered $(i,j,k)$.
Manifolds.connection
β Methodconnection(::MetricManifold)
Return the LeviCivitaConnection
for a metric manifold.
Manifolds.det_local_metric
β Methoddet_local_metric(M::AbstractManifold, p, B::AbstractBasis)
Return the determinant of local matrix representation of the metric tensor $g$, i.e. of the matrix $G(p)$ representing the metric in the tangent space at $p$ with as a matrix.
See also local_metric
Manifolds.einstein_tensor
β Methodeinstein_tensor(M::AbstractManifold, p, B::AbstractBasis; backend::AbstractDiffBackend = diff_backend())
Compute the Einstein tensor of the manifold M
at the point p
, see https://en.wikipedia.org/wiki/Einstein_tensor
Manifolds.flat
β Methodflat(N::MetricManifold{M,G}, p, X::FVector{TangentSpaceType})
Compute the musical isomorphism to transform the tangent vector X
from the AbstractManifold
M
equipped with AbstractMetric
G
to a cotangent by computing
\[X^β= G_p X,\]
where $G_p$ is the local matrix representation of G
, see local_metric
Manifolds.inverse_local_metric
β Methodinverse_local_metric(M::AbstractcManifold, p, B::AbstractBasis)
Return the local matrix representation of the inverse metric (cometric) tensor, usually written $g^{ij}$.
See also local_metric
Manifolds.is_default_metric
β Methodis_default_metric(M, G)
Indicate whether the AbstractMetric
G
is the default metric for the AbstractManifold
M
. This means that any occurence of MetricManifold
(M,G) where typeof(is_default_metric(M,G)) = true
falls back to just be called with M
such that the AbstractManifold
M
implicitly has this metric, for example if this was the first one implemented or is the one most commonly assumed to be used.
Manifolds.is_default_metric
β Methodis_default_metric(MM::MetricManifold)
Indicate whether the AbstractMetric
MM.G
is the default metric for the AbstractManifold
MM.manifold,
within the MetricManifold
MM
. This means that any occurence of MetricManifold
(MM.manifold, MM.G)
where is_default_metric(MM.manifold, MM.G)) = true
falls back to just be called with MM.manifold,
such that the AbstractManifold
MM.manifold
implicitly has the metric MM.G
, for example if this was the first one implemented or is the one most commonly assumed to be used.
Manifolds.local_metric
β Methodlocal_metric(M::AbstractManifold, p, B::AbstractBasis)
Return the local matrix representation at the point p
of the metric tensor $g$ with respect to the AbstractBasis
B
on the AbstractManifold
M
, usually written $g_{ij}$. The matrix has the property that $g(X, Y)=X^\mathrm{T} [g_{ij}] Y = g_{ij} X^i Y^j$, where the latter expression uses Einstein summation convention. The metric tensor is such that the formula works for the given AbstractBasis
B
.
Manifolds.local_metric_jacobian
β Methodlocal_metric_jacobian(
M::AbstractManifold,
p,
B::AbstractBasis;
backend::AbstractDiffBackend = diff_backend(),
)
Get partial derivatives of the local metric of M
at p
in basis B
with respect to the coordinates of p
, $\frac{β}{β p^k} g_{ij} = g_{ij,k}$. The dimensions of the resulting multi-dimensional array are ordered $(i,j,k)$.
Manifolds.log_local_metric_density
β Methodlog_local_metric_density(M::AbstractManifold, p, B::AbstractBasis)
Return the natural logarithm of the metric density $Ο$ of M
at p
, which is given by $Ο = \log \sqrt{|\det [g_{ij}]|}$ for the metric tensor expressed in basis B
.
Manifolds.metric
β Methodmetric(M::MetricManifold)
Get the metric $g$ of the manifold M
.
Manifolds.ricci_curvature
β Methodricci_curvature(M::AbstractManifold, p, B::AbstractBasis; backend::AbstractDiffBackend = diff_backend())
Compute the Ricci scalar curvature of the manifold M
at the point p
using basis B
. The curvature is computed as the trace of the Ricci curvature tensor with respect to the metric, that is $R=g^{ij}R_{ij}$ where $R$ is the scalar Ricci curvature at p
, $g^{ij}$ is the inverse local metric (see inverse_local_metric
) at p
and $R_{ij}$ is the Riccie curvature tensor, see ricci_tensor
. Both the tensor and inverse local metric are expressed in local coordinates defined by B
, and the formula uses the Einstein summation convention.
Manifolds.sharp
β Methodsharp(N::MetricManifold{M,G}, p, ΞΎ::FVector{CotangentSpaceType})
Compute the musical isomorphism to transform the cotangent vector ΞΎ
from the AbstractManifold
M
equipped with AbstractMetric
G
to a tangent by computing
\[ΞΎ^β― = G_p^{-1} ΞΎ,\]
where $G_p$ is the local matrix representation of G
, i.e. one employs inverse_local_metric
here to obtain $G_p^{-1}$.
ManifoldsBase.inner
β Methodinner(N::MetricManifold{M,G}, p, X, Y)
Compute the inner product of X
and Y
from the tangent space at p
on the AbstractManifold
M
using the AbstractMetric
G
. If G
is the default metric (see is_default_metric
) this is done using inner(M, p, X, Y)
, otherwise the local_metric
(M, p)
is employed as
\[g_p(X, Y) = β¨X, G_p Yβ©,\]
where $G_p$ is the loal matrix representation of the AbstractMetric
G
.
Metrics, charts and bases of vector spaces
Metric-related functions, similarly to connection-related functions, need to operate in a basis of a vector space, see here.
Metric-related functions can take bases of associated tangent spaces as arguments. For example local_metric
can take the basis of the tangent space it is supposed to operate on instead of a custom basis of the space of symmetric bilinear operators.