completor 0.1.3__py3-none-any.whl → 1.0.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- completor/completion.py +152 -542
- completor/constants.py +223 -150
- completor/create_output.py +559 -431
- completor/exceptions/exceptions.py +6 -6
- completor/get_version.py +8 -0
- completor/hook_implementations/jobs.py +2 -3
- completor/input_validation.py +53 -41
- completor/launch_args_parser.py +7 -12
- completor/logger.py +3 -3
- completor/main.py +102 -360
- completor/parse.py +104 -93
- completor/prepare_outputs.py +593 -457
- completor/read_casefile.py +248 -197
- completor/read_schedule.py +317 -14
- completor/utils.py +256 -25
- completor/visualization.py +1 -14
- completor/visualize_well.py +29 -27
- completor/wells.py +273 -0
- {completor-0.1.3.dist-info → completor-1.0.0.dist-info}/METADATA +10 -11
- completor-1.0.0.dist-info/RECORD +27 -0
- completor/create_wells.py +0 -314
- completor/pvt_model.py +0 -14
- completor-0.1.3.dist-info/RECORD +0 -27
- {completor-0.1.3.dist-info → completor-1.0.0.dist-info}/LICENSE +0 -0
- {completor-0.1.3.dist-info → completor-1.0.0.dist-info}/WHEEL +0 -0
- {completor-0.1.3.dist-info → completor-1.0.0.dist-info}/entry_points.txt +0 -0
completor/pvt_model.py
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
"""The pvt model has been removed and substituted with holdup fractions."""
|
|
2
|
-
|
|
3
|
-
# Create UDQ keyword for calculating the AICV downhole water cut.
|
|
4
|
-
# SUWCT UDQ correlation from SOHF and SWHF
|
|
5
|
-
|
|
6
|
-
# Downhole water cut, round it to 2 decimals by using NINT / 100
|
|
7
|
-
# Add tolerance 1e-20 in case it only flows gas (zero liquid rate)
|
|
8
|
-
CORRELATION_UDQ = """UDQ
|
|
9
|
-
--Water cut definition
|
|
10
|
-
DEFINE SUWCT NINT(SWHF*100/(SWHF+SOHF+1e-20))/100 /
|
|
11
|
-
/
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
"""
|
completor-0.1.3.dist-info/RECORD
DELETED
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
completor/__init__.py,sha256=k6amf7jhp7KkBIlaw93-NZITxyZjPSzA5McFAZh8yv8,76
|
|
2
|
-
completor/completion.py,sha256=tlXWc9JoDUe67jTIPe5VMlVHwBE7JHkZtpfo60yqK24,45202
|
|
3
|
-
completor/config_jobs/run_completor,sha256=XePKj2xocfGF0XFRqr7sqfpZGrjgWcfaZLHIhVvGFCQ,600
|
|
4
|
-
completor/constants.py,sha256=ydotq87QB3gOKe9EAJC6HIIO_-s9OXe9uVEhx92uRNo,7085
|
|
5
|
-
completor/create_output.py,sha256=KJoD933OvDukeSwqtH6H-puyzsuyKs072fF1-0VRVc4,19601
|
|
6
|
-
completor/create_wells.py,sha256=9v9wdv5LvkqnYJ0Hls28k-Rp2FtRyV0KxMzXI5Zb-5M,14268
|
|
7
|
-
completor/exceptions/__init__.py,sha256=Aj_N17UnldYBA-UgxYSYwIh5ib_fZmqqvzf4yFz_DzY,186
|
|
8
|
-
completor/exceptions/clean_exceptions.py,sha256=uQ2jgGfvUDAoS56JBWh-8ZCPIMB4hvYxLF-snA-_-pg,373
|
|
9
|
-
completor/exceptions/exceptions.py,sha256=Qj-zH4CW46JsFDHg_Nf5K2rGhthT3-x5k5qMj0k_O8Q,5052
|
|
10
|
-
completor/hook_implementations/jobs.py,sha256=4eS_chj8pmknMqrcjUMQOLaMfHVxafHZZzj8r1I3dQY,2138
|
|
11
|
-
completor/input_validation.py,sha256=T48c8WohAJBkl8P4m8vLVKWMMwftcFV11O_HGJAe7OI,12826
|
|
12
|
-
completor/launch_args_parser.py,sha256=86DPgQ4izYdfdhDWBeaRPv57IyyNZNShzFUc8USwJJ8,1441
|
|
13
|
-
completor/logger.py,sha256=N0q0cMbC1BDE7LrlKbpk9a8cTHbnVP6D1iP-xQTPQ8Q,4764
|
|
14
|
-
completor/main.py,sha256=U7oB7bV76Q0bib06T8i-YxRj3xPZIcY8Mc5Hlftclhg,17786
|
|
15
|
-
completor/parse.py,sha256=jsHQief569K4ZM3ec9XkK7rESBFYxAUIwb5Ijyx3lKk,18774
|
|
16
|
-
completor/prepare_outputs.py,sha256=f_s8KZm14SZzbsS6xPmTp7kXH4FUhgKspezBGDwwjc0,64571
|
|
17
|
-
completor/pvt_model.py,sha256=WiRCY7m7PtcwyaD_A_otFRif5gfXAbIbLIssQqFPA3s,427
|
|
18
|
-
completor/read_casefile.py,sha256=5nhleLeL2S2OrLxWUpnjqnUueMoN8zVpwX4jM3nTgv8,30308
|
|
19
|
-
completor/read_schedule.py,sha256=cOljRY3QdXkFxGrUMkgh6tig125qzBviI3zgvzdDXnA,6713
|
|
20
|
-
completor/utils.py,sha256=9zUbly31ycsEypYTfsSN8VEHpFPMkY7ivE3bsNQy2J8,6086
|
|
21
|
-
completor/visualization.py,sha256=fgePxkX6SfKK9JOhEHT80cpBrfmXXE6Var2XB8ItxVo,4890
|
|
22
|
-
completor/visualize_well.py,sha256=CeYOvWu64ABZ7nhofWrRgfdLX9BhQg4NioCe16kGEiI,8233
|
|
23
|
-
completor-0.1.3.dist-info/LICENSE,sha256=46mU2C5kSwOnkqkw9XQAJlhBL2JAf1_uCD8lVcXyMRg,7652
|
|
24
|
-
completor-0.1.3.dist-info/METADATA,sha256=_s78N-usB2h8GexGf4QfbweB_5BbPM8ZCZgiFvxR4V4,7988
|
|
25
|
-
completor-0.1.3.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
26
|
-
completor-0.1.3.dist-info/entry_points.txt,sha256=co5L2_CC2QQWVdEALeMp-NIC4mx4nRpcLcvpVXMYdeI,106
|
|
27
|
-
completor-0.1.3.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|