In 1958, Kiyoo Mogi published a paper in which he described remarkable deformation of Sakurajima volcano during and following its 1914 eruption. He documented subsidence following the eruption of tens of centimeters up to 17 km from the volcano's vent. The pattern of subsidence was radially symmetric about a point near the location of the volcanic vent, so Mogi realized the pattern of deformation of the ground surface provided insight about the change in pressure beneath the volcano during the eruption.
His paper is well-known today primarily because he went on to develop a mathematical model to describe the change in pressure within the Earth necessary to explain the observed radial pattern of surface deformation. The model is elegant in its simplifying assumptions and useful because deformation is associated with a variety of processes, such as subsidence due to groundwater withdrawal, or inflation of volcanoes prior to some eruptions. Mogi's solution approximates the pressure source as a point source. It is valid only if the radius of the sphere is much smaller than its depth.
The following sketch illustrates Mogi's calculation for a sub-surface point-like pressure source. The sphere (large white circle in the illustration) represents the position of the point-like pressure source in the sub-surface. The mouse is used to change the position of the point-like source and the calculation is updated for the position. Adjust the excess pressure, $\Delta P$, using the slider bar. The deformation observed at the surface is shown in terms of vertical displacement ($w$, mm) (white small circles) and horizontal displacement ($u$, yellow small circles). Note that the sign of the horizontal displacement changes across the point-like source. To the left of the source the horizontal displacement is in the negative $x$-direction and to the right of the point-like source the surface displacement is in the positive $x$-direction. In other words, the magnitude of surface displacement is radially symmetric with respect to the point-like source.
For this calculation, The radius of the point-like source is 0.5 km, the shear modulus, $G = 3 \times 10^4$ MPa (30 GPa), and Poisson's ratio is $\sigma = 0.25$.
The following image describes the geometry of the problem. The point-like source, centered on point $O$, has radius $a$ and is located at depth $d$, where $a << d$. The displacement is calculated at point $S$, located at the surface a radial distance $x$ from $O$. The point-like pressure source has excess pressure, $\Delta P$, which results in displacement at the Earth's surface (blue shaded line), which is described by the two vectors $w$ and $u$.
The point $S$ is a distance from the center of the pressure source, $O$: $$r = \sqrt{x^2 + d^2}.$$ $x$ is the radial distance and $d$ is the depth (positive downward).
The surface displacements produced by change in excess pressure within a spherical cavity in two dimensions are given by: $$\begin{pmatrix}u\\w\end{pmatrix} = a^3\Delta P\frac{1-v}{G(x^2+d^2)^\frac{3}{2}} \begin{pmatrix}x\\d\end{pmatrix}$$ where:
Notice that the displacement is directly proportional to the excess pressure, $\Delta P$. Changing $\Delta P$ changes the amplitude of the displacement. The displacement is inversely proportional to the shear modulus, $G$. The ratio $\frac{\Delta P}{G}$ controls the amplitude of the displacement. The surface displacement is directly proportional to the original volume of the source ($a^3$). The displacement is nonlinearly related to horizontal distance and depth, $x$ and $d$, respectively.
In an elastic medium, the change of volume of the source can be approximated as $\pi a^3 \Delta P/G$. Mogi’s solution is often expressed in terms of volume change to avoid the trade-off between pressure and original volume of the source. Change in volume is related to the pressure acting over the surface area of the sphere. The deformation expected from an equivalent change in volume is: $$\begin{pmatrix}u\\w\end{pmatrix} = \frac{\Delta V (1-v)}{\pi (x^2+d^2)^\frac{3}{2}} \begin{pmatrix}x\\d\end{pmatrix}$$
This model assumes that:
This p5.js script creates the animation shown above. The script calculates the displacement due to the point source shown in the figure above and plots the displacement values along the surface line.
The following python code calculates the vertical displacement using the Mogi solution as a function. The calculated displacement is compared with the data collected on deflation of Sakurajima volcano following the 1914 eruption. The survey data were collected using precise line levelling. The displacements are found by calculating the differences in elevations at permanent survey markers between surveys in 1893 and 1914, following the eruption. The data indicate there was dramatic deflation of the volcano edifice following the eruption in June, 1914, likely due to depressurization of a magma reservoir. The survey data were collected by F. Omori and were reported in Mogi (1958).
The script includes python functions for vertical and horizontal displacements. It is necessary to have python modules installed to run the script. The modules required are:
The python script can be cut and paste into a jupyter notebook, or run using any python version 3 environment.
The python script outputs this figure, showing the calculated vertical displacement (blue line) as a function of distance from the center of deflation. The displacement data collected by Omori are shown as solid blue circles. Changing the model parameters in the python script will change the fit between the Mogi model and Omori's observations.
The Mogi model provides a means of estimating the volume of material "missing" from the subsurface following the 1914 eruption and comparison with the volume of magma erupted. The Mogi model is fit to the observed displacements (see the python script and graph), then these parameters are used to calculate the change in radial distance from the volcano as a function of vertical displacement. This function defines a solid of revolution, so integration over the range from zero displacement to the maximum displacement (at $x = 0$) gives the volume of the solid, in this case the volume of material missing as reflected in the observed radially symmetric ground deformation.
First, create a lumped parameter to simplify the algebra: $$\zeta = \frac{a^3 |\Delta P| (1-v)}{G}$$ Then, recast Mogi's equation as the radial distance in terms of magnitude of vertical displacement, $|w|$: $$x = \sqrt{\left [ \frac{\zeta d}{|w|}\right ]^{2/3} - d^2}$$ Now, find the volume of the solid of revolution, rotating about the vertical (displacement) axis: $$V = \pi \int_0^{|w_{max}|} \left [\left [ \frac{\zeta d}{|w|}\right ]^{2/3} - d^2 \right ] d|w|$$ where $|w_{max}|$ is the maximum amplitude of vertical displacement at $x = 0$. Solving: $$V = 3 \pi \zeta^{2/3} d^{2/3} |w_{max}|^{1/3} - \pi d^2 |w_{max}|$$ For displacements following the 1914 Sakurajima eruption, the model (python script) uses depth, $d = 10000$ m, excess pressure, $\Delta P = -400$ MPa, rock shear strength, $G = 30000$ MPa, pressure source radius, $a = 2500$ m, and Poisson's ratio, $v = 0.25$. The maximum vertical displacement calculated for these parameters at $x=0$ m is $|w_{max}| = 1.5625$ m. These parameters yield volume, $V = 0.98$ km$^3$. This is the volume missing, represented by the deflation of the ground around the volcano following the eruption. The volume missing due to deflation is not quite the same as the volume of the magma chamber, because the surrounding rock is compressible ($v < 0.5$). Delaney and McTigue (1994) showed that for a point-like pressure source: $$\frac{\Delta V_{surface}}{\Delta V_{chamber}} = 2(1-v) $$ In the above calculations, it is assumed that Poisson's ratio is $v = 0.25$. Given $\Delta V_{surface} = 0.98$ km$^3$, $\Delta V_{chamber} = 0.65$ km$^3$. The volume of lava reported to have erupted in the months to years following the January, 1914 eruption is reported to be 0.5 to 1.5 km$^3$, with a much smaller volume of tephra reported: $0.09 \pm 0.03$ km$^3$ (Ishihara et al., 1981, Todde et al., 2017). It appears that most of the eruption volume was emitted by the time of Omori's June, 1914 survey based on historical accounts, as the isthmus connecting Sakurajima island with the mainland formed by lava flow inundation by April, 1914 (Ishihara et al., 1981). Although there are large uncertainties in the volume estimates, it appears that the volume erupted (in dense rock equivalent) agrees well with the volume needed to account for the observed ground deflation following the 1914 eruption. This correlation between deflation and volume erupted suggests there can also be correlation between magnitude of inflation and available magma to erupt, which is why deformation data and models, like the Mogi model, are widely used to monitor active volcanoes.
The following LaTeX and TikZ code draws the figure of the model geometry presented at the top of the page.