Average permeability is a way of representing the overall permeability of a material that has different layers or regions with different permeabilities. Permeability is a property of a porous material that describes how easily fluids can flow through it.
Parallel-layered systems are a common structure of porous materials that consist of horizontal layers with different permeabilities. Parallel-layered systems are often found in natural reservoirs, such as oil and gas fields.
Average permeability for parallel-layered systems is calculated by using the weighted average of the individual layer permeabilities. The weighted average is a type of average that gives more weight to larger values. This means that the average permeability for parallel-layered systems is higher than the harmonic mean (another type of average) of the layer permeabilities.
Basic Theory:
In parallel-layered systems, each layer contributes to the overall permeability. The harmonic mean is commonly used to calculate the average permeability () for layers:
Where:
- is the average permeability.
- are the permeabilities of individual layers.
Procedures in Microsoft Excel:
- Set Up the Excel Table:
- Create a table with columns for layer number (N), permeability (K), and the reciprocal of permeability (1/K).
- Enter Data:
- Input the layer numbers and corresponding permeabilities into the Excel table.
- Calculate Reciprocal:
- In a new column, use the formula
=1/K
to calculate the reciprocal of permeability for each layer.
- In a new column, use the formula
- Sum Reciprocals:
- Use the formula
=SUM(1/K)
to find the sum of reciprocals.
- Use the formula
- Calculate Average Permeability:
- Finally, calculate the average permeability using the formula
=1/(Sum Reciprocals)
.
- Finally, calculate the average permeability using the formula
Explanation:
Let’s consider a reservoir with three layers having permeabilities , , and . The average permeability can be calculated using the harmonic mean formula mentioned earlier.
Scenario:
Layer (N) | Permeability (K, mD) | 1/K |
---|---|---|
1 | 50 | =1/B2 |
2 | 75 | =1/B3 |
3 | 100 | =1/B4 |
Total | =SUM(B2:B4) | |
Average | =1/(Total) |
Excel Calculation:
MATLAB Comparison:
% MATLAB Code
permeabilities = [50, 75, 100];
average_permeability = 1 / mean(1 ./ permeabilities);
disp(['Average Permeability (MATLAB): ', num2str(average_permeability), ' mD']);