resqpy 4.18.3__py3-none-any.whl → 4.18.4__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 +63 -37
- {resqpy-4.18.3.dist-info → resqpy-4.18.4.dist-info}/METADATA +1 -1
- {resqpy-4.18.3.dist-info → resqpy-4.18.4.dist-info}/RECORD +6 -6
- {resqpy-4.18.3.dist-info → resqpy-4.18.4.dist-info}/LICENSE +0 -0
- {resqpy-4.18.3.dist-info → resqpy-4.18.4.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,18 @@ 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)
|
1578
|
+
print(f'**** array shape: {array.shape}; dtype: {array.dtype}')
|
1594
1579
|
|
1595
1580
|
return array, is_curtain
|
1596
1581
|
|
@@ -2028,20 +2013,22 @@ def _fill_bisector(bisect: np.ndarray, open_k: np.ndarray, open_j: np.ndarray, o
|
|
2028
2013
|
going = True
|
2029
2014
|
|
2030
2015
|
|
2031
|
-
#
|
2032
|
-
#@njit # pragma: no cover
|
2016
|
+
@njit # pragma: no cover
|
2033
2017
|
def _fill_packed_bisector(bisect: np.ndarray, open_k: np.ndarray, open_j: np.ndarray, open_i: np.ndarray):
|
2034
2018
|
nk: int = bisect.shape[0]
|
2035
2019
|
nj: int = bisect.shape[1]
|
2036
2020
|
ni: int = bisect.shape[2]
|
2037
2021
|
going: bool = True
|
2022
|
+
m: np.uint8 = np.uint8(0)
|
2023
|
+
om: np.uint8 = np.uint8(0)
|
2024
|
+
oi: np.uint8 = np.uint8(0)
|
2038
2025
|
while going:
|
2039
2026
|
going = False
|
2040
2027
|
for k in range(nk):
|
2041
2028
|
for j in range(nj):
|
2042
2029
|
for i in range(ni):
|
2043
|
-
m = bisect[k, j, i] # 8 bools packed into a uint8
|
2044
|
-
if bisect[k, j, i] ==
|
2030
|
+
m = np.uint8(bisect[k, j, i]) # 8 bools packed into a uint8
|
2031
|
+
if bisect[k, j, i] == np.uint8(0xFF): # all 8 values already set
|
2045
2032
|
continue
|
2046
2033
|
om = m # copy to check for changes later
|
2047
2034
|
if k:
|
@@ -2052,14 +2039,14 @@ def _fill_packed_bisector(bisect: np.ndarray, open_k: np.ndarray, open_j: np.nda
|
|
2052
2039
|
m |= (bisect[k, j - 1, i] & open_j[k, j - 1, i])
|
2053
2040
|
if j < nj - 1:
|
2054
2041
|
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
|
2042
|
+
oi = np.uint8(open_i[k, j, i]) # type: ignore
|
2043
|
+
m |= (m >> 1) & (oi >> 1) # type: ignore
|
2044
|
+
m |= (m << 1) & oi # type: ignore
|
2058
2045
|
# handle rollover bits for I
|
2059
|
-
if i and (bisect[k, j, i - 1] & open_i[k, j, i - 1] &
|
2060
|
-
m |= 0x80
|
2046
|
+
if i and (bisect[k, j, i - 1] & open_i[k, j, i - 1] & np.uint8(0x01)):
|
2047
|
+
m |= np.uint8(0x80)
|
2061
2048
|
if (i < ni - 1) and (oi & 1) and (bisect[k, j, i + 1] & 0x80):
|
2062
|
-
m |=
|
2049
|
+
m |= np.uint8(0x01)
|
2063
2050
|
if m != om:
|
2064
2051
|
bisect[k, j, i] = m
|
2065
2052
|
going = True
|
@@ -2088,8 +2075,7 @@ def _shallow_or_curtain(a: np.ndarray, true_count: int, raw: bool) -> bool:
|
|
2088
2075
|
return is_curtain
|
2089
2076
|
|
2090
2077
|
|
2091
|
-
#
|
2092
|
-
#@njit # pragma: no cover
|
2078
|
+
@njit # pragma: no cover
|
2093
2079
|
def _packed_shallow_or_curtain(a: np.ndarray, true_count: int, raw: bool) -> bool:
|
2094
2080
|
# negate the packed bool array if it minimises the mean k and determine if the bisector indicates a curtain
|
2095
2081
|
assert a.ndim == 3
|
@@ -2099,13 +2085,38 @@ def _packed_shallow_or_curtain(a: np.ndarray, true_count: int, raw: bool) -> boo
|
|
2099
2085
|
is_curtain: bool = False
|
2100
2086
|
layer_count: int = 0
|
2101
2087
|
for k in range(a.shape[0]):
|
2102
|
-
|
2088
|
+
# np.bitwise_count() not yet supported by numba
|
2089
|
+
layer_count = np.sum(np.bitwise_count(a[k]), dtype = np.int64) # type: ignore
|
2103
2090
|
k_sum += (k + 1) * layer_count
|
2104
2091
|
opposite_k_sum += (k + 1) * (layer_cell_count - layer_count)
|
2105
2092
|
mean_k: float = float(k_sum) / float(true_count)
|
2106
2093
|
opposite_mean_k: float = float(opposite_k_sum) / float(8 * a.size - true_count)
|
2107
2094
|
if mean_k > opposite_mean_k and not raw:
|
2108
|
-
a[:] = np.invert(a
|
2095
|
+
a[:] = np.invert(a)
|
2096
|
+
if abs(mean_k - opposite_mean_k) <= 0.001:
|
2097
|
+
# log.warning('unable to determine which side of surface is shallower')
|
2098
|
+
is_curtain = True
|
2099
|
+
return is_curtain
|
2100
|
+
|
2101
|
+
|
2102
|
+
@njit # pragma: no cover
|
2103
|
+
def _packed_shallow_or_curtain_temp_bitwise_count(a: np.ndarray, true_count: int, raw: bool) -> bool:
|
2104
|
+
# negate the packed bool array if it minimises the mean k and determine if the bisector indicates a curtain
|
2105
|
+
assert a.ndim == 3
|
2106
|
+
# note: following 'cell count' includes padding bits
|
2107
|
+
layer_cell_count: np.int64 = 8 * a.shape[1] * a.shape[2] # type: ignore
|
2108
|
+
k_sum: np.int64 = 0 # type: ignore
|
2109
|
+
opposite_k_sum: np.int64 = 0 # type: ignore
|
2110
|
+
is_curtain: bool = False
|
2111
|
+
layer_count: np.int64 = 0 # type: ignore
|
2112
|
+
for k in range(a.shape[0]):
|
2113
|
+
layer_count = _bitwise_count_njit(a[k])
|
2114
|
+
k_sum += (k + 1) * layer_count
|
2115
|
+
opposite_k_sum += (k + 1) * (layer_cell_count - layer_count)
|
2116
|
+
mean_k: float = float(k_sum) / float(true_count)
|
2117
|
+
opposite_mean_k: float = float(opposite_k_sum) / float(8 * a.size - true_count)
|
2118
|
+
if mean_k > opposite_mean_k and not raw:
|
2119
|
+
a[:] = np.invert(a)
|
2109
2120
|
if abs(mean_k - opposite_mean_k) <= 0.001:
|
2110
2121
|
# log.warning('unable to determine which side of surface is shallower')
|
2111
2122
|
is_curtain = True
|
@@ -2274,3 +2285,18 @@ def _shape_packed(unpacked_shape):
|
|
2274
2285
|
head = list(unpacked_shape[:-1])
|
2275
2286
|
head.append(shrunken)
|
2276
2287
|
return tuple(head)
|
2288
|
+
|
2289
|
+
|
2290
|
+
@njit # pragma: no cover
|
2291
|
+
def _bitwise_count_njit(a: np.ndarray) -> np.int64:
|
2292
|
+
"""Deprecated: only needed till numpy versions < 2.0.0 are dropped."""
|
2293
|
+
c: np.int64 = 0 # type: ignore
|
2294
|
+
c += np.count_nonzero(np.bitwise_and(a, 0x01))
|
2295
|
+
c += np.count_nonzero(np.bitwise_and(a, 0x02))
|
2296
|
+
c += np.count_nonzero(np.bitwise_and(a, 0x04))
|
2297
|
+
c += np.count_nonzero(np.bitwise_and(a, 0x08))
|
2298
|
+
c += np.count_nonzero(np.bitwise_and(a, 0x10))
|
2299
|
+
c += np.count_nonzero(np.bitwise_and(a, 0x20))
|
2300
|
+
c += np.count_nonzero(np.bitwise_and(a, 0x40))
|
2301
|
+
c += np.count_nonzero(np.bitwise_and(a, 0x80))
|
2302
|
+
return c
|
@@ -1,4 +1,4 @@
|
|
1
|
-
resqpy/__init__.py,sha256=
|
1
|
+
resqpy/__init__.py,sha256=3l-Kxew1egDvWafAvymh-cOYinz6WxZkG5dEkZXBBQk,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=sgMvBX8kduq2taAe1RRHpUjn1iCgex1F8cAJVG9hqJY,106856
|
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
|
@@ -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.4.dist-info/LICENSE,sha256=2duHPIkKQyESMdQ4hKjL8CYEsYRHXaYxt0YQkzsUYE4,1059
|
198
|
+
resqpy-4.18.4.dist-info/METADATA,sha256=G_V0kUoVekOZesVDi5IaV1HZWvTRT_tvA1qdB3gsKHw,4028
|
199
|
+
resqpy-4.18.4.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
200
|
+
resqpy-4.18.4.dist-info/RECORD,,
|
File without changes
|
File without changes
|