Source code for festim.exports.minimum_volume
from mpi4py import MPI
import numpy as np
from festim.exports.volume_quantity import VolumeQuantity
[docs]
class MinimumVolume(VolumeQuantity):
"""Computes the minimum value of a field in a given volume
Args:
field (festim.Species): species for which the minimum volume is computed
volume (festim.VolumeSubdomain): volume subdomain
filename (str, optional): name of the file to which the minimum volume is exported
Attributes:
see `festim.VolumeQuantity`
"""
@property
def title(self):
return f"Minimum {self.field.name} volume {self.volume.id}"
[docs]
def compute(self):
"""
Computes the minimum value of solution function within the defined volume
subdomain, and appends it to the data list
"""
solution = self.field.solution
indices = self.volume.locate_subdomain_entities(solution.function_space.mesh)
self.value = solution.function_space.mesh.comm.allreduce(
np.min(self.field.solution.x.array[indices]), op=MPI.MIN
)
self.data.append(self.value)