Tensor[NPBianchiIdentities] - calculate the Newman-Penrose version of the Bianchi identities
Calling Sequences
NPBianchiIdentities(SpinCoeff, RicciCoeff, WeylCoeff, Idlist, NTetrad, ConjCoord)
Parameters
SpinCoeff - a table, the Newman Penrose spin coefficients
RicciCoeff - a table, the Newman Penrose Ricci coefficients
WeylCoeff - a table, the Newman Penrose Weyl coefficients
Idlist - a list of strings, the Bianchi identities to be computed
NTetrad - (optional) a list of 4 vectors defining a null tetrad
ConjCoord - (optional) keyword argument conjugatecoordinates = CC, where CC is a list of lists specifying conjugate coordinates
|
Description
|
|
•
|
The Newman-Penrose Bianchi identities are a set of 11 equations which encode the usual differential Bianchi identities for the curvature tensor in terms of the NP spin coefficients and the NP curvature scalars. The relative simplicity of the Newman-Penrose Bianchi identities underscores the importance of this formalism.
|
•
|
Given the tetrad, the spin-coefficients and the curvature scalars, the command NPBianchiIdentities will calculate a specified list of the Bianchi identities.
|
•
|
The index set for the table SpinCoeff must be {"mu", "nu", "pi", "rho", "tau", "alpha", "beta", "epsilon", "gamma", "kappa", "lambda", "sigma"}.
|
•
|
The index set for the table RicciCoeff must be {"Lambda", "Phi00", "Phi01", "Phi02", "Phi11", "Phi12", "Phi22"}.
|
•
|
The index set for the table WeylCoeff must be {"Psi0", "Psi1", "Psi2", "Psi3", "Psi4"}.
|
•
|
The equation list Idlist is a list of letters, chosen from {"a", "b", ..., "k"} or {"all"}.
|
•
|
If the current frame is defined by a null tetrad, then the 5th argument NTetrad is not required.
|
•
|
This command is part of the DifferentialGeometry:-Tensor package, and so can be used in the form NPBianchiIdentities(...) only after executing the commands with(DifferentialGeometry); with(Tensor); in that order. It can always be used in the long form DifferentialGeometry:-Tensor:-NPBianchiIdentities.
|
|
|
Examples
|
|
>
|
|
Example 1.
Define a manifold S with coordinates [t, x, y, z].
>
|
|
| (2.1) |
Define a metric g.
S >
|
|
| (2.2) |
Define a null tetrad NTetrad for the metric g. Verify that this is a null tetrad using GRQuery.
S >
|
|
| (2.3) |
S >
|
|
| (2.4) |
Calculate the NP spin coefficients defined by the null tetrad NTetrad.
S >
|
|
| (2.5) |
Calculate the Newman-Penrose curvature scalars.
S >
|
|
| (2.6) |
Compute Bianchi identity "c" and verify that it is satisfied.
S >
|
|
| (2.7) |
S >
|
|
| (2.8) |
|
|