Wednesday, 6 February 2008

Recentering a Spherical Coordinate Sytem

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(phiphi0right)+cos(theta)cosleft(theta0right)right)+r20



theta=cos1left(fracrcos(theta)+r0cosleft(theta0right)sqrtr2+2r0rleft(sin(theta)sinleft(theta0right)cosleft(phiphi0right)+cos(theta)cosleft(theta0right)right)+r20right)



phi=tan1left(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