resqpy 4.18.4__py3-none-any.whl → 4.18.6__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__ = "4.18.4" # Set at build time
31
+ __version__ = "4.18.6" # Set at build time
32
32
  log = logging.getLogger(__name__)
33
33
  log.info(f"Imported resqpy version {__version__}")
@@ -501,7 +501,7 @@ def extract_inactive_mask(grid, check_pinchout = False):
501
501
  geom_defined = grr_dg.cell_geometry_is_defined_ref(grid)
502
502
  if grid.inactive is None:
503
503
  if geom_defined is None or geom_defined is True:
504
- grid.inactive = np.zeros(tuple(grid.extent_kji)) # ie. all active
504
+ grid.inactive = np.zeros(tuple(grid.extent_kji), dtype = bool) # ie. all active
505
505
  else:
506
506
  grid.inactive = np.logical_not(grr_dg.cell_geometry_is_defined_ref(grid))
507
507
  if check_pinchout:
@@ -524,6 +524,7 @@ def extract_inactive_mask(grid, check_pinchout = False):
524
524
  active_gpc = rprop.selective_version_of_collection(active_gpc,
525
525
  time_index = grid.time_index,
526
526
  time_series_uuid = grid.time_series_uuid)
527
+ active_parts = active_gpc.parts()
527
528
  else:
528
529
  active_parts = []
529
530
  for part in active_gpc.parts():
resqpy/grid/_grid.py CHANGED
@@ -15,6 +15,7 @@ import resqpy.grid as grr
15
15
  import resqpy.grid_surface as rqgs
16
16
  import resqpy.fault as rqf
17
17
  import resqpy.property as rqp
18
+ import resqpy.lines as rql
18
19
  import resqpy.olio.grid_functions as gf
19
20
  import resqpy.olio.uuid as bu
20
21
  import resqpy.olio.write_hdf5 as rwh5
@@ -75,7 +76,8 @@ class Grid(BaseResqpy):
75
76
  geometry_required = True,
76
77
  title = None,
77
78
  originator = None,
78
- extra_metadata = {}):
79
+ extra_metadata = {},
80
+ load_inactive = True):
79
81
  """Create a Grid object and optionally populate from xml tree.
80
82
 
81
83
  arguments:
@@ -91,6 +93,8 @@ class Grid(BaseResqpy):
91
93
  ignored if loading from xml
92
94
  extra_metadata (dict, optional): dictionary of extra metadata items to add to the grid;
93
95
  ignored if loading from xml
96
+ load_inactive (bool, default True): if True and uuid is provided, the inactive attribubte is
97
+ populated if a property of kind 'active' is found for the grid
94
98
 
95
99
  returns:
96
100
  a newly created Grid object
@@ -147,6 +151,8 @@ class Grid(BaseResqpy):
147
151
  self.title = 'ROOT'
148
152
 
149
153
  if uuid is not None:
154
+ if load_inactive:
155
+ self.extract_inactive_mask()
150
156
  if geometry_required:
151
157
  assert self.geometry_root is not None, 'grid geometry not present in xml'
152
158
  if find_properties:
@@ -185,7 +191,6 @@ class Grid(BaseResqpy):
185
191
  self.extract_parent()
186
192
  self.extract_children()
187
193
  # self.create_column_pillar_mapping() # mapping now created on demand in other methods
188
- self.extract_inactive_mask()
189
194
  self.extract_stratigraphy()
190
195
  self.get_represented_interpretation()
191
196
 
@@ -1493,6 +1498,62 @@ class Grid(BaseResqpy):
1493
1498
  """
1494
1499
  return z_corner_point_depths(self, order = order)
1495
1500
 
1501
+ def frontier(self, set_z_zero = True, title = None, add_as_part = True):
1502
+ """Returns a frontier polygon (closed polyline) based on midpoints of edge coordinate lines, with z set to zero.
1503
+
1504
+ arguments:
1505
+ - set_z_zero (bool, default True): if True, the z values of the returned polyline are all set to zero; if False,
1506
+ they are left at the midpoint z values from the edge coordinate lines
1507
+ - title (str, optional): the citation title for the polyline; if None, one is generated using the grid title
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
+ the model; if False, the create_xml() method is not called fot the polyline
1510
+
1511
+ returns:
1512
+ - closed Polyline representing the frontier of the grid in plan view
1513
+ """
1514
+ coords = self.coordinate_line_end_points()
1515
+ nj = self.nj
1516
+ ni = self.ni
1517
+ frontier = np.zeros((2 * (nj + ni), 3), dtype = float)
1518
+ f_i = 0
1519
+ for i in range(self.ni):
1520
+ c = np.nanmean(coords[0, i], axis = 0)
1521
+ if np.any(np.isnan(c)):
1522
+ continue
1523
+ frontier[f_i] = c
1524
+ f_i += 1
1525
+ for j in range(self.nj):
1526
+ c = np.nanmean(coords[j, ni], axis = 0)
1527
+ if np.any(np.isnan(c)):
1528
+ continue
1529
+ frontier[f_i] = c
1530
+ f_i += 1
1531
+ for i in range(self.ni, 0, -1):
1532
+ c = np.nanmean(coords[nj, i], axis = 0)
1533
+ if np.any(np.isnan(c)):
1534
+ continue
1535
+ frontier[f_i] = c
1536
+ f_i += 1
1537
+ for j in range(self.nj, 0, -1):
1538
+ c = np.nanmean(coords[j, 0], axis = 0)
1539
+ if np.any(np.isnan(c)):
1540
+ continue
1541
+ frontier[f_i] = c
1542
+ f_i += 1
1543
+ assert 4 <= f_i <= 2 * (nj + ni), 'failed to define frontier polygon (NaNs in grid geometry?)'
1544
+ if set_z_zero:
1545
+ frontier[:, 2] = 0.0
1546
+ if not title:
1547
+ title = f'frontier of {self.title}'
1548
+ pl = rql.Polyline(self.model,
1549
+ set_coord = frontier[:f_i],
1550
+ set_crs = self.crs_uuid,
1551
+ is_closed = True,
1552
+ title = title)
1553
+ if add_as_part:
1554
+ pl.create_xml()
1555
+ return pl
1556
+
1496
1557
  def corner_points(self, cell_kji0 = None, points_root = None, cache_resqml_array = True, cache_cp_array = False):
1497
1558
  """Returns a numpy array of corner points for a single cell or the whole grid.
1498
1559
 
@@ -1575,7 +1575,6 @@ def packed_bisector_from_face_indices( # type: ignore
1575
1575
  is_curtain = _packed_shallow_or_curtain_temp_bitwise_count(array, true_count, raw_bisector)
1576
1576
  # todo: switch to numpy bitwise_count when numba supports it and resqpy has dropped older numpy versions
1577
1577
  # is_curtain = _packed_shallow_or_curtain(array, true_count, raw_bisector)
1578
- print(f'**** array shape: {array.shape}; dtype: {array.dtype}')
1579
1578
 
1580
1579
  return array, is_curtain
1581
1580
 
@@ -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,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: resqpy
3
- Version: 4.18.4
3
+ Version: 4.18.6
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=3l-Kxew1egDvWafAvymh-cOYinz6WxZkG5dEkZXBBQk,556
1
+ resqpy/__init__.py,sha256=1V-lAV0_8CC6-e7jwBM6HpCHAUHlHA7wBY9wofSJyjs,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
@@ -31,10 +31,10 @@ resqpy/grid/_cell_properties.py,sha256=pbyAK2eV9n4teOxm2q5hyBinohEbevFPrCfMcpGiq
31
31
  resqpy/grid/_connection_sets.py,sha256=-277bh9pMoeESSzy9oZehL-vc82aMGZuSLQs2KJ4Wfg,10120
32
32
  resqpy/grid/_create_grid_xml.py,sha256=p-jKo1BZ-DlhEYixVzadtY-QsqA8ygcXvMYS_TvQCjg,22837
33
33
  resqpy/grid/_defined_geometry.py,sha256=QYQ3wLbPrlPobgUi9R1izTD4JD9qMGf5eyqbM68Hg-0,32297
34
- resqpy/grid/_extract_functions.py,sha256=n_SmfkvEssX09SrlvUMe7y-4eOuVckhL_M6tFTg1bRg,28203
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=P2-qZwf7P0WpPpbzdo8abJvmuhsHKQxLkfHvAWjZPKE,132215
37
+ resqpy/grid/_grid.py,sha256=vjLZJoHfvlCi8vFY09_1xQEBMRnCR6AbFFs88leKrxA,134892
38
38
  resqpy/grid/_grid_types.py,sha256=vN_mMAEvcQ7HGxDQ8VMJilGXADPfJ_2rgebOJ__2P8E,3572
39
39
  resqpy/grid/_intervals_info.py,sha256=ODjDz22n8U9pSpO0Muj8mJr2hYWauFDzgcVQ0RM3csQ,338
40
40
  resqpy/grid/_moved_functions.py,sha256=XboxA0pE55j-P_x5g051WheVamxkAatQGbU5aq2GkaE,604
@@ -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=sgMvBX8kduq2taAe1RRHpUjn1iCgex1F8cAJVG9hqJY,106856
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=rnq5i34MRnwFFTzjcs_TzL4Y_dVn68Eg6Jh9nvSNx8Y,25245
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.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,,
197
+ resqpy-4.18.6.dist-info/LICENSE,sha256=2duHPIkKQyESMdQ4hKjL8CYEsYRHXaYxt0YQkzsUYE4,1059
198
+ resqpy-4.18.6.dist-info/METADATA,sha256=DgyxAGDisPPuPmbLYeAtAp-SvmsDo2J0nTyk3gzVwX8,4028
199
+ resqpy-4.18.6.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
200
+ resqpy-4.18.6.dist-info/RECORD,,