In the last week I didn’t create any PR which is worth to mention so in this
report I’d like to introduce the concept which we’re going to add vector
module.
Currently, in SymPy we have transformation equations but they’re responsible
only for rotation and translation. We have already implemented the transformation
equations for changing type of coordinate system so we need to somehow deals with
composition of this two kind of transformation. To do that, firstly we need to
implement a method for obtaining transformation equations from rotation matrix.
Secondly, we need to create generic method to compose two transformation. In
vector
module we are in linear regime so from mathematical point of view it is
not complicated. We can do that by SymPy’s .subs()
:
After setting first set of transformation equations we need to substitute the variables by second set of transformation equations.