Size Factors and Transport Conductance#
Conductance in pore network models#
Consider an arbitrary pore network model such as the one shown below:

For simulating transport in this network, we need to know lots of parameters such as pore sizes, physical properties, etc, but ultimately it comes down to knowing the conductance of the “conduits” in the network. For example, consider simulating Fickian diffusion in a pore network model under steady state conditions. Writing a mass balance around an arbitrary pore
where
Conductance of a single conduit#
Consider a conduit in a pore network model, as shown by the following figure (we assumed spherical pores and cylindrical throats, but this is not necessary):

where L is length, A is the cross-sectional area, and the subscripts
where
Note
A conduit is the assembly of a throat and the two pores it connects. So, conduit
The overall conductance is a function of the pore sizes, throat sizes, and physical properties of the fluid. Since elements of a conduit are connected in series, by electrical circuit analogy, the resistance (inverse of the conductance) of each element can be related to the overall resistance by the following equation:
where the superscripts
For simplicity, let’s assume that the shape of the pores and throats are cylindrical as shown in the figure below:

Based on this assumption, the diffusive conductance of each element can be expressed as (more on how to derive these equations comes later):
Size factors vs. shape factors#
In reality, however, pores/throats are not cylindrical, and the diffusive conductance needs to be corrected. This correction factor is called the shape factor in the network modeling literature, as defined by the following equation:
Warning
We used to use shape factors in OpenPNM in the past, but for the sake of clarity, we removed them and introduced the concept of “size factor” instead. More on this later.
In OpenPNM, we used to follow this terminology, but because the shape factor depends on both geometrical and physical properties, we coined the term size factor,
where
for diffusive transport, and
for fluid flow, where
Built-in size factor models in OpenPNM#
OpenPNM has a number of built-in functions to calculate the size factor, which can be found under openpnm.models.geometry
. Let’s inspect the available diffusive and hydraulic size factor models:
import openpnm as op
op.visualization.set_mpl_style()
op.Workspace().settings.loglevel = 50
diffusive_size_factors = op.models.geometry.diffusive_size_factors
print("\n".join(diffusive_size_factors._funcs.__all__))
spheres_and_cylinders
circles_and_rectangles
cones_and_cylinders
intersecting_cones
hybrid_cones_and_cylinders
trapezoids_and_rectangles
hybrid_trapezoids_and_rectangles
intersecting_trapezoids
pyramids_and_cuboids
intersecting_pyramids
hybrid_pyramids_and_cuboids
cubes_and_cuboids
squares_and_rectangles
intersecting_trapezoids
ncylinders_in_series
import openpnm as op
hydraulic_size_factors = op.models.geometry.hydraulic_size_factors
print("\n".join(hydraulic_size_factors._funcs.__all__))
spheres_and_cylinders
circles_and_rectangles
cones_and_cylinders
intersecting_cones
hybrid_cones_and_cylinders
trapezoids_and_rectangles
intersecting_trapezoids
hybrid_trapezoids_and_rectangles
pyramids_and_cuboids
intersecting_pyramids
hybrid_pyramids_and_cuboids
cubes_and_cuboids
squares_and_rectangles
ncylinders_in_series
Note
The diffusive size factor models can be used for any physics that involves molecular diffusion such as heat conduction, electron transport, etc, and therefore, it is not limited to the diffusive mass transport. The hydraulic size factor models, however, are only applicable to fluid flow algorithms such as StokesFlow
.
Deriving the size factor for arbitrary-shaped pores and throats#
In this section, we will derive the equation for the size factor for arbitrary-shaped pores and throats, then we will apply it to the case of cylindrical pores and throats to retrieve the equations we used in the previous section.
Consider the following conduit, which consists of pore

Note that the choice of spheres and cylinders in the above figure is arbitrary and will not be taken into account in the derivation.
Diffusive size factor#
From the Fick’s law of diffusion, the diffusive mass flow rate between pore
where
Integrating the above equation over the entire conduit, we get:
Note that
and after rearranging, we get:
By comparing the above equation with equations (1), and (2), we can get:
Combining the above equation with the definition of the diffusive size factor,
Canceling the
where
As a test case, let’s consider cylindrical pores and throats. In this case, the cross-sectional area of the each element is given by:
where
which matches what we declared earlier in equation (3).
Hydraulic size factor#
For brevity, we will not go into the nitty-gritty details of the derivation of the hydraulic size factors. Instead, we will give you some pointers on where to start. The derivation of the hydraulic size factors is slightly more involved than that of the diffusive size factors. The main reason is that fluid flow equations need to satisfy two sets of boundary conditions, pressure drop along the domain (
Assuming that the cross-section of the conduit is gradually changing, the pressure drop along the conduit can be approximated by the following equation [1]:
where
From calculus, we know that:
Substituting the above equation into equation (5), we get:
which can further be simplified to:
where the first term in the right-hand-side is the frictional loss, and the second term is the inertial loss. The frictional loss is a function of the conduit geometry, and the inertial loss is a function of the flow rate and the conduit geometry. The frictional loss is usually much larger than the inertial loss, so we can safely ignore the inertial loss to obtain:
Similar to the diffusive transport, the hydraulic conductance is defined as the ratio of the flow rate to the pressure drop as follows:
where
Combining the above equation with the definition of the hydraulic size factor,
from which, we can obtain the hydraulic size factor for each conduit element as follows:
As a test case, consider cylidnrical pores and throats. The specific polar moment of inertia for a cylinder is:
Substituting the above equation and the cross-sectional areas from equation (4) into equation (8), we get:
To verify the above results, we can inspect the Hagen-Poiseuille equation for a cylindrical conduit [3]:
Since the hydraulic size factor is defined as
which matches our derivation.
Conduit vs. element size factor#
So far, we have derived individual equations for the size factor of each conduit element as well the entire conduit (based on resistors in series model). Note that eventually, only the size factor of the entire conduit is used by the algorithms, although as we discussed, it is directly calculated from the size factors of the individual elements.
Almost all of the built-in size factor models in OpenPNM return an Nt by 3 array, where Nt is the number of conduits (same as the number of throats!). The first column is the size factor of the pore on the left side of the conduit, the second column is the size factor of the throat, and the third column is the size factor of the pore on the right side of the conduit.
However, we do have one model (at the time of writing this notebook) that uses a machine learning method [4] to predict the diffusive size factor of the entire conduit directly from a voxel image of the porous medium. For this reason, it only returns an Nt by 1 vector. Our built-in conductance models (which take in the size factor and physical properties as input and return the conductance) are designed to work with both types of size factor models.