resqpy 5.1.1__py3-none-any.whl → 5.1.3__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 +27 -17
- resqpy/olio/vector_utilities.py +18 -0
- {resqpy-5.1.1.dist-info → resqpy-5.1.3.dist-info}/METADATA +1 -1
- {resqpy-5.1.1.dist-info → resqpy-5.1.3.dist-info}/RECORD +7 -7
- {resqpy-5.1.1.dist-info → resqpy-5.1.3.dist-info}/LICENSE +0 -0
- {resqpy-5.1.1.dist-info → resqpy-5.1.3.dist-info}/WHEEL +0 -0
resqpy/__init__.py
CHANGED
@@ -1246,9 +1246,9 @@ def find_faces_to_represent_surface_regular_optimised(grid,
|
|
1246
1246
|
# log.debug('finished preparing columns bisector')
|
1247
1247
|
elif patchwork:
|
1248
1248
|
n_patches = surface.number_of_patches()
|
1249
|
-
nkf = len(k_faces_kji0)
|
1250
|
-
njf = len(j_faces_kji0)
|
1251
|
-
nif = len(i_faces_kji0)
|
1249
|
+
nkf = 0 if k_faces_kji0 is None else len(k_faces_kji0)
|
1250
|
+
njf = 0 if j_faces_kji0 is None else len(j_faces_kji0)
|
1251
|
+
nif = 0 if i_faces_kji0 is None else len(i_faces_kji0)
|
1252
1252
|
# fetch patch indices for triangle hits
|
1253
1253
|
assert all_tris is not None and len(all_tris) == nkf + njf + nif
|
1254
1254
|
patch_indices_k = surface.patch_indices_for_triangle_indices(all_tris[:nkf])
|
@@ -1260,27 +1260,37 @@ def find_faces_to_represent_surface_regular_optimised(grid,
|
|
1260
1260
|
bisector = np.ones(_shape_packed(grid.extent_kji), dtype = np.uint8)
|
1261
1261
|
else:
|
1262
1262
|
bisector = np.ones(tuple(grid.extent_kji), dtype = np.bool_)
|
1263
|
-
# populate
|
1263
|
+
# populate composite bisector
|
1264
1264
|
for patch in range(n_patches):
|
1265
1265
|
mask = (patch_indices == patch)
|
1266
1266
|
if np.count_nonzero(mask) == 0:
|
1267
1267
|
log.warning(f'patch {patch} of surface {surface.title} is not applicable to any cells in grid')
|
1268
1268
|
continue
|
1269
|
+
patch_k_faces_kji0 = None
|
1270
|
+
if k_faces_kji0 is not None:
|
1271
|
+
patch_k_faces_kji0 = k_faces_kji0[(patch_indices_k == patch).astype(bool)]
|
1272
|
+
patch_j_faces_kji0 = None
|
1273
|
+
if j_faces_kji0 is not None:
|
1274
|
+
patch_j_faces_kji0 = j_faces_kji0[(patch_indices_j == patch).astype(bool)]
|
1275
|
+
patch_i_faces_kji0 = None
|
1276
|
+
if i_faces_kji0 is not None:
|
1277
|
+
patch_i_faces_kji0 = i_faces_kji0[(patch_indices_i == patch).astype(bool)]
|
1269
1278
|
if packed_bisectors:
|
1270
1279
|
mask = np.packbits(mask, axis = -1)
|
1271
1280
|
patch_bisector, is_curtain = \
|
1272
1281
|
packed_bisector_from_face_indices(tuple(grid.extent_kji),
|
1273
|
-
|
1274
|
-
|
1275
|
-
|
1282
|
+
patch_k_faces_kji0,
|
1283
|
+
patch_j_faces_kji0,
|
1284
|
+
patch_i_faces_kji0,
|
1276
1285
|
raw_bisector)
|
1277
|
-
bisector = np.bitwise_or(np.bitwise_and(mask, patch_bisector),
|
1286
|
+
bisector = np.bitwise_or(np.bitwise_and(mask, patch_bisector),
|
1287
|
+
np.bitwise_and(np.invert(mask), bisector))
|
1278
1288
|
else:
|
1279
1289
|
patch_bisector, is_curtain = \
|
1280
1290
|
bisector_from_face_indices(tuple(grid.extent_kji),
|
1281
|
-
|
1282
|
-
|
1283
|
-
|
1291
|
+
patch_k_faces_kji0,
|
1292
|
+
patch_j_faces_kji0,
|
1293
|
+
patch_i_faces_kji0,
|
1284
1294
|
raw_bisector)
|
1285
1295
|
bisector[mask] = patch_bisector[mask]
|
1286
1296
|
if is_curtain:
|
@@ -2293,12 +2303,12 @@ def get_boundary_from_indices( # type: ignore
|
|
2293
2303
|
k_faces_kji0: Union[np.ndarray, None], j_faces_kji0: Union[np.ndarray, None],
|
2294
2304
|
i_faces_kji0: Union[np.ndarray, None], grid_extent_kji: Tuple[int, int, int]) -> np.ndarray:
|
2295
2305
|
"""Return python protocol box containing indices"""
|
2296
|
-
k_min_kji0 = None if (k_faces_kji0 is None or k_faces_kji0.size == 0) else np.min(k_faces_kji0, axis = 0)
|
2297
|
-
k_max_kji0 = None if (k_faces_kji0 is None or k_faces_kji0.size == 0) else np.max(k_faces_kji0, axis = 0)
|
2298
|
-
j_min_kji0 = None if (j_faces_kji0 is None or j_faces_kji0.size == 0) else np.min(j_faces_kji0, axis = 0)
|
2299
|
-
j_max_kji0 = None if (j_faces_kji0 is None or j_faces_kji0.size == 0) else np.max(j_faces_kji0, axis = 0)
|
2300
|
-
i_min_kji0 = None if (i_faces_kji0 is None or i_faces_kji0.size == 0) else np.min(i_faces_kji0, axis = 0)
|
2301
|
-
i_max_kji0 = None if (i_faces_kji0 is None or i_faces_kji0.size == 0) else np.max(i_faces_kji0, axis = 0)
|
2306
|
+
k_min_kji0 = None if ((k_faces_kji0 is None) or (k_faces_kji0.size == 0)) else np.min(k_faces_kji0, axis = 0)
|
2307
|
+
k_max_kji0 = None if ((k_faces_kji0 is None) or (k_faces_kji0.size == 0)) else np.max(k_faces_kji0, axis = 0)
|
2308
|
+
j_min_kji0 = None if ((j_faces_kji0 is None) or (j_faces_kji0.size == 0)) else np.min(j_faces_kji0, axis = 0)
|
2309
|
+
j_max_kji0 = None if ((j_faces_kji0 is None) or (j_faces_kji0.size == 0)) else np.max(j_faces_kji0, axis = 0)
|
2310
|
+
i_min_kji0 = None if ((i_faces_kji0 is None) or (i_faces_kji0.size == 0)) else np.min(i_faces_kji0, axis = 0)
|
2311
|
+
i_max_kji0 = None if ((i_faces_kji0 is None) or (i_faces_kji0.size == 0)) else np.max(i_faces_kji0, axis = 0)
|
2302
2312
|
box = np.empty((2, 3), dtype = np.int32)
|
2303
2313
|
box[0, :] = grid_extent_kji
|
2304
2314
|
box[1, :] = -1
|
resqpy/olio/vector_utilities.py
CHANGED
@@ -1363,6 +1363,24 @@ def triangle_normal_vector_numba(points): # pragma: no cover
|
|
1363
1363
|
return v / np.linalg.norm(v)
|
1364
1364
|
|
1365
1365
|
|
1366
|
+
@njit
|
1367
|
+
def triangles_normal_vectors(t: np.ndarray, p: np.ndarray) -> np.ndarray: # pragma: no cover
|
1368
|
+
"""For a triangulated set, return an array of unit normal vectors (one per triangle).
|
1369
|
+
|
1370
|
+
note:
|
1371
|
+
resulting vectors implicitly assume that xy & z units are the same; if this is not the case, adjust vectors
|
1372
|
+
afterwards as required
|
1373
|
+
"""
|
1374
|
+
nv = np.empty((len(t), 3), dtype = np.float64)
|
1375
|
+
v = np.zeros(3, dtype = np.float64)
|
1376
|
+
for ti in range(len(t)):
|
1377
|
+
v[:] = np.cross(p[t[ti, 0]] - p[t[ti, 1]], p[t[ti, 0]] - p[t[ti, 2]])
|
1378
|
+
if v[2] < 0.0:
|
1379
|
+
v[:] = -v
|
1380
|
+
nv[ti, :] = v / np.linalg.norm(v)
|
1381
|
+
return nv
|
1382
|
+
|
1383
|
+
|
1366
1384
|
def in_circumcircle(a, b, c, d):
|
1367
1385
|
"""Returns True if point d lies within the circumcircle pf ccw points a, b, c, projected onto xy plane.
|
1368
1386
|
|
@@ -1,4 +1,4 @@
|
|
1
|
-
resqpy/__init__.py,sha256=
|
1
|
+
resqpy/__init__.py,sha256=v1suGb9OEjHgcvF6jTHiNDS_EenJ2Wd5dHfV_Bylcuo,555
|
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
|
@@ -47,7 +47,7 @@ resqpy/grid/_write_nexus_corp.py,sha256=yEVfiObsedEAXX6UG6ZTf56kZnQVkd3lLqE2NpL-
|
|
47
47
|
resqpy/grid/_xyz.py,sha256=RLQWOdM_DRoCj4JypwB5gUJ78HTdk5JnZHSeAzuU634,13087
|
48
48
|
resqpy/grid_surface/__init__.py,sha256=IlPwm6G7P_Vg_w7JHqSs-d_oxk2QmFtWGTk_vvr1qm8,2911
|
49
49
|
resqpy/grid_surface/_blocked_well_populate.py,sha256=Lme1AR-nLWOUlNnmHMVThk6jEg_lAZxWWtL82Yksppw,35867
|
50
|
-
resqpy/grid_surface/_find_faces.py,sha256=
|
50
|
+
resqpy/grid_surface/_find_faces.py,sha256=3-aIp6K9rnmGC29c1TOfzky-I0VFTi-agEktWUF1294,112055
|
51
51
|
resqpy/grid_surface/_grid_skin.py,sha256=D0cjHkcuT5KCKb-8EZfXgh0GgJj3kzOBS2wVNXg4bfY,26056
|
52
52
|
resqpy/grid_surface/_grid_surface.py,sha256=l2NJo7Kiucolbb_TlLPC7NGdksg_JahkihfsrJVq99w,14379
|
53
53
|
resqpy/grid_surface/_trajectory_intersects.py,sha256=Och9cZYU9Y7ofovhPzsLyIblRUl2xj9_5nHH3fMZp-A,22498
|
@@ -97,7 +97,7 @@ resqpy/olio/transmission.py,sha256=auz_12TKtSPy6Fv3wmKn5lXPRAEnn2tYVyTQfsj37xU,6
|
|
97
97
|
resqpy/olio/triangulation.py,sha256=sBNP4MhSpY2bv6BYIn7890stqetkK5dag9pYNFiUs2g,46037
|
98
98
|
resqpy/olio/uuid.py,sha256=JRMi-RZNeGm8tGNloIwTATzNtdj29lBQDV9OILboPRI,7324
|
99
99
|
resqpy/olio/vdb.py,sha256=lQYuK1kr1Wnucq2EoKgT6lrR7vloCemnCKZktzBcLUc,45231
|
100
|
-
resqpy/olio/vector_utilities.py,sha256=
|
100
|
+
resqpy/olio/vector_utilities.py,sha256=T8n9JMhE13msuy1dwJeIWw6ByKbm2o4zUV8l5frVsuk,61784
|
101
101
|
resqpy/olio/volume.py,sha256=inKZzW8UiYvyetltz_r_OgO3UzVtqdOz_RMg-WqlyDo,5475
|
102
102
|
resqpy/olio/wellspec_keywords.py,sha256=ad3B727golWYiko54OZOw7vG21IvpNxCMCyLv8jSkcI,26533
|
103
103
|
resqpy/olio/write_data.py,sha256=bIX7ilMkXWCMz_zQh-Gqk56sNzng4W5l4BahW2EV7Kw,5142
|
@@ -193,7 +193,7 @@ resqpy/well/_wellbore_marker_frame.py,sha256=xvYH2_2Ie3a18LReFymbUrZboOx7Rhv5DOD
|
|
193
193
|
resqpy/well/blocked_well_frame.py,sha256=Rx8jwkCjchseDZaTttPkA1-f6l7W6vRGrxWtDHlEPx8,22560
|
194
194
|
resqpy/well/well_object_funcs.py,sha256=1O4EVPuTn-kN3uT_V4TbSwehnMUMY0TX36XOUgasTcc,24689
|
195
195
|
resqpy/well/well_utils.py,sha256=-g_pg2v5XD9g4SQz9sk7KK-x2xEQZHzWehCQqiEGo6M,7627
|
196
|
-
resqpy-5.1.
|
197
|
-
resqpy-5.1.
|
198
|
-
resqpy-5.1.
|
199
|
-
resqpy-5.1.
|
196
|
+
resqpy-5.1.3.dist-info/LICENSE,sha256=2duHPIkKQyESMdQ4hKjL8CYEsYRHXaYxt0YQkzsUYE4,1059
|
197
|
+
resqpy-5.1.3.dist-info/METADATA,sha256=cP8drP0abAEs-q-QHWDYNZjq_MoTXD1JilbSor9sF0o,4026
|
198
|
+
resqpy-5.1.3.dist-info/WHEEL,sha256=RaoafKOydTQ7I_I3JTrPCg6kUmTgtm4BornzOqyEfJ8,88
|
199
|
+
resqpy-5.1.3.dist-info/RECORD,,
|
File without changes
|
File without changes
|