-
Notifications
You must be signed in to change notification settings - Fork 84
02_Dictionary
yohanesnuwara edited this page Jun 28, 2020
·
1 revision
dictionary
is used to see the description and oilfield unit of a variable.
When you use any function from pvt
, welltest
, matbal
, or dca
, then run help(function)
, you will find the input and output variable of the function. In this case, you can search the description and the oilfield unit used using this dictionary
function.
from utilities import dictionary
# search the description and oilfield unit of variable Gfgi
print(dictionary("Gfgi"))
Output:
('initial gas in place', 'ft3 (scf)')