Source code for gmso.core.angle

"""Support for 3-partner connections between gmso.core.Atoms."""

from typing import Callable, ClassVar, Optional, Tuple

from pydantic import ConfigDict, Field, model_validator

from gmso.abc.abstract_connection import Connection
from gmso.core.angle_type import AngleType
from gmso.core.atom import Atom
from gmso.core.bond import Bond


[docs] class Angle(Connection): """A 3-partner connection between Atoms. This is a subclass of the gmso.Connection superclass. This class has strictly 3 members in its connection members. The connection_type in this class corresponds to gmso.AngleType. Notes ----- Inherits some methods from Connection: __eq__, __repr__, _validate methods Additional _validate methods are presented. self.connectivity is the associated indices that defines the way connection_members are bonded to match self.bonds. """ __members_creator__: ClassVar[Callable] = Atom.model_validate connectivity: ClassVar[Tuple[Tuple[int]]] = ((0, 1), (1, 2)) connection_members_: Tuple[Atom, Atom, Atom] = Field( ..., description="The 3 atoms involved in the angle.", alias="connection_members", ) bonds_: Tuple[Bond, Bond] = Field( default=None, description=""" List of connection bonds. Ordered to align with connection_members, such that self.bonds_[0] is the bond between (self.connection_members[0], self.connection_members[1]). """, alias="bonds", ) angle_type_: Optional[AngleType] = Field( default=None, description="AngleType of this angle.", alias="angle_type", ) restraint_: Optional[dict] = Field( default=None, description=""" Restraint for this angle, must be a dict with the following keys: 'k' (unit of energy/mol), 'theta_eq' (unit of angle), 'n' (multiplicity, unitless). Refer to https://manual.gromacs.org/current/reference-manual/topologies/topology-file-formats.html for more information. """, alias="restraint", ) model_config = ConfigDict( alias_to_fields=dict( **Connection.model_config["alias_to_fields"], **{ "angle_type": "angle_type_", "restraint": "restraint_", }, ) ) @property def angle_type(self): """Return the angle type if the angle is parametrized.""" return self.__dict__.get("angle_type_") @property def connection_type(self): """Return the angle type if the angle is parametrized.""" return self.__dict__.get("angle_type_") @property def restraint(self): """Return the restraint of this angle.""" return self.__dict__.get("restraint_") @property def bonds(self): """Return a tuple of gmso.core.Bond objects that correspond to this angle.""" return self.__dict__.get("bonds_") @property def bonds_orders(self): """Return the bond_order strings of this angle.""" return "".join([str(b.bond_order) for b in self.bonds])
[docs] def equivalent_members(self): """Return a set of the equivalent connection member tuples. Returns ------- frozenset A unique set of tuples of equivalent connection members Notes ----- For an angle: i, j, k == k, j, i where i, j and k are the connection members. """ return frozenset( [self.connection_members, tuple(reversed(self.connection_members))] )
def __setattr__(self, key, value): """Set the attributes of the angle.""" if key == "connection_type": super(Angle, self).__setattr__("angle_type", value) else: super(Angle, self).__setattr__(key, value)
[docs] @model_validator(mode="before") @classmethod def set_dependent_value_default(cls, data): """Automatically set bonds for this angle if connection_members is defined.""" if "bonds" not in data and "connection_members" in data: atoms = data["connection_members"] data["bonds"] = ( Bond(connection_members=(atoms[0], atoms[1])), Bond(connection_members=(atoms[1], atoms[2])), ) return data