Dimensionless pressure is a way of expressing the pressure of a fluid in a reservoir that is independent of the reservoir size, shape, and boundary conditions. It is useful for comparing different reservoirs or analyzing well performance.
Kamal and Brigham developed a method to calculate dimensionless pressure for a vertical well in a reservoir with two parallel constant-pressure boundaries (such as a fault or a fracture) that are inclined at an angle. Their method involves solving a complex mathematical equation that accounts for the angle, distance, and orientation of the boundaries relative to the well.
To simplify their equation, they introduced a dimensionless parameter called the Kamal-Brigham number, which represents the ratio of the distance between the boundaries and the distance from the well to the nearest boundary. The Kamal-Brigham number ranges from 0 to infinity, and it determines the shape of the dimensionless pressure curve.
The dimensionless pressure curve shows how the pressure in the reservoir changes over time as the well produces fluid. It can be used to estimate the reservoir properties, such as permeability, porosity, and skin factor, by matching the curve with experimental data or type curves.
Basic Theory:
Dimensionless pressure is used to normalize well-test data, allowing for the comparison of pressure behavior across
different reservoirs and wells. It is particularly useful in characterizing reservoir properties and estimating
reserves. Two widely employed methods for calculating dimensionless pressure are the Kamal and Brigham methods.
The Kamal method utilizes the following formula:
Where:
- is the dimensionless pressure using Kamal method.
- is the initial reservoir pressure.
- is the bottomhole pressure (wellbore flowing pressure).
- is the initial reservoir pressure at the dimensionless time .
The Brigham method employs a slightly different approach:
Where:
- is the dimensionless pressure using Brigham method.
- is the initial reservoir pressure at dimensionless time .
Procedures:
- Determine the necessary input parameters: , , , and .
- Use the Kamal formula to calculate in Excel.
- Apply the Brigham formula to obtain in Excel.
- Create a scenario with real numbers to demonstrate the calculations.
- Implement the same scenario in MATLAB for comparison.
Scenario:
Let’s consider a reservoir with the following parameters:
- Initial reservoir pressure (): 3500 psi
- Bottomhole pressure (): 2500 psi
- Initial reservoir pressure at (): 3200 psi
- Initial reservoir pressure at (): 3000 psi
Calculations in Excel:
Parameters | Values |
---|---|
3500 | |
2500 | |
3200 | |
3000 |
Using the Kamal method formula in Excel:
Using the Brigham method formula in Excel:
Calculations in MATLAB:
% MATLAB code
% Input parameters
P_i = 3500;
P_wf = 2500;
P_iD = 3200;
P_D0 = 3000;
% Kamal method
P_D_k = (P_i - P_wf) / (P_i - P_iD);
% Brigham method
P_D_b = (P_i - P_wf) / (P_i - P_D0);
% Display results
disp(['Dimensionless Pressure (Kamal Method): ', num2str(P_D_k)]);
disp(['Dimensionless Pressure (Brigham Method): ', num2str(P_D_b)]);
Result:
Dimensionless Pressure (Kamal Method): 0.7143
Dimensionless Pressure (Brigham Method): 0.6250