Source code for capytaine.bodies.bodies

"""Floating bodies to be used in radiation-diffraction problems."""
# Copyright (C) 2017-2024 Matthieu Ancellin
# See LICENSE file at <https://github.com/capytaine/capytaine>
from __future__ import annotations

import logging
import copy
from functools import lru_cache
from typing import Literal

import numpy as np
import xarray as xr

from capytaine.meshes.abstract_meshes import AbstractMesh
from capytaine.meshes.meshes import Mesh
from capytaine.meshes.geometry import connected_components, connected_components_of_waterline
from capytaine.bodies.dofs import (
        AbstractDof,
        TranslationDof,
        RotationDof,
        DofOnSubmesh,
        normalize_name,
        rigid_body_dofs,
        add_dofs_labels_to_vector,
        add_dofs_labels_to_matrix
        )
from capytaine.bodies.hydrostatics import _HydrostaticsMixin

LOG = logging.getLogger(__name__)


[docs] class FloatingBody(_HydrostaticsMixin): """A floating body described as a mesh and some degrees of freedom. The mesh structure is stored as a Mesh from capytaine.mesh.mesh or a CollectionOfMeshes from capytaine.mesh.meshes_collection. The degrees of freedom (dofs) are stored as a dict associating a name to a complex-valued array of shape (nb_faces, 3). To each face of the body (as indexed in the mesh) corresponds a complex-valued 3d vector, which defines the displacement of the center of the face in frequency domain. Parameters ---------- mesh : AbstractMesh, optional the mesh describing the geometry of the hull of the floating body. If none is given, a empty one is created. dofs : dict, optional the degrees of freedom of the body. If none is given, a empty dictionary is initialized. lid_mesh : AbstractMesh or None, optional a mesh of an internal lid for irregular frequencies removal. Unlike the mesh of the hull, no dof is defined on the lid_mesh. If none is given, none is used when solving the Boundary Integral Equation. center_of_mass: 3-element array, optional the position of the center of mass. Required only for some hydrostatics computation. mass : float or None, optional the mass of the body in kilograms. Required only for some hydrostatics computation. If None, the mass is implicitly assumed to be the mass of displaced water. name : str, optional a name for the body. If none is given, the one of the mesh is used. Attributes ---------- mesh_including_lid: AbstractMesh The hull mesh joined with the lid mesh hull_mask: np.array The indices of the faces in mesh_including_lid that are part of the hull """ def __init__(self, mesh=None, dofs=None, *, lid_mesh=None, center_of_mass=None, mass=None, name=None): if mesh is None: self.mesh = Mesh(name="dummy_mesh") elif isinstance(mesh, AbstractMesh): self.mesh = mesh else: raise TypeError("Unrecognized `mesh` object passed to the FloatingBody constructor.") if lid_mesh is None: self.lid_mesh = None elif isinstance(mesh, AbstractMesh): if lid_mesh.nb_faces == 0: LOG.warning("Lid mesh %s provided for body initialization is empty. The lid mesh is ignored.", lid_mesh) self.lid_mesh = None else: self.lid_mesh = lid_mesh.with_normal_vector_going_down(inplace=False) else: raise TypeError("Unrecognized `lid_mesh` object passed to the FloatingBody constructor.") if self.lid_mesh is None: self.mesh_including_lid = self.mesh self.hull_mask = np.full((self.mesh.nb_faces,), True) else: self.mesh_including_lid, masks = self.mesh.join_meshes(self.lid_mesh, return_masks=True) self.hull_mask = masks[0] if name is None and mesh is None: self.name = "dummy_body" elif name is None: if hasattr(self.mesh, "name") and self.mesh.name is not None: self.name = self.mesh.name else: self.name = "anonymous_body" else: self.name = name self.mass = mass if center_of_mass is not None: self.center_of_mass = np.asarray(center_of_mass, dtype=float) else: self.center_of_mass = None if dofs is None: self.dofs = {} else: self.dofs = { k: v if isinstance(v, AbstractDof) else np.asarray(v) for k, v in dofs.items() } self._check_dofs_shape_consistency() LOG.debug(f"New floating body: {self.__str__()}.")
[docs] @staticmethod def from_meshio(mesh, name=None) -> 'FloatingBody': """Create a FloatingBody from a meshio mesh object. Kinda deprecated, use cpt.load_mesh instead.""" LOG.warning("Deprecation warning: The method FloatingBody.from_meshio(...) is deprecated. " "Please prefer FloatingBody(mesh=cpt.load_mesh(...), ...)") from capytaine.io.meshio import load_from_meshio return FloatingBody(mesh=load_from_meshio(mesh, name), name=name)
[docs] @staticmethod def from_file(filename: str, file_format=None, name=None) -> 'FloatingBody': """Create a FloatingBody from a mesh file using meshmagick. Kinda deprecated, use cpt.load_mesh instead.""" LOG.warning("Deprecation warning: The method FloatingBody.from_file(...) is deprecated. " "Please prefer FloatingBody(mesh=cpt.load_mesh(...), ...)") from capytaine.io.mesh_loaders import load_mesh if name is None: name = filename mesh = load_mesh(filename, file_format, name=f"{name}_mesh") return FloatingBody(mesh, name=name)
def __lt__(self, other: 'FloatingBody') -> bool: """Arbitrary order. The point is to sort together the problems involving the same body.""" return self.name < other.name ########## # Dofs # ########## @property def nb_dofs(self) -> int: """Number of degrees of freedom.""" return len(self.dofs)
[docs] def add_translation_dof(self, direction=None, name=None) -> None: """Add a new translation dof (in place). If no direction is given, the code tries to infer it from the name. Parameters ---------- direction : array of shape (3,), optional the direction of the translation name : str, optional a name for the degree of freedom """ if name is None: name = f"dof_{self.nb_dofs}_translation" if direction is None and normalize_name(name) in {"Surge", "Sway", "Heave"}: self.dofs[name] = rigid_body_dofs()[normalize_name(name)] else: self.dofs[name] = TranslationDof( direction=direction, )
[docs] def add_rotation_dof(self, rotation_center=None, direction=None, name=None) -> None: """Add a new rotation dof (in place). If no axis is given, the code tries to infer it from the name. Parameters ---------- rotation_center: array of shape (3,), optional One point on the rotation axis direction: array of shape (3,), optional The direction of the rotation axis name : str, optional a name for the degree of freedom """ if name is None: name = f"dof_{self.nb_dofs}_rotation" if rotation_center is None: for point_attr in ('rotation_center', 'center_of_mass'): if hasattr(self, point_attr) and getattr(self, point_attr) is not None: rotation_center = getattr(self, point_attr) LOG.info(f"The rotation dof {name} has been initialized around the point: " f"{self.__short_str__()}.{point_attr} = {getattr(self, point_attr)}") break if direction is None and normalize_name(name) in {"Roll", "Pitch", "Yaw"}: self.dofs[name] = rigid_body_dofs(rotation_center=rotation_center)[normalize_name(name)] else: self.dofs[name] = RotationDof( rotation_center=rotation_center, direction=direction, )
[docs] def add_all_rigid_body_dofs(self, rotation_center=None) -> None: """Add the six degrees of freedom of rigid bodies (in place).""" self.add_translation_dof(name="Surge") self.add_translation_dof(name="Sway") self.add_translation_dof(name="Heave") self.add_rotation_dof(rotation_center=rotation_center, name="Roll") self.add_rotation_dof(rotation_center=rotation_center, name="Pitch") self.add_rotation_dof(rotation_center=rotation_center, name="Yaw")
[docs] def integrate_pressure(self, pressure): forces = {} for dof_name in self.dofs: if isinstance(self.dofs[dof_name], AbstractDof): dof = self.dofs[dof_name].evaluate_motion(self.mesh) else: dof = self.dofs[dof_name] # Scalar product on each face: normal_dof_amplitude_on_face = - np.sum(dof * self.mesh.faces_normals, axis=1) # The minus sign in the above line is because we want the force of the fluid on the body and not the force of the body on the fluid. # Sum over all faces: forces[dof_name] = np.sum(pressure * normal_dof_amplitude_on_face * self.mesh.faces_areas) return forces
[docs] def keep_only_dofs(self, *args, **kwargs): raise NotImplementedError("`keep_only_dofs` has been removed. Consider using `body = body.with_only_dofs(['dof_name'])` instead.")
[docs] def with_only_dofs(self, dofs): body = FloatingBody(mesh=self.mesh, lid_mesh=self.lid_mesh, dofs={k: v for k, v in self.dofs.items() if k in dofs}, mass=self.mass, center_of_mass=self.center_of_mass, name=self.name) if hasattr(self, 'inertia_matrix'): body.inertia_matrix = self.inertia_matrix.sel(radiating_dof=dofs, influenced_dof=dofs) if hasattr(self, 'hydrostatic_stiffness'): body.hydrostatic_stiffness = self.hydrostatic_stiffness.sel(radiating_dof=dofs, influenced_dof=dofs) return body
[docs] def add_dofs_labels_to_vector(self, vector): """Helper function turning a bare vector into a vector labelled by the name of the dofs of the body, to be used for instance for the computation of RAO.""" return add_dofs_labels_to_vector(self.dofs.keys(), vector)
[docs] def add_dofs_labels_to_matrix(self, matrix): """Helper function turning a bare matrix into a matrix labelled by the name of the dofs of the body, to be used for instance for the computation of RAO.""" return add_dofs_labels_to_matrix(self.dofs.keys(), matrix)
def _check_dofs_shape_consistency(self): for dof_name, dof in self.dofs.items(): if (not isinstance(dof, AbstractDof) and (np.array(dof).shape != (self.mesh.nb_faces, 3))): raise ValueError(f"The array defining the dof {dof_name} of {self.__short_str__()} does not have the expected shape.\n" f"Expected shape: ({self.mesh.nb_faces}, 3)\n" f" Actual shape: {dof.shape}") ################### # Transformations # ################### def __add__(self, body_to_add: 'FloatingBody'): return self.join_bodies(body_to_add)
[docs] def join_bodies(*bodies, name=None): from capytaine.bodies.multibodies import Multibody return Multibody(bodies, name=name)
[docs] def copy(self, name=None) -> 'FloatingBody': """Return a deep copy of the body. Parameters ---------- name : str, optional a name for the new copy """ self._check_dofs_shape_consistency() new_body = copy.deepcopy(self) if name is None: new_body.name = f"copy_of_{self.name}" LOG.debug(f"Copy {self.name}.") else: new_body.name = name LOG.debug(f"Copy {self.name} under the name {name}.") return new_body
[docs] def assemble_regular_array(self, distance, nb_bodies): """Create an regular array of identical bodies. Parameters ---------- distance : float Center-to-center distance between objects in the array nb_bodies : couple of ints Number of objects in the x and y directions. Returns ------- FloatingBody """ bodies = (self.translated((i*distance, j*distance, 0), name=f"{i}_{j}") for j in range(nb_bodies[1]) for i in range(nb_bodies[0])) array = FloatingBody.join_bodies(*bodies) array.name = f"array_of_{self.name}" return array
[docs] def assemble_arbitrary_array(self, locations:np.ndarray): if not isinstance(locations, np.ndarray): raise TypeError('locations must be of type np.ndarray') assert locations.shape[1] == 2, 'locations must be of shape nx2, received {:}'.format(locations.shape) fb_list = [] for idx, li in enumerate(locations): fb_list.append(self.translated(np.append(li, 0), name='arbitrary_array_body{:02d}'.format(idx))) arbitrary_array = FloatingBody.join_bodies(*fb_list) return arbitrary_array
[docs] def mirrored(self, plane: Literal['xOz', 'yOz']) -> "FloatingBody": if plane == "xOz": mirrored_coord = 1 elif plane == "yOz": mirrored_coord = 0 else: raise ValueError(f"Unsupported value for plane: {plane}") def mirror(p): if isinstance(p, TranslationDof): return TranslationDof( direction=mirror(p.direction), ) if isinstance(p, RotationDof): return RotationDof( rotation_center=mirror(p.rotation_center), direction=mirror(p.direction), ) elif isinstance(p, np.ndarray): mirrored_p = p.copy() mirrored_p[..., mirrored_coord] *= -1 return p mirrored_dofs = {k: mirror(v) for k,v in self.dofs.items()} mirrored_self = FloatingBody( mesh=self.mesh.mirrored(plane), lid_mesh=self.lid_mesh.mirrored(plane) if self.lid_mesh is not None else None, dofs=mirrored_dofs, center_of_mass=mirror(self.center_of_mass) if self.center_of_mass is not None else None, mass=self.mass, ) if hasattr(self, 'rotation_center'): mirrored_self.rotation_center = mirror(self.rotation_center) return mirrored_self
[docs] def translated(self, shift, *, name=None) -> "FloatingBody": shift = np.asarray(shift) def translate_dof(d): if isinstance(d, RotationDof): return RotationDof( rotation_center=d.rotation_center + shift, direction=d.direction, ) else: return d translated_self = FloatingBody( mesh=self.mesh.translated(shift), lid_mesh=self.lid_mesh.translated(shift) if self.lid_mesh is not None else None, dofs={k: translate_dof(v) for k, v in self.dofs.items()}, center_of_mass=self.center_of_mass + shift if self.center_of_mass is not None else None, mass=self.mass, name=name ) if hasattr(self, 'rotation_center'): translated_self.rotation_center = self.rotation_center + shift return translated_self
[docs] def translated_x(self, dx: float, *, name=None) -> "FloatingBody": return self.translated([dx, 0.0, 0.0], name=name)
[docs] def translated_y(self, dy: float, *, name=None) -> "FloatingBody": return self.translated([0.0, dy, 0.0], name=name)
[docs] def translated_z(self, dz: float, *, name=None) -> "FloatingBody": return self.translated([0.0, 0.0, dz], name=name)
[docs] def rotated_with_matrix(self, R, *, name=None) -> "FloatingBody": def rotate_dof(d): if isinstance(d, TranslationDof): return TranslationDof( direction=d.direction @ R.T, ) elif isinstance(d, RotationDof): return RotationDof( rotation_center=d.rotation_center @ R.T, direction=d.direction @ R.T, ) else: return d rotated_self = FloatingBody( mesh=self.mesh.rotated_with_matrix(R), lid_mesh=self.lid_mesh.rotated_with_matrix(R) if self.lid_mesh is not None else None, dofs={k: rotate_dof(v) for k, v in self.dofs.items()}, center_of_mass=self.center_of_mass @ R.T if self.center_of_mass is not None else None, mass=self.mass, name=name ) if hasattr(self, 'rotation_center'): rotated_self.rotation_center = self.rotation_center @ R.T return rotated_self
[docs] def rotated_x(self, angle: float, *, name=None) -> "FloatingBody": c, s = np.cos(angle), np.sin(angle) R = np.array([[1, 0, 0], [0, c, -s], [0, s, c]]) return self.rotated_with_matrix(R, name=name)
[docs] def rotated_y(self, angle: float, *, name=None) -> "FloatingBody": c, s = np.cos(angle), np.sin(angle) R = np.array([[c, 0, s], [0, 1, 0], [-s, 0, c]]) return self.rotated_with_matrix(R, name=name)
[docs] def rotated_z(self, angle: float, *, name=None) -> "FloatingBody": c, s = np.cos(angle), np.sin(angle) R = np.array([[c, -s, 0], [s, c, 0], [0, 0, 1]]) return self.rotated_with_matrix(R, name=name)
def _apply_on_mesh(self, func, args, kwargs): mesh_with_ids = self.mesh.with_metadata(origin_panel=np.arange(self.mesh.nb_faces)) transformed_mesh = func(mesh_with_ids, *args, **kwargs) transformed_mesh, faces_ids = transformed_mesh.pop_metadata("origin_panel") if self.lid_mesh is not None: transformed_lid_mesh = func(self.lid_mesh, *args, **kwargs) if transformed_lid_mesh.nb_faces == 0: LOG.warning("Empty lid mesh %s has been removed.", self.lid_mesh) transformed_lid_mesh = None else: transformed_lid_mesh = None new_dofs = {} for name, dof in self.dofs.items(): if isinstance(dof, DofOnSubmesh): former_mask = np.zeros(self.mesh.nb_faces, dtype=bool) former_mask[dof.faces] = True new_mask = former_mask[faces_ids] new_dofs[name] = DofOnSubmesh(dof.dof, np.where(new_mask)[0]) elif isinstance(dof, AbstractDof): new_dofs[name] = dof else: # dof is an array or array-like new_dofs[name] = np.asarray(dof)[faces_ids] return transformed_mesh, transformed_lid_mesh, new_dofs
[docs] def clipped(self, *, origin, normal, name=None) -> "FloatingBody": clipped_mesh, clipped_lid_mesh, updated_dofs = self._apply_on_mesh( self.mesh.__class__.clipped, (), {'origin': origin, 'normal': normal} ) if name is None: name = self.name return FloatingBody( mesh=clipped_mesh, lid_mesh=clipped_lid_mesh, dofs=updated_dofs, name=name )
[docs] def immersed_part(self, free_surface=0.0, *, sea_bottom=None, water_depth=None, name=None) -> "FloatingBody": clipped_mesh, clipped_lid_mesh, updated_dofs = self._apply_on_mesh( self.mesh.__class__.immersed_part, (free_surface,), {'sea_bottom': sea_bottom, 'water_depth': water_depth} ) if name is None: name = self.name return FloatingBody( mesh=clipped_mesh, lid_mesh=clipped_lid_mesh, dofs=updated_dofs, center_of_mass=self.center_of_mass, mass=self.mass, name=name )
############# # Display # ############# def __short_str__(self): return (f"{self.__class__.__name__}(..., name=\"{self.name}\")") def _optional_params_str(self): items = [] if self.mass is not None: items.append(f"mass={self.mass}, ") if self.center_of_mass is not None: items.append(f"center_of_mass={self.center_of_mass}, ") return ''.join(items) def __str__(self): short_dofs = '{' + ', '.join('"{}": ...'.format(d) for d in self.dofs) + '}' if self.lid_mesh is not None: lid_mesh_str = self.lid_mesh.__short_str__() else: lid_mesh_str = str(None) return (f"{self.__class__.__name__}(mesh={self.mesh.__short_str__()}, lid_mesh={lid_mesh_str}, " f"dofs={short_dofs}, {self._optional_params_str()}name=\"{self.name}\")") def __repr__(self): short_dofs = '{' + ', '.join('"{}": ...'.format(d) for d in self.dofs) + '}' if self.lid_mesh is not None: lid_mesh_str = str(self.lid_mesh) else: lid_mesh_str = str(None) return (f"{self.__class__.__name__}(mesh={str(self.mesh)}, lid_mesh={lid_mesh_str}, " f"dofs={short_dofs}, {self._optional_params_str()}name=\"{self.name}\")") def _repr_pretty_(self, p, cycle): p.text(self.__str__()) def __rich_repr__(self): class DofWithShortRepr: def __repr__(self): return '...' yield "mesh", self.mesh yield "lid_mesh", self.lid_mesh yield "dofs", {d: DofWithShortRepr() for d in self.dofs} if self.mass is not None: yield "mass", self.mass, None if self.center_of_mass is not None: yield "center_of_mass", tuple(self.center_of_mass) yield "name", self.name
[docs] def show(self, *args, **kwargs): return self.mesh.show(*args, **kwargs)
[docs] def show_pyvista(self, *args, **kwargs): return self.mesh.show_pyvista(*args, **kwargs)
[docs] def show_matplotlib(self, *args, **kwargs): return self.mesh.show_matplotlib(*args, **kwargs)
[docs] def animate(self, motion, *args, **kwargs): """Display a motion as a 3D animation. Parameters ========== motion: dict or pd.Series or str A dict or series mapping the name of the dofs to its amplitude. If a single string is passed, it is assumed to be the name of a dof and this dof with a unit amplitude will be displayed. """ from capytaine.ui.vtk.animation import Animation if isinstance(motion, str): motion = {motion: 1.0} elif isinstance(motion, xr.DataArray): motion = {k: motion.sel(radiating_dof=k).data for k in motion.coords["radiating_dof"].data} if any(dof not in self.dofs for dof in motion): missing_dofs = set(motion.keys()) - set(self.dofs.keys()) raise ValueError(f"Trying to animate the body {self.name} using dof(s) {missing_dofs}, but no dof of this name is defined for {self.name}.") animation = Animation(*args, **kwargs) animation._add_actor(self.mesh.merged(), faces_motion=sum(motion[dof_name] * dof for dof_name, dof in self.dofs.items() if dof_name in motion)) return animation
################################# # Irregular frequencies removal # ################################# @property def minimal_computable_wavelength(self): """For accuracy of the resolution, wavelength should not be smaller than this value.""" if self.lid_mesh is not None: return max(8*self.mesh.faces_radiuses.max(), 8*self.lid_mesh.faces_radiuses.max()) else: return 8*self.mesh.faces_radiuses.max()
[docs] @lru_cache def first_irregular_frequency_estimate(self, *, g=9.81): r"""Estimates the angular frequency of the lowest irregular frequency. This is based on the formula for the lowest irregular frequency of a parallelepiped of size :math:`L \times B` and draft :math:`H`: .. math:: \omega = \sqrt{ \frac{\pi g \sqrt{\frac{1}{B^2} + \frac{1}{L^2}}} {\tanh\left(\pi H \sqrt{\frac{1}{B^2} + \frac{1}{L^2}} \right)} } The formula is applied to all shapes to get an estimate that is usually conservative. The definition of a lid (supposed to be fully covering and horizontal) is taken into account. """ if self.lid_mesh is None: draft = abs(self.mesh.vertices[:, 2].min()) else: draft = abs(self.lid_mesh.vertices[:, 2].min()) if draft < 1e-6: return np.inf # Look for the x and y span of each components (e.g. for multibody) and # keep the one causing the lowest irregular frequency. # The draft is supposed to be same for all components. omega = np.inf for comp in connected_components(self.mesh): for ccomp in connected_components_of_waterline(comp): x_span = ccomp.vertices[:, 0].max() - ccomp.vertices[:, 0].min() y_span = ccomp.vertices[:, 1].max() - ccomp.vertices[:, 1].min() p = np.hypot(1/x_span, 1/y_span) omega_comp = np.sqrt(np.pi*g*p/(np.tanh(np.pi*draft*p))) omega = min(omega, omega_comp) return omega