Hi all!
I have a metric that depends on a perturbation parameter epsilon. The unperturbed part of the metric described an elettrically charged black-hole.
I want to compute the Ricci scalar and the Weyl tensor up to first order in the perturbation parameter epsilon.
I am trying to enforce the expansion by setting
$CVSimplify = Function[Together[Normal[Series[#, {\[Epsilon], 0, 1}]]]]
However, xCoba takes a lot of time. By contract, if I set $CVSimplify to its default value, the computation is pretty fast. How can I solve it? How can I speed up the computation at the linear order in the perturbation parameter?
Thanks.
P.S. I would like to avoid to set $CVSimplify=Simplify, because later on I have to deal with expressions like CD[a]@CD[b]@T[c,d], where CD are the covariant derivatives and T[c,d] are generic tensors. The computation of these terms gets very lenghty if I set $CVSimplify=Simplify, but since I only need linear terms in \[Epsilon] it should be enough to compute all the Christoffel symbols at the linear order in \[Epsilon], and this should simplify these computations.