7.4. Several metrics
It is possible to work with several metrics on the same vbundle. Of course, not all of them can raise and lower the indices of other tensors because we would inmediately loose track of the metric that was used to move a given index. The situation in xTensor` is as follows. The list of metrics on a vbundle is stored as an upvalue of the vbundle for the function MetricsOfVBundle. The metrics are placed in that list in order of definition. The first metric is considered special and it is the only one which can move indices. All other metrics (called "frozen" metrics) are simply symmetric two-tensors with a Levi-Civita associated connection and a number of associated tensors. For a frozen metric, many of the expected rules do not work.
It is possible to remove the first metric, suddenly converting the second metric into the first of the list. I cannot think of any situation where that could be valid or just safe.
I have never seriously tested this part of the code. Please use it with maximum care!
Currently there is only one metric on TangentM3:
In[586]:=
Out[586]=
We define a second (frozen) metric:
In[587]:=
In[588]:=
Out[588]=
Compare these two results:
In[589]:=
Out[589]=
That is because these three expressions behave very differently:
In[590]:=
Out[590]=
In[591]:=
Out[591]=
In particular the inverse of frozen[-a,-b] is not frozen[a,b], but Invfrozen[a,b]:
In[592]:=
Out[592]=
It is problematic to generalize typical expressions. For example this is not zero now:
In[593]:=
Out[593]=
but this is zero (though it is not encoded):
In[594]:=
Out[594]=
In[595]:=
Created by Mathematica (May 16, 2008) | ![]() |