-
Notifications
You must be signed in to change notification settings - Fork 91
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
12a76b5
commit 0aa75c0
Showing
1 changed file
with
71 additions
and
28 deletions.
There are no files selected for viewing
99 changes: 71 additions & 28 deletions
99
Unit 10 Gas-Condensate Reservoirs/functions/materialbalance.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,73 @@ | ||
"Material Balance for Gas-Condensate Reservoirs" | ||
|
||
def condensate_belowdew(Bg, Bo, Rs, Rv, p, cw, cf, sw, We, Bw, Wp, Wi, Np, Gp, Gi): | ||
"Condensate reservoir material balance below dewpoint" | ||
Rsi, Rvi = Rs[0], Rv[0] | ||
Bgi, pi = Bg[0], p[0] | ||
deltaP = p - pi | ||
|
||
Btg = ((Bg * (1 - (Rs * Rvi))) + (Bo * (Rvi - Rv))) / (1 - (Rv * Rs)) | ||
Bto = ((Bo * (1 - (Rv * Rsi))) + (Bg * (Rsi - Rs))) / (1 - (Rv * Rs)) | ||
Eg = Btg - Bgi | ||
Efw = ((cf + (cw * sw)) / (1 - sw)) * deltaP | ||
deltaW = We - (Bw * (Wp - Wi)) | ||
F = (Np * ((Bo - (Rs * Bg)) / (1 - (Rv * Rs)))) + ((Gp - Gi) * ((Bg - (Rv * Bo)) / (1 - (Rv * Rs)))) | ||
return(F) | ||
|
||
def condensate_abovedew(Bg, Rv, p, cw, cf, sw, We, Bw, Wp, Wi, Np, Gp, Gi): | ||
"Condensate reservoir material balance above dewpoint" | ||
Rvi = Rv[0] | ||
Rs = 1 / Rvi # theoretical | ||
Bo = Bg * Rs # theoretical | ||
|
||
Bgi, pi = Bg[0], p[0] | ||
deltaP = p - pi | ||
|
||
Eg = Bg - Bgi | ||
Efw = ((cf + (cw * sw)) / (1 - sw)) * deltaP | ||
deltaW = We - (Bw * (Wp - Wi)) | ||
F = Bg * (Gp - Gi) | ||
return(F) | ||
def calculate_condensate_params(Rvi, Bgi): | ||
""" | ||
Calculate theoretically the undefined properties of gas-condensate (Bo, Rs) | ||
Input: | ||
Rvi: initial Rv, float | ||
Bgi: initial Bg, float | ||
Output: | ||
Rsi: initial Rs, float | ||
Boi: initial Bo, float | ||
""" | ||
|
||
Rsi = 1 / Rvi | ||
Boi = Rsi * Bgi | ||
|
||
return(Rsi, Boi) | ||
|
||
def condensate_belowdew(Rs, Rv, Rsi, Rvi, Bo, Bg, Np, Gp): | ||
""" | ||
Calculate the parameters for material balance plot of gas-condensate reservoirs | ||
below dewpoint pressure | ||
Input: | ||
Rs: array | ||
Rv: array | ||
Rsi: initial Rs, float (NOTE: if data doesn't provide, calculate it with calculate_condensate_params function) | ||
Rvi: initial Rv, float (from data Rv) | ||
Bo: array | ||
Bg: array | ||
Np: array | ||
Gp: array | ||
Material balance plots: | ||
* Plot 10.1: F vs Eg | ||
Output: | ||
F: array | ||
Eg: array | ||
""" | ||
Btg = ((Bg * (1 - (Rs * Rvi))) + (Bo * (Rvi - Rv))) / (1 - (Rv * Rs)) # in RB/STB | ||
Bto = ((Bo * (1 - (Rv * Rsi))) + (Bg * (Rsi - Rs))) / (1 - (Rv * Rs)) # in RB/scf | ||
|
||
Gi = 0 | ||
F = (Np * ((Bo - (Rs * Bg)) / (1 - (Rv * Rs)))) + ((Gp - Gi) * ((Bg - (Rv * Bo)) / (1 - (Rv * Rs)))) | ||
Eg = Btg - Bg[0] | ||
return(F, Eg) | ||
|
||
def condensate_abovedew(Bg, Bgi, Gp, Gpi): | ||
""" | ||
Calculate the parameters for material balance plot of gas-condensate reservoirs | ||
above dewpoint pressure | ||
Input: | ||
Bg: array | ||
Bgi: initial Bg, float | ||
Gp: array | ||
Gpi: initial Gp, float | ||
Material balance plots: | ||
* Plot 10.1: F vs Eg | ||
Output: | ||
F: array | ||
Eg: array | ||
""" | ||
Eg = Bg - Bgi | ||
F = Bg * (Gp - Gpi) | ||
return(F, Eg) |