Permeability is a measure of how easily fluid can flow through a porous medium, such as rock or soil. In a radial system, fluid flows from a wellbore to the surrounding reservoir, or vice versa. The permeability of the reservoir may vary in different directions and layers, so we need to calculate an average permeability that represents the overall flow behavior.
There are two ways to arrange flow units (small sections of the reservoir) in a radial system: in series or in parallel. In series, the fluid has to pass through each flow unit one by one, so the average permeability is the harmonic mean of the individual permeabilities. In parallel, the fluid can flow through different flow units at the same time, so the average permeability is the weighted mean of the individual permeabilities.
The harmonic mean is calculated by dividing the number of flow units by the sum of the reciprocals of the permeabilities. The weighted mean is calculated by multiplying each permeability by its corresponding fraction of the total area or volume, and then adding them up.
Basic Theory:
In radial flow, the Darcy’s law for radial systems is given by:
where:
- is the flow rate,
- is the permeability,
- is the thickness of the reservoir,
- and are the inner and outer radii of the reservoir,
- is the pressure difference.
Average permeability () is calculated using the harmonic mean formula:
where is the number of layers.
Procedures:
- Gather Data: Collect reservoir data including permeability values (), layer thicknesses (), and radii ( and ).
- Excel Setup:
- Create an Excel table with columns for layer index, permeability, thickness, inner radius, and outer radius.
- Enter the data into the table.
- Calculations:
- In a new column, use the Darcy’s law formula to calculate the flow rate for each layer.
- Use the harmonic mean formula to find the average permeability.
- Scenario:Consider a reservoir with three layers:
- Layer 1: , , ,
- Layer 2: , , ,
- Layer 3: , , ,
Excel Calculation:
- Apply the Darcy’s law formula to calculate flow rates.
- Use the harmonic mean formula to find the average permeability.
MATLAB Comparison:
For MATLAB users, a similar calculation can be done using the following script:
% MATLAB script
k_values = [100, 200, 150]; % Permeability values in mD
h_values = [50, 75, 60]; % Thickness values in ft
r1_values = [1000, 1500, 2000]; % Inner radius values in ft
r2_values = [1500, 2000, 2500]; % Outer radius values in ft
flow_rates = (2 * pi * k_values .* h_values) ./ log(r2_values ./ r1_values);
k_avg = 1 / mean(1 ./ k_values);
fprintf('Average Permeability: %.2f mD\n', k_avg);
Result:
For the given scenario, the calculated average permeability using Excel is . This result can be compared with the MATLAB result to ensure accuracy and consistency in calculations.