Source code for adam.parametric.model.parametric_factories.parametric_joint

from typing import Union

import numpy.typing as npt
import urdf_parser_py.urdf

from adam.core.spatial_math import SpatialMath
from adam.model import Joint
from adam.parametric.model.parametric_factories.parametric_link import ParametricLink


[docs] class ParametricJoint(Joint): """Parametric Joint class""" def __init__( self, joint: urdf_parser_py.urdf.Joint, math: SpatialMath, parent_link: ParametricLink, idx: Union[int, None] = None, ) -> None:
[docs] self.math = math
[docs] self.name = joint.name
[docs] self.parent = parent_link.name
[docs] self.parent_parametric = parent_link
[docs] self.child = joint.child
[docs] self.type = joint.joint_type
[docs] self.axis = joint.axis
[docs] self.limit = joint.limit
[docs] self.idx = idx
[docs] self.joint = joint
[docs] joint_offset = self.parent_parametric.compute_joint_offset( joint, self.parent_parametric.link_offset )
[docs] self.offset = joint_offset
[docs] self.origin = self.modify(self.parent_parametric.link_offset)
[docs] def modify(self, parent_joint_offset: npt.ArrayLike): """ Args: parent_joint_offset (npt.ArrayLike): offset of the parent joint Returns: npt.ArrayLike: the origin of the joint, parametric with respect to the parent link dimensions """ length = self.parent_parametric.get_principal_length_parametric() # Ack for avoiding depending on casadi vo = self.parent_parametric.inertial.origin.xyz[2] modified = self.joint.origin if modified.xyz[2] < 0: modified.xyz[2] = -length + parent_joint_offset - self.offset else: modified.xyz[2] = vo + length / 2 - self.offset return modified
[docs] def homogeneous(self, q: npt.ArrayLike) -> npt.ArrayLike: """ Args: q (npt.ArrayLike): joint value Returns: npt.ArrayLike: the homogenous transform of a joint, given q """ o = self.math.factory.zeros(3) o[0] = self.origin.xyz[0] o[1] = self.origin.xyz[1] o[2] = self.origin.xyz[2] rpy = self.origin.rpy if self.type == "fixed": return self.math.H_from_Pos_RPY(o, rpy) elif self.type in ["revolute", "continuous"]: return self.math.H_revolute_joint( o, rpy, self.axis, q, ) elif self.type in ["prismatic"]: return self.math.H_prismatic_joint( o, rpy, self.axis, q, )
[docs] def spatial_transform(self, q: npt.ArrayLike) -> npt.ArrayLike: """ Args: q (npt.ArrayLike): joint motion Returns: npt.ArrayLike: spatial transform of the joint given q """ if self.type == "fixed": return self.math.X_fixed_joint(self.origin.xyz, self.origin.rpy) elif self.type in ["revolute", "continuous"]: return self.math.X_revolute_joint( self.origin.xyz, self.origin.rpy, self.axis, q ) elif self.type in ["prismatic"]: return self.math.X_prismatic_joint( self.origin.xyz, self.origin.rpy, self.axis, q, )
[docs] def motion_subspace(self) -> npt.ArrayLike: """ Args: joint (Joint): Joint Returns: npt.ArrayLike: motion subspace of the joint """ if self.type == "fixed": return self.math.vertcat(0, 0, 0, 0, 0, 0) elif self.type in ["revolute", "continuous"]: return self.math.vertcat( 0, 0, 0, self.axis[0], self.axis[1], self.axis[2], ) elif self.type in ["prismatic"]: return self.math.vertcat( self.axis[0], self.axis[1], self.axis[2], 0, 0, 0, )