We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7efee14 commit 625f691Copy full SHA for 625f691
1 file changed
simpeg/maps.py
@@ -6238,7 +6238,7 @@ def projection(self):
6238
Set the projection matrix with partial volumes
6239
"""
6240
if getattr(self, "_projection", None) is None:
6241
- in_local = self.local_mesh._get_containing_cell_indexes(
+ in_local = self.local_mesh.get_containing_cells(
6242
self.global_mesh.cell_centers
6243
)
6244
@@ -6257,7 +6257,7 @@ def projection(self):
6257
6258
if self.enforce_active:
6259
self.local_active[
6260
- self.local_mesh._get_containing_cell_indexes(
+ self.local_mesh.get_containing_cells(
6261
self.global_mesh.cell_centers[~self.global_active, :]
6262
6263
] = False
0 commit comments