We consider the potential and gravitational attraction of a circular disc in the plane \(z=0\) aligned with the z axis.
Figure 8.1: A circular disc of radius \(a\) aligned with the axis \(z=0\).
8.1 Potential along the z axis
To obtain the potential at the \(z\)-axis we integrate over the surface area of the disc: \[
V(z) = -f \frac{m}{r} = -2 \pi f \rho_F \int\limits_{r=0}^a \frac{r \, \dd r}{\sqrt{ r^2 + z^2 }}
\] with \(r^2 = x^2 + y^2\).
import sympy as spfrom sympy import pi, oox, y, z = sp.symbols('x y z', real=True)r, f, a, rho = sp.symbols('r f a rho_F', real=True, positive=True)V = sp.integrate(-2* pi * f *rho * r / sp.sqrt(r**2+ z**2), (r, 0, a))V.simplify()
Figure 8.3: Vertical attraction of a circular disc of radius \(a\) coplanar with \(z=0\).
The vertical component of the gravitational attraction obviously has a jump, which equals \(4 \pi f \rho_F\).
Show the code
sp.limit(g, z, 0, '-') - sp.limit(g, z, 0, '+')
\(\displaystyle 4 \pi f \rho_{F}\)
8.3 Potential and attraction of a vertical cylinder
The cylinder is composed of circular discs with infinitely small thickness and constant radius \(a\). The integration of an aligned stack of such discs yields a cylinder.
Figure 8.4: A co-axial stack of circular discs from \(z=\) to \(z=h\) forming a vertical cylinder of length \(h\).
We note that
\[
\rho = \int_0^h \rho_F \, \dd z.
\]
We integrate over the attraction for circular discs and obtain for a cylinder enclosed by the two horizontal planes \(z=0\) and \(z=h, h>0\): \[
\begin{align}
g(z) & = 2 \pi f \rho \left(h + \sqrt{ a^2 + z^2 } - \sqrt{ a^2 + (h - z)^{2} }\right) \qfor z < 0 \\
& = 2 \pi f \rho \left(h - 2z + \sqrt{ a^{2} + z^{2}} - \sqrt{ a^2 + (h-z)^{2} }\right) \qfor h > z \\
& = 2 \pi f \rho \left(-h + \sqrt{ a^2 + z^2 } - \sqrt{ a^2 + (h - z)^{2} }\right) \quad\text{otherwise}
\end{align}
\]
Consider the solution for \(z<0\). What happens to \(g(z)\) when \(a\) goes to infinity, i.e., the cylinder turns into an infinite horizontal plate? We depart from the first of the above equations. In \(z<0\) we have \[
g(z) = 2 \pi f \rho \left( h + \sqrt{ a^2 + z^2 } - \sqrt{ a^2 + (h - z)^2 }\right)
\] For \(a \to \infty\) we can expand the square root into a series, e.g. \[
\sqrt{ a^2 + z^2 } = a \sqrt{ 1 + \frac{z^2}{a^2} } \approx a \left( 1 + \frac{z^2}{2a^2} - \dots\right)
\] and \[
\sqrt{ a^2 + (h-z)^2 } = a \sqrt{ 1 + \frac{(h-z)^2}{a^2} } \approx a \left( 1 + \frac{(h-z)^2}{2a^2} - \dots\right)
\] After collecting terms we have \[
g(z) = 2 \pi f \rho \left(h + a \left[ 1 + \frac{z^2}{2a^2} - 1 - \frac{(h-z)^2}{a^2}\right]\right) \approx 2 \pi f \rho_{F}h
\] This is the well-known equation for the vertical attraction above an infinite horozontal plate of thickness \(h\) and density \(\rho\) (Bouguer plate anomaly)