-
Notifications
You must be signed in to change notification settings - Fork 83
/
dataset.ini
140 lines (126 loc) · 4.52 KB
/
dataset.ini
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
133
134
135
136
137
138
139
140
# 3W Dataset's main configuration file.
#
# All settings inherent in the 3W Dataset that can be used by your
# consumers, including the 3W Toolkit, are maintained in this file.
# In this file, we use the configuration language supported by the
# configparser module.
# Versions in gereral
#
[VERSION]
# 3W Dataset version (may be different than 3W Toolkit version)
DATASET = 2.0.0
# Parquet files properties in general
#
[PARQUET_FILE_PROPERTIES]
timestamp = Instant at which observation was generated
ABER-CKGL = Opening of the GLCK (gas lift choke) [%%]
ABER-CKP = Opening of the PCK (production choke) [%%]
ESTADO-DHSV = State of the DHSV (downhole safety valve) [0, 0.5, or 1]
ESTADO-M1 = State of the PMV (production master valve) [0, 0.5, or 1]
ESTADO-M2 = State of the AMV (annulus master valve) [0, 0.5, or 1]
ESTADO-PXO = State of the PXO (pig-crossover) valve [0, 0.5, or 1]
ESTADO-SDV-GL = State of the gas lift SDV (shutdown valve) [0, 0.5, or 1]
ESTADO-SDV-P = State of the production SDV (shutdown valve) [0, 0.5, or 1]
ESTADO-W1 = State of the PWV (production wing valve) [0, 0.5, or 1]
ESTADO-W2 = State of the AWV (annulus wing valve) [0, 0.5, or 1]
ESTADO-XO = State of the XO (crossover) valve [0, 0.5, or 1]
P-ANULAR = Pressure in the well annulus [Pa]
P-JUS-BS = Downstream pressure of the SP (service pump) [Pa]
P-JUS-CKGL = Downstream pressure of the GLCK (gas lift choke) [Pa]
P-JUS-CKP = Downstream pressure of the PCK (production choke) [Pa]
P-MON-CKGL = Upstream pressure of the GLCK (gas lift choke) [Pa]
P-MON-CKP = Upstream pressure of the PCK (production choke) [Pa]
P-MON-SDV-P = Upstream pressure of the production SDV (shutdown valve) [Pa]
P-PDG = Pressure at the PDG (permanent downhole gauge) [Pa]
PT-P = Downstream pressure of the PWV (production wing valve) in the production tube [Pa]
P-TPT = Pressure at the TPT (temperature and pressure transducer) [Pa]
QBS = Flow rate at the SP (service pump) [m3/s]
QGL = Gas lift flow rate [m3/s]
T-JUS-CKP = Downstream temperature of the PCK (production choke) [oC]
T-MON-CKP = Upstream temperature of the PCK (production choke) [oC]
T-PDG = Temperature at the PDG (permanent downhole gauge) [oC]
T-TPT = Temperature at the TPT (temperature and pressure transducer) [oC]
class = Label of the observation
state = Well operational status
# Common properties of all event types covered by the 3W Project
#
[EVENTS]
# Internal names of all event types
NAMES = NORMAL, ABRUPT_INCREASE_OF_BSW, SPURIOUS_CLOSURE_OF_DHSV,
SEVERE_SLUGGING, FLOW_INSTABILITY, RAPID_PRODUCTIVITY_LOSS,
QUICK_RESTRICTION_IN_PCK, SCALING_IN_PCK,
HYDRATE_IN_PRODUCTION_LINE, HYDRATE_IN_SERVICE_LINE
# Simulated and hand-drawn instances
EXTRA_INSTANCES_TRAINING = -1
# Offset between an undesirable event's label and its transient label
TRANSIENT_OFFSET = 100
# This section defines default properties for a specific event type
#
[NORMAL]
LABEL = 0
DESCRIPTION = Normal Operation
# This section defines default properties for a specific event type
#
[ABRUPT_INCREASE_OF_BSW]
LABEL = 1
DESCRIPTION = Abrupt Increase of BSW
TRANSIENT = True
# This section defines default properties for a specific event type
#
[SPURIOUS_CLOSURE_OF_DHSV]
LABEL = 2
DESCRIPTION = Spurious Closure of DHSV
TRANSIENT = True
WINDOW = 180
STEP = 15
# This section defines default properties for a specific event type
#
[SEVERE_SLUGGING]
LABEL = 3
DESCRIPTION = Severe Slugging
TRANSIENT = False
# This section defines default properties for a specific event type
#
[FLOW_INSTABILITY]
LABEL = 4
DESCRIPTION = Flow Instability
TRANSIENT = False
# This section defines default properties for a specific event type
#
[RAPID_PRODUCTIVITY_LOSS]
LABEL = 5
DESCRIPTION = Rapid Productivity Loss
TRANSIENT = True
# This section defines default properties for a specific event type
#
[QUICK_RESTRICTION_IN_PCK]
LABEL = 6
DESCRIPTION = Quick Restriction in PCK
TRANSIENT = True
# This section defines default properties for a specific event type
#
[SCALING_IN_PCK]
LABEL = 7
DESCRIPTION = Scaling in PCK
TRANSIENT = True
# This section defines default properties for a specific event type
#
[HYDRATE_IN_PRODUCTION_LINE]
LABEL = 8
DESCRIPTION = Hydrate in Production Line
TRANSIENT = True
# This section defines default properties for a specific event type
#
[HYDRATE_IN_SERVICE_LINE]
LABEL = 9
DESCRIPTION = Hydrate in Service Line
TRANSIENT = True
# Settings related to the Parquet format
#
[PARQUET_SETTINGS]
# Used/chosen extension
PARQUET_EXTENSION = .parquet
# Used/chosen extension engine
PARQUET_ENGINE = pyarrow
# Used/chosen extension compression
PARQUET_COMPRESSION = brotli