Gas flow rate is the amount of gas that flows through a well or a pipeline in a given time. It depends on the pressure difference between the reservoir and the wellbore, the properties of the gas and the reservoir, and the geometry of the well and the drainage area. The drainage area is the region of the reservoir that contributes to the gas production.
For a circular drainage area, the gas flow rate can be calculated using the steady-state radial horizontal gas flow equation1. However, for a non-circular drainage area, the equation becomes more complicated and requires numerical methods or empirical correlations to solve. One of the challenges is to estimate the shape and size of the non-circular drainage area, which can be affected by factors such as reservoir heterogeneity, well orientation, fracture network, and boundary conditions2.
One of the methods to estimate the non-circular drainage area is to use the concept of equivalent radius, which is the radius of a circular area that has the same flow rate as the non-circular area. The equivalent radius can be obtained from well testing data, such as pressure-transient testing or deliverability testing3. Another method is to use analytical models that assume certain shapes of the non-circular drainage area, such as ellipse, rectangle, or sector4. These models can provide approximate solutions for the gas flow rate, but they may not capture the complex features of the real reservoir.
Therefore, the low-pressure region gas flow rate for non-circular drainage area is a challenging problem that requires a combination of experimental, analytical, and numerical techniques to obtain accurate and reliable results.
The Darcy’s law for non-circular drainage areas provides a fundamental framework for calculating gas flow rates. The formula is given by:
Where:
- is the gas flow rate (cubic feet per second).
- is the permeability of the rock (Darcy).
- is the cross-sectional area of the drainage path (square feet).
- is the pressure drop (psi).
- is the viscosity of the gas (centipoise).
- is the length of the drainage path (feet).
Procedures:
- Determine the Permeability (): This is a rock property and can be obtained from laboratory measurements or well logs.
- Calculate the Cross-Sectional Area (): For non-circular drainage areas, use appropriate geometrical formulas based on the shape of the area.
- Determine the Pressure Drop (): This can be obtained from pressure measurements at the inlet and outlet of the drainage path.
- Obtain Gas Viscosity (): This is a property of the gas and can be found in gas property tables.
- Determine the Length (): Measure the length of the drainage path.
- Apply Darcy’s Law Formula: Use the formula mentioned earlier to calculate the gas flow rate.
Explanation:
Let’s consider a real-world scenario where we have a shale gas reservoir with the following properties:
- Permeability (): 0.0015 Darcy
- Cross-Sectional Area (): 120 square feet (for a non-circular shape)
- Pressure Drop (): 500 psi
- Gas Viscosity (): 0.02 centipoise
- Length (): 800 feet
Excel Calculation:
- Create an Excel table with the following columns: , , , , , and .
- Input the values for , , , , and into the respective columns.
- In the column, use the formula:
= (B2*C2*D2)/(E2*F2)
- Drag this formula down for all rows in the table.
MATLAB Comparison:
In MATLAB, you can use the same formula with variables representing the values. For instance:
% Given values k = 0.0015; % Darcy A = 120; % square feet DeltaP = 500; % psi mu = 0.02; % centipoise L = 800; % feet % Gas flow rate calculation Q = (k * A * DeltaP) / (mu * L); disp(Q);
This MATLAB script will output the gas flow rate.
Results:
Using the provided Excel table and MATLAB script, the calculated gas flow rate for the given scenario is approximately 0.0009375 cubic feet per second.