7
$\begingroup$

This question is part astronomy and part mathematics. I'm aware it involves “basic” trigonometry, but my brain is short-circuiting.

From my calculations, the distance from the center of Saturn where a satellite orbiting over the equator would have an orbital period equal to Saturn's rotational period is $112,240$ km.

If Saturn were a perfect sphere, simple trignometry would suffice to find out at which latitude the planet's curvature gets in the way and stops the satellite from being visible. (If I'm not mistaken, 58.74° North or South is the maximum latitude from which said satellite would be visible if Saturn where spherical. This was calculated using Saturn's mean volumetric radius of 58,232 km as given by the NASA fact sheet.)

Unfortunately, Saturn is very much not spherical and is noticeably wider at the equator than at the poles. Since Saturn is an oblate spheroid, the maximum latitude from which a geostationary satellite over the equator would be visible is less than 58.74°. But by how much, exactly?

I don't know, and that's why I'm asking. I have a very limited understanding of trignometry and it completely breaks apart when discussing an oblate spheroid instead of a sphere. This question probably fits better in the mathematics substack, but since its inception is completely based in astronomy I figured this is a good place as any to ask.

$\endgroup$
6
  • 1
    $\begingroup$ Different but very related question in Math SE: Calculating surface of ellipsoid visible from any point outside of it There may be some helpful oblate Earth visibility from orbit answers in Space SE as well. $\endgroup$
    – uhoh
    Commented Jan 3, 2022 at 8:41
  • 1
    $\begingroup$ @uhoh Thank you for pointing out that thread. I'd be lying if I said I understood anything, but it's a step in the right direction. $\endgroup$
    – user177107
    Commented Jan 3, 2022 at 11:16
  • 1
    $\begingroup$ ya those are there just as much to be helpful to those daring to try to answer and to future readers as they are for the OP (original post author, i.e. you). Hopefully they may help someone to arrive at a useful answer. $\endgroup$
    – uhoh
    Commented Jan 3, 2022 at 11:20
  • $\begingroup$ The tool for answering this is "planetographic latitude." This coordinate gives the direction of the surface normal (zenith direction), so the horizon angle would just be 90° from that. Wikipedia probably gives good planetographic/planetocentric definitions, and some good equations are here: pds-atmospheres.nmsu.edu/education_and_outreach/encyclopedia/… $\endgroup$
    – giardia
    Commented Jan 3, 2022 at 17:31
  • $\begingroup$ Just re-do the calculation assuming Saturn is a sphere, but use the polar radius rather than the equatorial radius. $\endgroup$ Commented Jan 3, 2022 at 18:42

2 Answers 2

3
$\begingroup$

Here is a diagram with the quantities we need to solve this:

enter image description here

From Kepler's 3rd Law, the "kronostationary" satellite---marked by a green dot---is located at a = 1.86 Req, where Req is the equatorial radius and Rpol is the polar radius (Python calculations dumped at the bottom of the post). The NASA PDS Atmospheres Encyclopedia gives values for the radius of Saturn and useful formulas on its latitude page, and a value for the rotation rate on the longitude page.

At the planetographic latitude ($\phi$g) of the location we want, the line of sight (green) forms a right angle with the local vertical (blue). This sets up a pair of similar triangles as shown. From the big one, we have:

$$ \tan{\phi_{\textrm{g}}} = \frac{a - R_{\textrm{cyl}}}{z} $$

We can use the equation for an ellipse to express z in terms of Rcyl:

$$ \frac{R_{\textrm{cyl}}^2}{R_{\textrm{eq}}^2} + \frac{z^2}{R_{\textrm{pol}}^2} = 1 $$ $$ z = \frac{R_{\textrm{pol}}}{R_{\textrm{eq}}} \sqrt{R_{\textrm{eq}}^2 - R_{\textrm{cyl}}^2} $$

We can then use the pink-red-red triangle to relate $\phi$c and Rcyl, eliminating z using the equation above:

$$ \tan{\phi_{\textrm{c}}} = \frac{z}{R_{\textrm{cyl}}} = \frac{R_{\textrm{pol}}}{R_{\textrm{eq}} R_{\textrm{cyl}}} \sqrt{R_{\textrm{eq}}^2 - R_{\textrm{cyl}}^2} $$

The PDS Atmospheres formulas relate $\phi$g and $\phi$c:

$$ \tan{\phi_{\textrm{c}}} = \left(\frac{R_{\textrm{pol}}}{R_{\textrm{eq}}}\right)^2 \tan{\phi_{\textrm{g}}} $$

Combining the first and last equations, and eliminating z, gives a surprisingly simple equation:

$$ R_{\textrm{cyl}} = \frac{R_{\textrm{eq}}^2}{a} = 32362\ \textrm{km} $$

Plugging this value of Rcyl into the equations above gives:

  • Planetocentric latitude 54.8°
  • Planetographic latitude 60.1°

Actual visibility and survivability of this satellite are not great. The kronostationary radius would put this satellite within the B ring, which is "the largest, brightest, and most massive of the rings:"

enter image description here


Calculations:

import numpy as np

R_eq = 60268. # km
R_pol = 54364. # km
GMsat = 37931206.159 # km^3/s^2
P_sat = 10.656 * 60.**2. # s

# Kepler's 3rd law: a is the kronocentric distance (circular orbit)
a = (P_sat**2 * GMsat / 4 / (np.pi)**2)**(1/3.)
print("Kronocentric distance,")
print("   a (R_sat): ", a / R_eq)
print("   a (km): ", a)
print("   altitude (km): ", a - R_eq)
print("  ")

# solve for R_cyl
R_cyl = R_eq**2. / a
print("R_cyl: ", R_cyl)
print("  ")

# get latitude
lat_centric = np.arctan(R_pol / R_eq / R_cyl * (R_eq**2. - R_cyl**2.)**0.5)
lat_graphic = np.arctan(R_eq**2. / R_pol**2. * np.tan(lat_centric))
print("lat_centric: ", lat_centric * 180./np.pi)
print("lat_graphic: ", lat_graphic * 180./np.pi)
print("  ")

Kronocentric distance,
   a (R_sat):  1.862330120959813
   a (km):  112238.91173000602
   altitude (km):  51970.91173000602
  
R_cyl:  32361.60942773073
  
lat_centric:  54.79195278661741
lat_graphic:  60.13756294902166

Verification:

Using Cosmographia to generate a view of Saturn's horizon at $\phi$g = 60.1°, you can see just into the B-ring:

enter image description here

$\endgroup$
1
  • 1
    $\begingroup$ Thank you, i can now die in peace without this bugging me :) $\endgroup$
    – user177107
    Commented Jan 5, 2022 at 6:11
2
$\begingroup$

This is an interesting puzzle. The key is to work in the Cartesian plane.

Consider an oblate planet with an equatorial radius $a$, and a polar radius $b$. Because, as you point out, planets are slightly squashed toward the poles, $a > b$ for all planets. If we look at the planet in profile, we can describe the shape of the planet as an ellipse with semi-major axis $a$, and semi-minor axis $b$.

If we place the centre of the planet at the origin of a plane, we can describe the surface of the planet that intersects the plane as a curve traced out by the set of points $p = (a\cos{\theta}, b\sin{\theta})$, where $\theta$ is the angle subtended by the equator and a line from the equator to $p$.

Cartoon two-dimensional view of the problem If there is a satellite in a stationary orbit around the planet, it will orbit at an altitude $R$ above the equator. Its Cartesian coordinates are $(R, 0)$.

For a given point $p$ on the surface of the planet, the slope of a line drawn between $p$ and the satellite is

$$ m = \frac{y_2 - y_1}{x_2 - x_1}= \frac{b\sin{\theta}}{a\cos{\theta} - R} $$

With this slope in hand, all we need to do is choose the angle $\theta$ so that slope $m$ is perpendicular to a vector from the center of the planet to the point $p$. The slope of this second vector, $m_2$, is simply $b\sin{\theta} / a\cos{\theta}$, and the two lines are perpendicular if the product of their slopes is -1

$$ \frac{b\sin{\theta}}{a\cos{\theta} - R} \cdot \frac{b\sin{\theta}}{ a\cos{\theta}} = -1 $$

or $$ b^2\sin^2{\theta} = -1(a^2\cos^2{\theta} - aR\cos{\theta} ) $$

Recognising that $\sin^2{\theta} = 1 - \cos^2{\theta}$, and skipping a few lines of algebra, we get

$$ (b^2 -a^2)\cos^2{\theta} + aR\cos{\theta} - b^2 = 0 $$

which we can solve quadratically to get $\theta$

This angle is the highest latitude where the satellite can be seen. Observers at different longitudes than the satellite will need to be closer to the equator

$\endgroup$
5
  • 1
    $\begingroup$ This is a nice start to an answer, but can you follow through - instead of writing "which we can solve quadratically... this angle is the highest latitude," can you explain and fully solve the problem so users who are less experienced with mathematics can understand? $\endgroup$
    – WarpPrime
    Commented Jan 3, 2022 at 20:20
  • 2
    $\begingroup$ I don't believe this answer is correct. For an ellipse, one can't assume that a line tangent to a point on the ellipse is perpendicular to the segment from that point to the center of the ellipse. $\endgroup$
    – Connor Garcia
    Commented Jan 4, 2022 at 1:53
  • 1
    $\begingroup$ If I solved correctly, then the maximum latitude from which a geostationary satellite at 112,240 km would be visible is 62.75°, which seems wrong $\endgroup$
    – user177107
    Commented Jan 4, 2022 at 8:06
  • 2
    $\begingroup$ @connorgarcia, Oh, you are correct. I was assuming the tangent is perpendicular to the radial vector, but now that you point it out I realize that only applies to a circle. If you replace the slope $m_2$ with the correct slope to the tangent to the ellipse, the argument should hold. I'll figure out how to do that and update the answer. $\endgroup$
    – Fergal
    Commented Jan 4, 2022 at 14:33
  • 1
    $\begingroup$ @Fergal Yes, I think this change will make the answer correct. Also your layout of this problem is quite nice. Hint: If $P=(x_1,y_1)$, then the equation of the tangent line at $P$ will be $xx_1/a^2+yy_1/b^2=1$. $\endgroup$
    – Connor Garcia
    Commented Jan 4, 2022 at 17:09

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .