Note
Go to the end to download the full example code.
Berryman Self Consistent¶
Berryman Self consistent approach for calculating the elastic moduli of N phase composite
import numpy as np
import matplotlib.pyplot as plt
plt.rcParams['font.size']=14
plt.rcParams['font.family']='arial'
import rockphypy # import the module
from rockphypy import EM
from rockphypy import Fluid
Berryman’s self-consistent approximations for N-phase composites are described by the equations:
The question is as follows: Calculate the self-consistent effective bulk and shear moduli, \(K_{eff}^{SC}\) and \(G_{eff}^{SC}\), for a water-saturated rock consisting of spherical quartz grains (aspect ratio \(\alpha\) = 1) and total porosity 0.3. The pore space consists of spherical pores \(\alpha\) = 1 and thin penny-shaped cracks (\(\alpha\) = 1e^−2). The thin cracks have a porosity of 0.01, whereas the remaining porosity (0.29) is made up of the spherical pores.
There are three phases in the composite, i.e. quartz grain, water filled spherical pore, and water filled thin cracks. We can use the method EM.Berryman_sc to easily solve this exercise to find the effective moduli of the composite.
K_eff and G_eff of the composite are 16.80 GPa and 11.56 GPa, respectively
The effective moduli of the two phase composite as a function of the volume fraction of the soft fluid filled crack can be calculated as follow:
# sphinx figure
# sphinx_gallery_thumbnail_number = 1
plt.figure(figsize=(5,5))
plt.plot(frac,K_eff,'-k',lw=3,label='K_eff')
plt.plot(frac,G_eff,'-b',lw=2,label='G_eff')
plt.xlabel('Volume fraction of soft phase')
plt.ylabel('Effective modulus')
plt.legend()

<matplotlib.legend.Legend object at 0x7578c0af5880>
As can be shown in the figure, the effective shear modulus of the two phase composite becomes 0 when the volume fraction of the soft phase is approximately 45% for an aspect ratio of 0.1. this prediction is very similar to the critical porosity model which predicts a suspension of grain in the fluid when the porosity exceeds about 0.4.
However, feel free to change the aspect ratio for the soft phase from 0.1 to 0.01, then the modelling results of the effective shear modulus becomes zero when the volume fraction of the soft phase is approximately 12%.
Total running time of the script: (0 minutes 0.191 seconds)