fmu-pem 0.0.1__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.
- fmu/__init__.py +2 -0
- fmu/pem/__init__.py +19 -0
- fmu/pem/__main__.py +53 -0
- fmu/pem/forward_models/__init__.py +7 -0
- fmu/pem/forward_models/pem_model.py +72 -0
- fmu/pem/hook_implementations/__init__.py +0 -0
- fmu/pem/hook_implementations/jobs.py +19 -0
- fmu/pem/pem_functions/__init__.py +17 -0
- fmu/pem/pem_functions/density.py +55 -0
- fmu/pem/pem_functions/effective_pressure.py +168 -0
- fmu/pem/pem_functions/estimate_saturated_rock.py +90 -0
- fmu/pem/pem_functions/fluid_properties.py +281 -0
- fmu/pem/pem_functions/mineral_properties.py +230 -0
- fmu/pem/pem_functions/regression_models.py +261 -0
- fmu/pem/pem_functions/run_friable_model.py +119 -0
- fmu/pem/pem_functions/run_patchy_cement_model.py +120 -0
- fmu/pem/pem_functions/run_t_matrix_and_pressure.py +186 -0
- fmu/pem/pem_utilities/__init__.py +66 -0
- fmu/pem/pem_utilities/cumsum_properties.py +104 -0
- fmu/pem/pem_utilities/delta_cumsum_time.py +104 -0
- fmu/pem/pem_utilities/enum_defs.py +54 -0
- fmu/pem/pem_utilities/export_routines.py +272 -0
- fmu/pem/pem_utilities/import_config.py +93 -0
- fmu/pem/pem_utilities/import_routines.py +161 -0
- fmu/pem/pem_utilities/pem_class_definitions.py +113 -0
- fmu/pem/pem_utilities/pem_config_validation.py +505 -0
- fmu/pem/pem_utilities/rpm_models.py +177 -0
- fmu/pem/pem_utilities/update_grid.py +54 -0
- fmu/pem/pem_utilities/utils.py +262 -0
- fmu/pem/run_pem.py +98 -0
- fmu/pem/version.py +21 -0
- fmu_pem-0.0.1.dist-info/METADATA +768 -0
- fmu_pem-0.0.1.dist-info/RECORD +37 -0
- fmu_pem-0.0.1.dist-info/WHEEL +5 -0
- fmu_pem-0.0.1.dist-info/entry_points.txt +5 -0
- fmu_pem-0.0.1.dist-info/licenses/LICENSE +674 -0
- fmu_pem-0.0.1.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
fmu/__init__.py,sha256=YWSE22UTDSocfqQHxEeXrRkdlA63t_aayQVdJkycwYs,83
|
|
2
|
+
fmu/pem/__init__.py,sha256=FhNaFibcFZEK1Rz7IBRXBgxMHGNlcgrHaD4FtU4pDjs,421
|
|
3
|
+
fmu/pem/__main__.py,sha256=L8HW2P6_AQX70gcgmMdbW0BouCQdI0OVab-U4QkcPOk,1361
|
|
4
|
+
fmu/pem/run_pem.py,sha256=z6UAuEAJlSVcbTeC2q5q8_ToKe0HIgQPHZfjRWSg6PI,3218
|
|
5
|
+
fmu/pem/version.py,sha256=vgltXBYF55vNcC2regxjGN0_cbebmm8VgcDdQaDapWQ,511
|
|
6
|
+
fmu/pem/forward_models/__init__.py,sha256=WuN66rmgfqrekCy3Ss9NHqsy-lZ4WGY-4VZa3jYDV2s,117
|
|
7
|
+
fmu/pem/forward_models/pem_model.py,sha256=fKDD1-euwLBMr6rAjDYG0o-k7uKYRxG6De6bywF3AXI,2203
|
|
8
|
+
fmu/pem/hook_implementations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
9
|
+
fmu/pem/hook_implementations/jobs.py,sha256=IQW5m7oeZ_MiemxXv-UGLCPeo4h3QT9oELPlWAzsN60,388
|
|
10
|
+
fmu/pem/pem_functions/__init__.py,sha256=G2tu5E1PFvlw36fLdmr2A4Xr9ZqbKMf104OU5ydh_3A,539
|
|
11
|
+
fmu/pem/pem_functions/density.py,sha256=36A8yccsnVPXCpnIfuwNUf9FVvXDkCBpcn4UFuPngFE,1777
|
|
12
|
+
fmu/pem/pem_functions/effective_pressure.py,sha256=3p_bFwgS-PtCN0hAaJXYLwdzuv2J5PHDLWhzyBQNfgU,6118
|
|
13
|
+
fmu/pem/pem_functions/estimate_saturated_rock.py,sha256=azJjVwuUGCyiO-FIY-TYktR3PSBRoOB2ceY33PJyMsc,2756
|
|
14
|
+
fmu/pem/pem_functions/fluid_properties.py,sha256=HCRay1blnWiK19N0nncoV6ftB-DHPC8d029Xsg4jaFw,10458
|
|
15
|
+
fmu/pem/pem_functions/mineral_properties.py,sha256=ilf1TwE4DDev65TdHEuudxgLj41IRBWgSjXghNrCPak,8394
|
|
16
|
+
fmu/pem/pem_functions/regression_models.py,sha256=7YfEiAbjxnP1UP1ugW8ay202grbumG4_vFppEpBkEDE,9085
|
|
17
|
+
fmu/pem/pem_functions/run_friable_model.py,sha256=rT-LQ17gSrJS_l524LKiLnK5Q0Y5zx8lKRuO7GFd3fk,4258
|
|
18
|
+
fmu/pem/pem_functions/run_patchy_cement_model.py,sha256=B-j-Aza2yT6qbBXIsR3HZmtjcBkONLqnq7AYbrgp_uU,4201
|
|
19
|
+
fmu/pem/pem_functions/run_t_matrix_and_pressure.py,sha256=RmvFRm6QNvhpFp9Ar_ifWru6Yp0h-XnE9WS4lUR37Nk,6821
|
|
20
|
+
fmu/pem/pem_utilities/__init__.py,sha256=r9vSDgrY4B2NwBK5PL-4GMD5o1aT2IpR1vaeOCgJ-tI,1687
|
|
21
|
+
fmu/pem/pem_utilities/cumsum_properties.py,sha256=W2FtawYPZzdydGsVoOYCWIgOItNGKCRzhHzI5sUw05M,3769
|
|
22
|
+
fmu/pem/pem_utilities/delta_cumsum_time.py,sha256=J83PSpO2xjxHP5tpDpleVxynt0eytqHLgbGzj79wTQI,3267
|
|
23
|
+
fmu/pem/pem_utilities/enum_defs.py,sha256=nJWpvXBFRIE-f7A4AjsVwldM2fxSZGRXAYC0faEOckw,1067
|
|
24
|
+
fmu/pem/pem_utilities/export_routines.py,sha256=gZa3AscefV9h55JQXL7juQg5SpMvhnN5nbBHFU2VtCI,9879
|
|
25
|
+
fmu/pem/pem_utilities/import_config.py,sha256=H6nH_MVnVhuS4q-4KWhoOvQbGzV5Jnw1-KlD1BRccmY,3232
|
|
26
|
+
fmu/pem/pem_utilities/import_routines.py,sha256=PRnHn2wsHRewi2z3AlSNu9i3li9srfPNq_TS9qv89a4,5263
|
|
27
|
+
fmu/pem/pem_utilities/pem_class_definitions.py,sha256=IOwzHfMsoPoGWIs1-I-kI2wVbhgR5TjZHygXOMsECMk,3282
|
|
28
|
+
fmu/pem/pem_utilities/pem_config_validation.py,sha256=nxHCCLCOV0bODH7LfFjdbQRbe0zhLulKYcMgG1YnjjQ,17878
|
|
29
|
+
fmu/pem/pem_utilities/rpm_models.py,sha256=TxW8lmIMluU1JsgGUT6nlR899mlVk8GgQx2p5ODnr78,5726
|
|
30
|
+
fmu/pem/pem_utilities/update_grid.py,sha256=InGaWrgIH5G9xyGqazAxQmVHL0nve4B9dAttisBsIpU,1775
|
|
31
|
+
fmu/pem/pem_utilities/utils.py,sha256=Gm_onSB7KuHZ0iKzx5TjHCOBYkatewSyEXgC9J-UA70,8871
|
|
32
|
+
fmu_pem-0.0.1.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
|
33
|
+
fmu_pem-0.0.1.dist-info/METADATA,sha256=-3GgiilfNJq6zv7F6eD0fIZ5qYSIeFs6nlh2cL7VeBk,43944
|
|
34
|
+
fmu_pem-0.0.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
35
|
+
fmu_pem-0.0.1.dist-info/entry_points.txt,sha256=NSoFnob1PAE6FzRyNJZn5idocnCB1ptNg6R8zYf7Gnc,98
|
|
36
|
+
fmu_pem-0.0.1.dist-info/top_level.txt,sha256=Z-FIY3pxn0UK2Wxi9IJ7fKoLSraaxuNGi1eokiE0ShM,4
|
|
37
|
+
fmu_pem-0.0.1.dist-info/RECORD,,
|