This is going to be unsightly...
The following Mathematica code:
Needs["VectorAnalysis`"]
Simplify@ CoordinatesFromCartesian[
CoordinatesToCartesian[{r, theta, phi}, Spherical]
+ CoordinatesToCartesian[{r0, theta0, phi0}, Spherical],
Spherical
]
gives the following output (doctored so that it looks nicer):
r′=sqrtr2+2r0rleft(sin(theta)sinleft(theta0right)cosleft(phi−phi0right)+cos(theta)cosleft(theta0right)right)+r20
theta′=cos−1left(fracrcos(theta)+r0cosleft(theta0right)sqrtr2+2r0rleft(sin(theta)sinleft(theta0right)cosleft(phi−phi0right)+cos(theta)cosleft(theta0right)right)+r20right)
phi′=tan−1left(rsin(theta)cos(phi)+r0sinleft(theta0right)cosleft(phi0right),rsin(theta)sin(phi)+r0sinleft(theta0right)sinleft(phi0right)right)
In this last line, there is a two-argument variant of arctan, which is explained here, for example.
No comments:
Post a Comment