Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
[BUG/CLN] Making sure that computing only custom grids works fine
  • Loading branch information
Leguark committed Jun 12, 2025
commit e56a388cc8ac01951725e6adfaffd97bef947441
8 changes: 0 additions & 8 deletions gempy/core/data/geo_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,14 +101,6 @@ def solutions(self, value: Solutions):

self._solutions = value

# * Set solutions per group
if self._solutions.raw_arrays is not None:
for e, group in enumerate(self.structural_frame.structural_groups):
group.kriging_solution = RawArraysSolution( # ? Maybe I need to add more fields, but I am not sure yet
scalar_field_matrix=self._solutions.raw_arrays.scalar_field_matrix[e],
block_matrix=self._solutions.raw_arrays.block_matrix[e],
)

# * Set solutions per element
for e, element in enumerate(self.structural_frame.structural_elements[:-1]): # * Ignore basement
element.scalar_field_at_interface = value.scalar_field_at_surface_points[e]
Expand Down