resqpy 5.1.1__py3-none-any.whl → 5.1.2__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 CHANGED
@@ -28,6 +28,6 @@
28
28
 
29
29
  import logging
30
30
 
31
- __version__ = "5.1.1" # Set at build time
31
+ __version__ = "5.1.2" # Set at build time
32
32
  log = logging.getLogger(__name__)
33
33
  log.info(f"Imported resqpy version {__version__}")
@@ -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,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: resqpy
3
- Version: 5.1.1
3
+ Version: 5.1.2
4
4
  Summary: Python API for working with RESQML models
5
5
  Home-page: https://github.com/bp/resqpy
6
6
  License: MIT
@@ -1,4 +1,4 @@
1
- resqpy/__init__.py,sha256=p9tTrsC5HfUexwsU8YYBIHq3nslCgVVqUH-tiqKHF7w,555
1
+ resqpy/__init__.py,sha256=nPyHkDD2AePG2ykxW2-G7TGyU-7gCdeuHCDUvEZ2J4I,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
@@ -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=B354cr9-nqqPcb3SAx1jD9Uk51sjkV95xToAiF3-WHA,61127
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.1.dist-info/LICENSE,sha256=2duHPIkKQyESMdQ4hKjL8CYEsYRHXaYxt0YQkzsUYE4,1059
197
- resqpy-5.1.1.dist-info/METADATA,sha256=Cj9yg05wIMxdty_mNIuSG2kY_6NoHMvaRSoDM6C_7gs,4026
198
- resqpy-5.1.1.dist-info/WHEEL,sha256=RaoafKOydTQ7I_I3JTrPCg6kUmTgtm4BornzOqyEfJ8,88
199
- resqpy-5.1.1.dist-info/RECORD,,
196
+ resqpy-5.1.2.dist-info/LICENSE,sha256=2duHPIkKQyESMdQ4hKjL8CYEsYRHXaYxt0YQkzsUYE4,1059
197
+ resqpy-5.1.2.dist-info/METADATA,sha256=VG951DevQ1K1XVYBB8GSkMCea7HzDyDAPcisC8RevW4,4026
198
+ resqpy-5.1.2.dist-info/WHEEL,sha256=RaoafKOydTQ7I_I3JTrPCg6kUmTgtm4BornzOqyEfJ8,88
199
+ resqpy-5.1.2.dist-info/RECORD,,
File without changes