resqpy 4.18.7__py3-none-any.whl → 4.18.9__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/_grid.py +30 -6
- resqpy/surface/_surface.py +27 -0
- {resqpy-4.18.7.dist-info → resqpy-4.18.9.dist-info}/METADATA +1 -1
- {resqpy-4.18.7.dist-info → resqpy-4.18.9.dist-info}/RECORD +7 -7
- {resqpy-4.18.7.dist-info → resqpy-4.18.9.dist-info}/LICENSE +0 -0
- {resqpy-4.18.7.dist-info → resqpy-4.18.9.dist-info}/WHEEL +0 -0
resqpy/__init__.py
CHANGED
resqpy/grid/_grid.py
CHANGED
@@ -1498,7 +1498,7 @@ class Grid(BaseResqpy):
|
|
1498
1498
|
"""
|
1499
1499
|
return z_corner_point_depths(self, order = order)
|
1500
1500
|
|
1501
|
-
def frontier(self, set_z_zero = True, title = None, add_as_part = True):
|
1501
|
+
def frontier(self, set_z_zero = True, title = None, add_as_part = True, mode = 'mean'):
|
1502
1502
|
"""Returns a frontier polygon (closed polyline) based on midpoints of edge coordinate lines, with z set to zero.
|
1503
1503
|
|
1504
1504
|
arguments:
|
@@ -1507,35 +1507,59 @@ class Grid(BaseResqpy):
|
|
1507
1507
|
- title (str, optional): the citation title for the polyline; if None, one is generated using the grid title
|
1508
1508
|
- add_as_part (bool default True): if True, the xml is created for the polyline and it is added as a part to
|
1509
1509
|
the model; if False, the create_xml() method is not called fot the polyline
|
1510
|
-
|
1510
|
+
- mode (str, default 'mean'): one of 'mean', 'top', 'base', 'inner', 'outer' determining how a non-vertical
|
1511
|
+
edge coordinate line is converted to a point to include in the frontier
|
1512
|
+
|
1511
1513
|
returns:
|
1512
1514
|
- closed Polyline representing the frontier of the grid in plan view
|
1513
1515
|
"""
|
1516
|
+
|
1517
|
+
def get_point(clep, mode, centrum):
|
1518
|
+
if mode == 'mean':
|
1519
|
+
return np.nanmean(clep, axis = 0)
|
1520
|
+
if mode == 'top':
|
1521
|
+
return clep[0]
|
1522
|
+
if mode == 'base':
|
1523
|
+
return clep[-1]
|
1524
|
+
assert mode in ['inner', 'outer'], f'unrecognised frontier mode: {mode}'
|
1525
|
+
vp = clep - np.expand_dims(centrum, axis = 0)
|
1526
|
+
dp = np.sum(vp * vp, axis = -1)
|
1527
|
+
if (dp[0] < dp[1] and mode == 'inner') or (dp[0] > dp[1] and mode == 'outer'):
|
1528
|
+
return clep[0]
|
1529
|
+
return clep[-1]
|
1530
|
+
|
1531
|
+
assert mode in ['mean', 'top', 'base', 'inner', 'outer']
|
1514
1532
|
coords = self.coordinate_line_end_points()
|
1533
|
+
centrum = None
|
1534
|
+
if mode in ['inner', 'outer']:
|
1535
|
+
centrum = np.nanmean(np.concatenate((coords[0, 0], coords[0, -1], coords[-1, 0], coords[-1, -1]), axis = 0),
|
1536
|
+
axis = 0)
|
1537
|
+
assert not np.any(
|
1538
|
+
np.isnan(centrum)), f'trying to make frontier polygon in mode {mode} when corners of grid not defined'
|
1515
1539
|
nj = self.nj
|
1516
1540
|
ni = self.ni
|
1517
1541
|
frontier = np.zeros((2 * (nj + ni), 3), dtype = float)
|
1518
1542
|
f_i = 0
|
1519
1543
|
for i in range(self.ni):
|
1520
|
-
c =
|
1544
|
+
c = get_point(coords[0, i], mode, centrum)
|
1521
1545
|
if np.any(np.isnan(c)):
|
1522
1546
|
continue
|
1523
1547
|
frontier[f_i] = c
|
1524
1548
|
f_i += 1
|
1525
1549
|
for j in range(self.nj):
|
1526
|
-
c =
|
1550
|
+
c = get_point(coords[j, ni], mode, centrum)
|
1527
1551
|
if np.any(np.isnan(c)):
|
1528
1552
|
continue
|
1529
1553
|
frontier[f_i] = c
|
1530
1554
|
f_i += 1
|
1531
1555
|
for i in range(self.ni, 0, -1):
|
1532
|
-
c =
|
1556
|
+
c = get_point(coords[nj, i], mode, centrum)
|
1533
1557
|
if np.any(np.isnan(c)):
|
1534
1558
|
continue
|
1535
1559
|
frontier[f_i] = c
|
1536
1560
|
f_i += 1
|
1537
1561
|
for j in range(self.nj, 0, -1):
|
1538
|
-
c =
|
1562
|
+
c = get_point(coords[j, 0], mode, centrum)
|
1539
1563
|
if np.any(np.isnan(c)):
|
1540
1564
|
continue
|
1541
1565
|
frontier[f_i] = c
|
resqpy/surface/_surface.py
CHANGED
@@ -1169,6 +1169,33 @@ class Surface(rqsb.BaseSurface):
|
|
1169
1169
|
|
1170
1170
|
return resampled
|
1171
1171
|
|
1172
|
+
def resample_surface_unique_edges(self):
|
1173
|
+
"""Returns a new surface, with the same model, title and crs as the original surface, but with additional refined points along original surface tears and edges.
|
1174
|
+
|
1175
|
+
Each edge forming a tear or outer edge in the surface will have 3 additional points added, with 2 additional points on each edge of the original triangle. The output surface is re-triangulated using these new points (tears will be filled)
|
1176
|
+
|
1177
|
+
returns:
|
1178
|
+
resqpy.surface.Surface object with extra_metadata ('unique edges resampled from surface': uuid), where uuid is for the original surface uuid
|
1179
|
+
"""
|
1180
|
+
_, op = self.triangles_and_points()
|
1181
|
+
ref = self.resampled_surface() # resample the original surface
|
1182
|
+
rt, rp = ref.triangles_and_points()
|
1183
|
+
de, dc = ref.distinct_edges_and_counts() # find the distinct edges and counts for the resampled surface
|
1184
|
+
de_edge = de[dc == 1] # find edges that only appear once - tears or surface edges
|
1185
|
+
edge_tri_index = np.sum(np.isin(rt, de_edge), axis = 1) == 2
|
1186
|
+
edge_tris = rp[rt[edge_tri_index]]
|
1187
|
+
mid = np.mean(rp[de_edge], axis = 1) # get the midpoint of each surface edge
|
1188
|
+
edge_ref_points = np.unique(np.concatenate([op, edge_tris.reshape(-1, 3), mid]), axis = 0) # combine all points
|
1189
|
+
|
1190
|
+
points = rqs.PointSet(self.model, points_array = edge_ref_points, title = self.title,
|
1191
|
+
crs_uuid = self.crs_uuid) # generate a pointset from these points
|
1192
|
+
|
1193
|
+
output = Surface(self.model, point_set = points,
|
1194
|
+
extra_metadata = {'resampled from surface': str(self.uuid)
|
1195
|
+
}) # return a surface with generated from these points
|
1196
|
+
|
1197
|
+
return output
|
1198
|
+
|
1172
1199
|
def write_hdf5(self, file_name = None, mode = 'a'):
|
1173
1200
|
"""Create or append to an hdf5 file, writing datasets for the triangulated patches after caching arrays.
|
1174
1201
|
|
@@ -1,4 +1,4 @@
|
|
1
|
-
resqpy/__init__.py,sha256=
|
1
|
+
resqpy/__init__.py,sha256=lB-7ZcQp9dDxWaqMRVMU8EvWJuaaUZH9Pp6m7NuwNiQ,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
|
@@ -34,7 +34,7 @@ resqpy/grid/_defined_geometry.py,sha256=QYQ3wLbPrlPobgUi9R1izTD4JD9qMGf5eyqbM68H
|
|
34
34
|
resqpy/grid/_extract_functions.py,sha256=pOVC2vv4dJ9G7e6p3uh2mz4QPb6W7_pKiaq8HAWeyzg,28263
|
35
35
|
resqpy/grid/_face_functions.py,sha256=0I7O6DDz7nJWczi_G2bE3L2XUr4acxREwKygXWEp6F4,16516
|
36
36
|
resqpy/grid/_faults.py,sha256=OmukVoLpdrndqDxwE6Rj7Ul5tj3FUQVPhE0raH2FHpg,12236
|
37
|
-
resqpy/grid/_grid.py,sha256=
|
37
|
+
resqpy/grid/_grid.py,sha256=d4hSTmtdfmuEiQIjOhSAAlJZNlYBf0Fui4PPGJE5I4U,136144
|
38
38
|
resqpy/grid/_grid_types.py,sha256=YAmRrrm-J2HKuuwCRCAkE3ppcQLiwc4EEc6dc-sy9Fc,4362
|
39
39
|
resqpy/grid/_intervals_info.py,sha256=ODjDz22n8U9pSpO0Muj8mJr2hYWauFDzgcVQ0RM3csQ,338
|
40
40
|
resqpy/grid/_moved_functions.py,sha256=XboxA0pE55j-P_x5g051WheVamxkAatQGbU5aq2GkaE,604
|
@@ -163,7 +163,7 @@ resqpy/surface/_base_surface.py,sha256=LsWrDrbuuaEVRgf2Dlbc-6ZvGQpjtrKuxF7Jjebvl
|
|
163
163
|
resqpy/surface/_combined_surface.py,sha256=8TnNbSywjej6tW_vRr5zoVgBbvnadCaqWk6WyHWHTYQ,3082
|
164
164
|
resqpy/surface/_mesh.py,sha256=yEFldNWT2g8MCGcU4mTeWzDrLHHGLLGLIle1gAjJ_lg,42352
|
165
165
|
resqpy/surface/_pointset.py,sha256=niTkBik9hAvqrY8340K1TRG7mg4FMQbbp12WZiiXPMs,27416
|
166
|
-
resqpy/surface/_surface.py,sha256=
|
166
|
+
resqpy/surface/_surface.py,sha256=pGVpZiIoaZm7UA26VnEEthMdKr3XtNIIhWFV8mOVDXY,73491
|
167
167
|
resqpy/surface/_tri_mesh.py,sha256=EmV4FhyjuusQFruW1SseufbnHF5YFoJ6Uvb07UJbH6s,26609
|
168
168
|
resqpy/surface/_tri_mesh_stencil.py,sha256=eXt_HIKvsXGsjQ7nm_NbozR6ProQxPbeO52r79j80ig,16087
|
169
169
|
resqpy/surface/_triangulated_patch.py,sha256=FKn_Irzp4aLFkkN_-tx1MLMKjEAiOLE8636sOA481TQ,26802
|
@@ -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.9.dist-info/LICENSE,sha256=2duHPIkKQyESMdQ4hKjL8CYEsYRHXaYxt0YQkzsUYE4,1059
|
198
|
+
resqpy-4.18.9.dist-info/METADATA,sha256=cgQ2tIjpkdQz_Eu2ccGfKDuF_zcmf6K2QIZmL4R8oIs,4028
|
199
|
+
resqpy-4.18.9.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
200
|
+
resqpy-4.18.9.dist-info/RECORD,,
|
File without changes
|
File without changes
|