I have used the CTensor to compute an equation of motion. Everything is ok but the stress tensor F. How can I rewrite this tensor using CTensor. The needed definitions are as follows:
DefManifold[M, 6, {\[Alpha], \[Beta], \[Sigma], \[Delta], \[Iota], \
\[Mu], \[Omicron], \[FinalSigma], \[Tau], \[Upsilon], \[Chi], \
\[Omega], \[Nu], \[Rho], \[Gamma]}]
DefChart[\[ScriptCapitalB], M, {0, 1, 2, 3, 4, 5}, {t[],
r[], \[Eta]1[], \[Zeta]1[], \[Eta]2[], \[Zeta]2[]},
ChartColor -> Blue]
MakeRule[{F[-\[Alpha], -\[Beta]],
CD[-\[Alpha]]@A[-\[Beta]] - CD[-\[Beta]]@A[-\[Alpha]]}]
and A(r) is
A = {h[r[]], 0, 0, 2 h[r[]] m \[Eta]1[], 0, 2 h[r[]] m \[Eta]2[]}.
I am ready to add any information if needed. Thanks.
CD. Also, I believe that you'll need to invokeDefScalarFunction[h]to let xCoba know thathis a scalar function of your coordinates, and it's probably good practice to invokeDefConstantSymbol[m]as well (assuming it is in fact a constant.) – Michael Seifert Jul 16 '19 at 14:41