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, Limits, Pose
import math
[docs]
class StdJoint(Joint):
"""Standard Joint class"""
def __init__(
self,
joint: urdf_parser_py.urdf.Joint,
math: SpatialMath,
idx: Union[int, None] = None,
) -> None:
[docs]
self.parent = joint.parent
[docs]
self.child = joint.child
[docs]
self.type = joint.joint_type
[docs]
self.axis = self._set_axis(joint.axis)
[docs]
self.origin = self._set_origin(joint.origin)
[docs]
self.limit = self._set_limits(joint.limit)
[docs]
def _set_axis(self, axis: npt.ArrayLike) -> npt.ArrayLike:
"""
Args:
axis (npt.ArrayLike): axis
Returns:
npt.ArrayLike: set the axis
"""
return None if axis is None else self.math.asarray(axis)
[docs]
def _set_origin(self, origin: Pose) -> Pose:
"""
Args:
origin (Pose): origin
Returns:
Pose: set the origin
"""
return Pose.build(xyz=origin.xyz, rpy=origin.rpy, math=self.math)
[docs]
def _set_limits(self, limit: Limits) -> Limits:
"""
Args:
limit (Limits): limit
Returns:
Limits: set the limits
"""
joint_lim = math.inf if self.type == "prismatic" else 2 * math.pi
return Limits(
lower=-joint_lim if limit is None else limit.lower,
upper=joint_lim if limit is None else limit.upper,
effort=math.inf if limit is None else limit.effort,
velocity=math.inf if limit is None else limit.velocity,
)
[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
"""
if self.type == "fixed":
xyz = self.origin.xyz
rpy = self.origin.rpy
return self.math.H_from_Pos_RPY(xyz, rpy)
elif self.type in ["revolute", "continuous"]:
return self.math.H_revolute_joint(
self.origin.xyz,
self.origin.rpy,
self.axis,
q,
)
elif self.type in ["prismatic"]:
return self.math.H_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.zeros(6, 1)
elif self.type in ["revolute", "continuous"]:
axis = self.axis
z = self.math.zeros(1)
return self.math.vertcat(z, z, z, axis[0], axis[1], axis[2])
elif self.type in ["prismatic"]:
axis = self.axis
zero = self.math.zeros(
3,
)
return self.math.vertcat(axis[0], axis[1], axis[2], zero, zero, zero)