Hello everyone, this is the first time I write in this forum. Also, im new at xAct (and xCoba).
My issue is that I want to get an specific tensor contraction (for example the Ricci tensor). But when I take the "ToValues" operation, Mathematica doesn't compute the upper index components.
For example, this is what i do with the Schuarzschild metric:
DefManifold[M, 4, {a, b, c, d, e, i, j}]
DefChart[A, M, {0, 1, 2, 3}, {t[], r[], \[Theta][], \[Phi][]}]
DefMetric[-1, g[-i, -j], CD, {";", "\[CapitalDelta]"}]
MetricInBasis[g, -A, DiagonalMatrix[{-(1 - r0/r[]), (1 - r0/r[])^-1, r[]^2,
Sin[\[Theta][]]^2}]]
MetricCompute[g, A, All]
TraceBasisDummy[RicciCD[{a, A}, {b, A}] RicciCD[{-a, -A}, {-b, -A}]]
% // ToValues
And the output is:
(r0 (r0 - r[]) RicciCD[{0, A}, {0, A}])/(2 r[]^4) - ( r0 RicciCD[{1, A}, {1, A}])/(2 (r0 - r[]) r[]^2) + (Cot[\[Theta][]] RicciCD[{1, A}, {2, A}])/r[]
+ (Cot[\[Theta][]] RicciCD[{2, A}, {1, A}])/r[] + (1 - r0/r[]) RicciCD[{2, A}, {2, A}] + (RicciCD[{3, A}, {3, A}] Sin[\[Theta][]]^2)/r[]^2
I think that the problem must be related to xCoba not computing the upper index tensors. Is there any way to do this? Or am i missing something else?
Any help would be appreciated.
Gus.
PS: I dont know if this question has already been asked before, I searched in the forum but didnt find anything.