Injectivity Index in Petroleum Engineering Using Excel

The Injectivity Index is a measure of how easily a fluid can be injected into a reservoir. It is calculated by dividing the injection rate by the pressure drop across the injection interval. A higher Injectivity Index means that the injection process is more efficient and requires less pressure to inject the same amount of fluid. The Injectivity Index depends on the properties of the reservoir, such as permeability, thickness, and size, as well as the properties of the injected fluid, such as viscosity and density.

The Injectivity Index can be used to characterize the performance of different injection methods, such as water flooding, gas injection, or CO2 injection. It can also be used to monitor the changes in reservoir quality over time, such as the formation of fractures, the reduction of permeability, or the increase of pressure. The Injectivity Index can help optimize the injection strategy and maximize the oil recovery.

The injectivity index (II) is expressed mathematically as:

    \[ II = \frac{Q}{\Delta P} \]

Where:

  • II is the injectivity index,
  • Q is the injected fluid volume (measured in barrels per day, bbl/day), and
  • \Delta P is the pressure drop across the wellbore (measured in pounds per square inch, psi).

Procedures to Calculate Injectivity Index in Excel:

  1. Collect Data: Gather data on the injected fluid volume (Q) and the pressure drop across the wellbore (\Delta P).
  2. Create an Excel Table: Open Microsoft Excel and organize your data in a table with appropriate column headers, such as “Day,” “Injected Volume (bbl/day),” and “Pressure Drop (psi).”
  3. Insert Formulas: In a new column, insert the formula for injectivity index (II):

        \[ II = \frac{\text{Injected Volume}}{\text{Pressure Drop}} \]

  4. Calculate Results: Apply the formula to each row of data to obtain the injectivity index for each corresponding day.

Explanation:

Let’s consider a scenario with the following data for a water injection well:

  • Day 1:
    • Injected Volume (Q): 500 bbl/day
    • Pressure Drop (\Delta P): 150 psi
  • Day 2:
    • Injected Volume (Q): 600 bbl/day
    • Pressure Drop (\Delta P): 180 psi

Excel Calculation:

Day Injected Volume (bbl/day) Pressure Drop (psi) Injectivity Index
1 500 150 =B2/C2
2 600 180 =B3/C3

Now, let’s perform the calculations:

  • Day 1: II = \frac{500}{150} = 3.33 \, \text{bbl/day/psi}
  • Day 2: II = \frac{600}{180} = 3.33 \, \text{bbl/day/psi}

Result: The injectivity index remains constant at 3.33 bbl/day/psi for both days in our scenario.

MATLAB Comparison:

In MATLAB, the injectivity index can be calculated using similar formulas. Here’s a sample MATLAB code snippet for our scenario:

% Data
Q = [500; 600]; % Injected Volume (bbl/day)
DeltaP = [150; 180]; % Pressure Drop (psi)

% Calculating Injectivity Index
II = Q ./ DeltaP;

% Displaying Results
disp('Injectivity Index for Each Day:');
disp(II);

Comments

No comments yet. Why don’t you start the discussion?

Leave a Reply

Your email address will not be published. Required fields are marked *