diff --git a/src/festim/exports/minimum_surface.py b/src/festim/exports/minimum_surface.py index 4f2918789..948af5816 100644 --- a/src/festim/exports/minimum_surface.py +++ b/src/festim/exports/minimum_surface.py @@ -25,6 +25,8 @@ def compute(self): subdomain, and appends it to the data list """ solution = self.field.solution - indices = self.surface.locate_boundary_facet_indices(solution.function_space.mesh) + indices = self.surface.locate_boundary_facet_indices( + solution.function_space.mesh + ) self.value = np.min(self.field.solution.x.array[indices]) self.data.append(self.value)