resqpy 4.18.3__py3-none-any.whl → 4.18.5__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.
- resqpy/__init__.py +1 -1
- resqpy/grid_surface/_find_faces.py +62 -37
- resqpy/multi_processing/wrappers/grid_surface_mp.py +1 -1
- {resqpy-4.18.3.dist-info → resqpy-4.18.5.dist-info}/METADATA +1 -1
- {resqpy-4.18.3.dist-info → resqpy-4.18.5.dist-info}/RECORD +7 -7
- {resqpy-4.18.3.dist-info → resqpy-4.18.5.dist-info}/LICENSE +0 -0
- {resqpy-4.18.3.dist-info → resqpy-4.18.5.dist-info}/WHEEL +0 -0
resqpy/__init__.py
CHANGED
@@ -24,27 +24,6 @@ import resqpy.olio.vector_utilities as vec
|
|
24
24
|
# note: resqpy.grid_surface._grid_surface_cuda will be imported by the find_faces_to_represent_surface() function if needed
|
25
25
|
|
26
26
|
|
27
|
-
@njit # pragma: no cover
|
28
|
-
def _bitwise_count_njit(a: np.ndarray) -> int:
|
29
|
-
"""Deprecated: only needed till numpy versions < 2.0.0 are dropped."""
|
30
|
-
c: int = 0
|
31
|
-
c += np.count_nonzero(np.bitwise_and(a, 0x01))
|
32
|
-
c += np.count_nonzero(np.bitwise_and(a, 0x02))
|
33
|
-
c += np.count_nonzero(np.bitwise_and(a, 0x04))
|
34
|
-
c += np.count_nonzero(np.bitwise_and(a, 0x08))
|
35
|
-
c += np.count_nonzero(np.bitwise_and(a, 0x10))
|
36
|
-
c += np.count_nonzero(np.bitwise_and(a, 0x20))
|
37
|
-
c += np.count_nonzero(np.bitwise_and(a, 0x40))
|
38
|
-
c += np.count_nonzero(np.bitwise_and(a, 0x80))
|
39
|
-
return c
|
40
|
-
|
41
|
-
|
42
|
-
if hasattr(np, 'bitwise_count'):
|
43
|
-
bitwise_count = np.bitwise_count
|
44
|
-
else:
|
45
|
-
bitwise_count = _bitwise_count_njit
|
46
|
-
|
47
|
-
|
48
27
|
def find_faces_to_represent_surface_staffa(grid, surface, name, feature_type = "fault", progress_fn = None):
|
49
28
|
"""Returns a grid connection set containing those cell faces which are deemed to represent the surface.
|
50
29
|
|
@@ -1585,12 +1564,17 @@ def packed_bisector_from_face_indices( # type: ignore
|
|
1585
1564
|
_set_packed_bisector_outside_box(array, box, box_array, grid_extent_kji[2] % 8)
|
1586
1565
|
|
1587
1566
|
# check all array elements are not the same
|
1588
|
-
|
1567
|
+
if hasattr(np, 'bitwise_count'):
|
1568
|
+
true_count = np.sum(np.bitwise_count(array))
|
1569
|
+
else:
|
1570
|
+
true_count = _bitwise_count_njit(array) # note: will usually include some padding bits, so not so true!
|
1589
1571
|
cell_count = np.prod(grid_extent_kji)
|
1590
1572
|
assert (0 < true_count < cell_count), "face set for surface is leaky or empty (surface does not intersect grid)"
|
1591
1573
|
|
1592
1574
|
# negate the array if it minimises the mean k and determine if the surface is a curtain
|
1593
|
-
is_curtain =
|
1575
|
+
is_curtain = _packed_shallow_or_curtain_temp_bitwise_count(array, true_count, raw_bisector)
|
1576
|
+
# todo: switch to numpy bitwise_count when numba supports it and resqpy has dropped older numpy versions
|
1577
|
+
# is_curtain = _packed_shallow_or_curtain(array, true_count, raw_bisector)
|
1594
1578
|
|
1595
1579
|
return array, is_curtain
|
1596
1580
|
|
@@ -2028,20 +2012,22 @@ def _fill_bisector(bisect: np.ndarray, open_k: np.ndarray, open_j: np.ndarray, o
|
|
2028
2012
|
going = True
|
2029
2013
|
|
2030
2014
|
|
2031
|
-
#
|
2032
|
-
#@njit # pragma: no cover
|
2015
|
+
@njit # pragma: no cover
|
2033
2016
|
def _fill_packed_bisector(bisect: np.ndarray, open_k: np.ndarray, open_j: np.ndarray, open_i: np.ndarray):
|
2034
2017
|
nk: int = bisect.shape[0]
|
2035
2018
|
nj: int = bisect.shape[1]
|
2036
2019
|
ni: int = bisect.shape[2]
|
2037
2020
|
going: bool = True
|
2021
|
+
m: np.uint8 = np.uint8(0)
|
2022
|
+
om: np.uint8 = np.uint8(0)
|
2023
|
+
oi: np.uint8 = np.uint8(0)
|
2038
2024
|
while going:
|
2039
2025
|
going = False
|
2040
2026
|
for k in range(nk):
|
2041
2027
|
for j in range(nj):
|
2042
2028
|
for i in range(ni):
|
2043
|
-
m = bisect[k, j, i] # 8 bools packed into a uint8
|
2044
|
-
if bisect[k, j, i] ==
|
2029
|
+
m = np.uint8(bisect[k, j, i]) # 8 bools packed into a uint8
|
2030
|
+
if bisect[k, j, i] == np.uint8(0xFF): # all 8 values already set
|
2045
2031
|
continue
|
2046
2032
|
om = m # copy to check for changes later
|
2047
2033
|
if k:
|
@@ -2052,14 +2038,14 @@ def _fill_packed_bisector(bisect: np.ndarray, open_k: np.ndarray, open_j: np.nda
|
|
2052
2038
|
m |= (bisect[k, j - 1, i] & open_j[k, j - 1, i])
|
2053
2039
|
if j < nj - 1:
|
2054
2040
|
m |= (bisect[k, j + 1, i] & open_j[k, j, i])
|
2055
|
-
oi = open_i[k, j, i]
|
2056
|
-
m |= (m >> 1) & (oi >> 1)
|
2057
|
-
m |= (m << 1) & oi
|
2041
|
+
oi = np.uint8(open_i[k, j, i]) # type: ignore
|
2042
|
+
m |= (m >> 1) & (oi >> 1) # type: ignore
|
2043
|
+
m |= (m << 1) & oi # type: ignore
|
2058
2044
|
# handle rollover bits for I
|
2059
|
-
if i and (bisect[k, j, i - 1] & open_i[k, j, i - 1] &
|
2060
|
-
m |= 0x80
|
2045
|
+
if i and (bisect[k, j, i - 1] & open_i[k, j, i - 1] & np.uint8(0x01)):
|
2046
|
+
m |= np.uint8(0x80)
|
2061
2047
|
if (i < ni - 1) and (oi & 1) and (bisect[k, j, i + 1] & 0x80):
|
2062
|
-
m |=
|
2048
|
+
m |= np.uint8(0x01)
|
2063
2049
|
if m != om:
|
2064
2050
|
bisect[k, j, i] = m
|
2065
2051
|
going = True
|
@@ -2088,8 +2074,7 @@ def _shallow_or_curtain(a: np.ndarray, true_count: int, raw: bool) -> bool:
|
|
2088
2074
|
return is_curtain
|
2089
2075
|
|
2090
2076
|
|
2091
|
-
#
|
2092
|
-
#@njit # pragma: no cover
|
2077
|
+
@njit # pragma: no cover
|
2093
2078
|
def _packed_shallow_or_curtain(a: np.ndarray, true_count: int, raw: bool) -> bool:
|
2094
2079
|
# negate the packed bool array if it minimises the mean k and determine if the bisector indicates a curtain
|
2095
2080
|
assert a.ndim == 3
|
@@ -2099,13 +2084,38 @@ def _packed_shallow_or_curtain(a: np.ndarray, true_count: int, raw: bool) -> boo
|
|
2099
2084
|
is_curtain: bool = False
|
2100
2085
|
layer_count: int = 0
|
2101
2086
|
for k in range(a.shape[0]):
|
2102
|
-
|
2087
|
+
# np.bitwise_count() not yet supported by numba
|
2088
|
+
layer_count = np.sum(np.bitwise_count(a[k]), dtype = np.int64) # type: ignore
|
2103
2089
|
k_sum += (k + 1) * layer_count
|
2104
2090
|
opposite_k_sum += (k + 1) * (layer_cell_count - layer_count)
|
2105
2091
|
mean_k: float = float(k_sum) / float(true_count)
|
2106
2092
|
opposite_mean_k: float = float(opposite_k_sum) / float(8 * a.size - true_count)
|
2107
2093
|
if mean_k > opposite_mean_k and not raw:
|
2108
|
-
a[:] = np.invert(a
|
2094
|
+
a[:] = np.invert(a)
|
2095
|
+
if abs(mean_k - opposite_mean_k) <= 0.001:
|
2096
|
+
# log.warning('unable to determine which side of surface is shallower')
|
2097
|
+
is_curtain = True
|
2098
|
+
return is_curtain
|
2099
|
+
|
2100
|
+
|
2101
|
+
@njit # pragma: no cover
|
2102
|
+
def _packed_shallow_or_curtain_temp_bitwise_count(a: np.ndarray, true_count: int, raw: bool) -> bool:
|
2103
|
+
# negate the packed bool array if it minimises the mean k and determine if the bisector indicates a curtain
|
2104
|
+
assert a.ndim == 3
|
2105
|
+
# note: following 'cell count' includes padding bits
|
2106
|
+
layer_cell_count: np.int64 = 8 * a.shape[1] * a.shape[2] # type: ignore
|
2107
|
+
k_sum: np.int64 = 0 # type: ignore
|
2108
|
+
opposite_k_sum: np.int64 = 0 # type: ignore
|
2109
|
+
is_curtain: bool = False
|
2110
|
+
layer_count: np.int64 = 0 # type: ignore
|
2111
|
+
for k in range(a.shape[0]):
|
2112
|
+
layer_count = _bitwise_count_njit(a[k])
|
2113
|
+
k_sum += (k + 1) * layer_count
|
2114
|
+
opposite_k_sum += (k + 1) * (layer_cell_count - layer_count)
|
2115
|
+
mean_k: float = float(k_sum) / float(true_count)
|
2116
|
+
opposite_mean_k: float = float(opposite_k_sum) / float(8 * a.size - true_count)
|
2117
|
+
if mean_k > opposite_mean_k and not raw:
|
2118
|
+
a[:] = np.invert(a)
|
2109
2119
|
if abs(mean_k - opposite_mean_k) <= 0.001:
|
2110
2120
|
# log.warning('unable to determine which side of surface is shallower')
|
2111
2121
|
is_curtain = True
|
@@ -2274,3 +2284,18 @@ def _shape_packed(unpacked_shape):
|
|
2274
2284
|
head = list(unpacked_shape[:-1])
|
2275
2285
|
head.append(shrunken)
|
2276
2286
|
return tuple(head)
|
2287
|
+
|
2288
|
+
|
2289
|
+
@njit # pragma: no cover
|
2290
|
+
def _bitwise_count_njit(a: np.ndarray) -> np.int64:
|
2291
|
+
"""Deprecated: only needed till numpy versions < 2.0.0 are dropped."""
|
2292
|
+
c: np.int64 = 0 # type: ignore
|
2293
|
+
c += np.count_nonzero(np.bitwise_and(a, 0x01))
|
2294
|
+
c += np.count_nonzero(np.bitwise_and(a, 0x02))
|
2295
|
+
c += np.count_nonzero(np.bitwise_and(a, 0x04))
|
2296
|
+
c += np.count_nonzero(np.bitwise_and(a, 0x08))
|
2297
|
+
c += np.count_nonzero(np.bitwise_and(a, 0x10))
|
2298
|
+
c += np.count_nonzero(np.bitwise_and(a, 0x20))
|
2299
|
+
c += np.count_nonzero(np.bitwise_and(a, 0x40))
|
2300
|
+
c += np.count_nonzero(np.bitwise_and(a, 0x80))
|
2301
|
+
return c
|
@@ -353,7 +353,7 @@ def find_faces_to_represent_surface_regular_wrapper(index: int,
|
|
353
353
|
('vertical' if is_curtain else 'sloping'),
|
354
354
|
realization = realisation,
|
355
355
|
indexable_element = "columns" if is_curtain else "cells",
|
356
|
-
pre_packed = use_pack)
|
356
|
+
pre_packed = False if is_curtain else use_pack)
|
357
357
|
elif p_name == 'grid shadow':
|
358
358
|
if grid_pc is None:
|
359
359
|
grid_pc = rqp.PropertyCollection()
|
@@ -1,4 +1,4 @@
|
|
1
|
-
resqpy/__init__.py,sha256=
|
1
|
+
resqpy/__init__.py,sha256=QV1nUps14PTueCXT7brLgS0oIjyXagBdfo2jsNLn6iA,556
|
2
2
|
resqpy/crs.py,sha256=R7DfcTP5xGv5pu9Y8RHA2WVM9DjBCSVMoHcz4RmQ7Yw,27646
|
3
3
|
resqpy/derived_model/__init__.py,sha256=NFvMSOKI3cxmH7lAbddV43JjoUj-r2G7ExEfOqinD1I,1982
|
4
4
|
resqpy/derived_model/_add_edges_per_column_property_array.py,sha256=cpW3gwp6MSYIrtvFmCjoJXcyUsgGuCDbgmwlJCJebUs,6410
|
@@ -48,7 +48,7 @@ resqpy/grid/_write_nexus_corp.py,sha256=yEVfiObsedEAXX6UG6ZTf56kZnQVkd3lLqE2NpL-
|
|
48
48
|
resqpy/grid/_xyz.py,sha256=RLQWOdM_DRoCj4JypwB5gUJ78HTdk5JnZHSeAzuU634,13087
|
49
49
|
resqpy/grid_surface/__init__.py,sha256=IlPwm6G7P_Vg_w7JHqSs-d_oxk2QmFtWGTk_vvr1qm8,2911
|
50
50
|
resqpy/grid_surface/_blocked_well_populate.py,sha256=Lme1AR-nLWOUlNnmHMVThk6jEg_lAZxWWtL82Yksppw,35867
|
51
|
-
resqpy/grid_surface/_find_faces.py,sha256=
|
51
|
+
resqpy/grid_surface/_find_faces.py,sha256=kTytXfYqhcSES-Mnn1gDcdtvX-Ably1FAV3AILGMYUk,106788
|
52
52
|
resqpy/grid_surface/_grid_skin.py,sha256=D0cjHkcuT5KCKb-8EZfXgh0GgJj3kzOBS2wVNXg4bfY,26056
|
53
53
|
resqpy/grid_surface/_grid_surface.py,sha256=l2NJo7Kiucolbb_TlLPC7NGdksg_JahkihfsrJVq99w,14379
|
54
54
|
resqpy/grid_surface/_trajectory_intersects.py,sha256=Och9cZYU9Y7ofovhPzsLyIblRUl2xj9_5nHH3fMZp-A,22498
|
@@ -69,7 +69,7 @@ resqpy/multi_processing/__init__.py,sha256=ZRudHfN9aaZjxvat7t8BZr6mwMi9baiCNjczw
|
|
69
69
|
resqpy/multi_processing/_multiprocessing.py,sha256=bnCKfSC1tWwvZmZ7BZqCyje0C93m6q7HZPxNpx8xoxA,7301
|
70
70
|
resqpy/multi_processing/wrappers/__init__.py,sha256=7vjuTWdHnp3rN9Ud8ljpDnt1NbBAyhA08lv-sQ9Kf3o,72
|
71
71
|
resqpy/multi_processing/wrappers/blocked_well_mp.py,sha256=_2fEsSmJVQCnbQIjTHqmnNEugfhN1KvX-o4ZbvtChdI,5952
|
72
|
-
resqpy/multi_processing/wrappers/grid_surface_mp.py,sha256=
|
72
|
+
resqpy/multi_processing/wrappers/grid_surface_mp.py,sha256=QvfyGYVBPf5E_nLWUoG6OHxuvTdkqTPj-_w3Or_OSuI,25270
|
73
73
|
resqpy/multi_processing/wrappers/mesh_mp.py,sha256=0VYoqtgBFfrlyYB6kkjbdrRQ5FKe6t5pHJO3wD9b8Fc,5793
|
74
74
|
resqpy/olio/__init__.py,sha256=j2breqKYVufhw5k8qS2uZwB3tUKT7FhdZ23ninS75YA,84
|
75
75
|
resqpy/olio/ab_toolbox.py,sha256=bZlAhOJVS0HvIYBW0Lg68re17N8eltoQhIUh0xuUyVc,2147
|
@@ -194,7 +194,7 @@ resqpy/well/_wellbore_marker_frame.py,sha256=xvYH2_2Ie3a18LReFymbUrZboOx7Rhv5DOD
|
|
194
194
|
resqpy/well/blocked_well_frame.py,sha256=Rx8jwkCjchseDZaTttPkA1-f6l7W6vRGrxWtDHlEPx8,22560
|
195
195
|
resqpy/well/well_object_funcs.py,sha256=tWufc8wahihzMEO-Ou1dncIttrf4bNo1qmLgh3I2pOM,24717
|
196
196
|
resqpy/well/well_utils.py,sha256=zwpYjT85nXAwWBhYB1Pygu2SgouZ-44k6hEOnpoMfBI,5969
|
197
|
-
resqpy-4.18.
|
198
|
-
resqpy-4.18.
|
199
|
-
resqpy-4.18.
|
200
|
-
resqpy-4.18.
|
197
|
+
resqpy-4.18.5.dist-info/LICENSE,sha256=2duHPIkKQyESMdQ4hKjL8CYEsYRHXaYxt0YQkzsUYE4,1059
|
198
|
+
resqpy-4.18.5.dist-info/METADATA,sha256=YbPMsqf3AeXIoZtYDBvYeom9RXITeGi_4TUvWd3aLtY,4028
|
199
|
+
resqpy-4.18.5.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
200
|
+
resqpy-4.18.5.dist-info/RECORD,,
|
File without changes
|
File without changes
|