-
Notifications
You must be signed in to change notification settings - Fork 0
/
terms.js
132 lines (132 loc) · 5.42 KB
/
terms.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
const terms = [
{
term: "liquid specific gravity",
definition: "ratio of the density of the liquid to the density of water both taken at the same temperature and pressure.",
citation: {
author: ["William D. McCain Jr."],
year: 1990,
title: "Properties of Petroleum Fluids",
publisher: "Penwell Books"
}
},
{
term: "oil formation volume factor",
definition: "volume of reservoir oil required to produce one barrel of oil in the stock tank.",
citation: {
author: ["William D. McCain Jr."],
year: 1990,
title: "Properties of Petroleum Fluids",
publisher: "Penwell Books"
}
},
{
term: "solution gas-oil ratio (GOR) ",
definition: "quantity of gas dissolved in an oil at reservoir conditions.",
citation: {
author: ["William D. McCain Jr."],
year: 1990,
title: "Properties of Petroleum Fluids",
publisher: "Penwell Books"
}
},
{
term: "reservoir",
definition: "porous and permeable underground formation containing an individual bank of hydrocarbons confined by impermeable rock or water barriers and is characterized by a single natural pressure system",
citation: {
author: ["Boyun Guo", "William C. Lyons", "Ali Ghalambor"],
year: 2007,
title: "Petroleum Production Engineering: A Computer-Assisted Approach",
publisher: "Gulf Professional Publishing"
}
},
{
term: "field",
definition: "an area that consists of one or more reservoirs all related to the same structural feature",
citation: {
author: ["Boyun Guo", "William C. Lyons", "Ali Ghalambor"],
year: 2007,
title: "Petroleum Production Engineering: A Computer-Assisted Approach",
publisher: "Gulf Professional Publishing"
}
},
{
term: "gas drive",
definition: "the drive mechanism where the gas in the reservoir has come out of solution and rises to the top of the reservoir to form a gas cap.",
citation: {
author: ["Boyun Guo", "William C. Lyons", "Ali Ghalambor"],
year: 2007,
title: "Petroleum Production Engineering: A Computer-Assisted Approach",
publisher: "Gulf Professional Publishing"
}
},
{
term: "solution gas-oil ratio (GOR)",
definition: "amount of gas (in standard condition) that will dissolve in unit volume of oil when both are taken down to the reservoir at the prevailing pressure and temperature.",
citation: {
author: ["Boyun Guo", "William C. Lyons", "Ali Ghalambor"],
year: 2007,
title: "Petroleum Production Engineering: A Computer-Assisted Approach",
publisher: "Gulf Professional Publishing"
}
},
{
term: "standard condition",
definition: "14.7 psia and 60°F in most states in the United States.",
citation: {
author: ["Boyun Guo", "William C. Lyons", "Ali Ghalambor"],
year: 2007,
title: "Petroleum Production Engineering: A Computer-Assisted Approach",
publisher: "Gulf Professional Publishing"
}
},
{
term: "transient flow",
definition: "a flow regime where/when the radius of pressure wave propagation from wellbore has not reached any boundaries of the reservoir.",
citation: {
author: ["Boyun Guo", "William C. Lyons", "Ali Ghalambor"],
year: 2007,
title: "Petroleum Production Engineering: A Computer-Assisted Approach",
publisher: "Gulf Professional Publishing"
}
},
{
term: "steady-state flow",
definition: "a flow regime where the pressure at any point in the reservoir remains constant over time",
citation: {
author: ["Boyun Guo", "William C. Lyons", "Ali Ghalambor"],
year: 2007,
title: "Petroleum Production Engineering: A Computer-Assisted Approach",
publisher: "Gulf Professional Publishing"
}
},
{
term: "pseudo-steady-state flow",
definition: "a flow regime where the pressure at any point in the reservoir declines at the same constant rate over time.",
citation: {
author: ["Boyun Guo", "William C. Lyons", "Ali Ghalambor"],
year: 2007,
title: "Petroleum Production Engineering: A Computer-Assisted Approach",
publisher: "Gulf Professional Publishing"
}
},
{
term: "IPR curve",
definition: "a graphical presentation of the relation between the flowing bottom-hole pressure and liquid production rate.",
citation: {
author: ["Boyun Guo", "William C. Lyons", "Ali Ghalambor"],
year: 2007,
title: "Petroleum Production Engineering: A Computer-Assisted Approach",
publisher: "Gulf Professional Publishing"
}
},
{
term: "productivity index (PI)",
definition: "the magnitude of the slope of the IPR curve.",
citation: {
author: ["Boyun Guo", "William C. Lyons", "Ali Ghalambor"],
year: 2007,
title: "Petroleum Production Engineering: A Computer-Assisted Approach",
publisher: "Gulf Professional Publishing"
}
},
];