5 #ifndef __pinocchio_joint_revolute_unbounded_unaligned_hpp__ 6 #define __pinocchio_joint_revolute_unbounded_unaligned_hpp__ 8 #include "pinocchio/fwd.hpp" 9 #include "pinocchio/spatial/inertia.hpp" 10 #include "pinocchio/math/rotation.hpp" 11 #include "pinocchio/math/matrix.hpp" 13 #include "pinocchio/multibody/joint/joint-revolute-unaligned.hpp" 20 template<
typename _Scalar,
int _Options>
27 typedef _Scalar Scalar;
28 enum { Options = _Options };
30 typedef Eigen::Matrix<Scalar,NQ,1,Options> ConfigVector_t;
31 typedef Eigen::Matrix<Scalar,NV,1,Options> TangentVector_t;
39 typedef Eigen::Matrix<Scalar,6,NV,Options> F_t;
42 typedef Eigen::Matrix<Scalar,6,NV,Options> U_t;
43 typedef Eigen::Matrix<Scalar,NV,NV,Options> D_t;
44 typedef Eigen::Matrix<Scalar,6,NV,Options> UD_t;
46 PINOCCHIO_JOINT_DATA_BASE_ACCESSOR_DEFAULT_RETURN_TYPE
49 template<
typename Scalar,
int Options>
53 template<
typename Scalar,
int Options>
57 template<
typename _Scalar,
int _Options>
59 :
public JointDataBase< JointDataRevoluteUnboundedUnalignedTpl<_Scalar,_Options> >
61 EIGEN_MAKE_ALIGNED_OPERATOR_NEW
63 PINOCCHIO_JOINT_DATA_TYPEDEF_TEMPLATE(JointDerived);
64 PINOCCHIO_JOINT_DATA_BASE_DEFAULT_ACCESSOR
77 : M(Transformation_t::Identity())
78 , S(Constraint_t::Vector3::Zero())
79 , v(Constraint_t::Vector3::Zero(),(Scalar)0)
85 template<
typename Vector3Like>
87 : M(Transformation_t::Identity())
95 static std::string classname() {
return std::string(
"JointDataRevoluteUnboundedUnalignedTpl"); }
96 std::string
shortname()
const {
return classname(); }
102 template<
typename _Scalar,
int _Options>
104 :
public JointModelBase< JointModelRevoluteUnboundedUnalignedTpl<_Scalar,_Options> >
106 EIGEN_MAKE_ALIGNED_OPERATOR_NEW
108 PINOCCHIO_JOINT_TYPEDEF_TEMPLATE(JointDerived);
109 typedef Eigen::Matrix<Scalar,3,1,Options> Vector3;
115 using Base::setIndexes;
125 assert(
isUnitary(axis) &&
"Rotation axis is not unitary");
128 template<
typename Vector3Like>
132 EIGEN_STATIC_ASSERT_VECTOR_ONLY(Vector3Like);
133 assert(
isUnitary(axis) &&
"Rotation axis is not unitary");
136 JointDataDerived
createData()
const {
return JointDataDerived(axis); }
141 return Base::isEqual(other) && axis == other.
axis;
144 template<
typename ConfigVector>
145 void calc(JointDataDerived & data,
146 const typename Eigen::MatrixBase<ConfigVector> & qs)
const 148 typedef typename ConfigVector::Scalar OtherScalar;
149 typename ConfigVector::template ConstFixedSegmentReturnType<NQ>::Type
150 & q = qs.template segment<NQ>(
idx_q());
152 const OtherScalar & ca = q(0);
153 const OtherScalar & sa = q(1);
158 template<
typename ConfigVector,
typename TangentVector>
159 void calc(JointDataDerived & data,
160 const typename Eigen::MatrixBase<ConfigVector> & qs,
161 const typename Eigen::MatrixBase<TangentVector> & vs)
const 163 calc(data,qs.derived());
164 data.v.angularRate() =
static_cast<Scalar
>(vs[
idx_v()]);
167 template<
typename Matrix6Like>
168 void calc_aba(JointDataDerived & data,
169 const Eigen::MatrixBase<Matrix6Like> & I,
170 const bool update_I)
const 172 data.U.noalias() = I.template middleCols<3>(Motion::ANGULAR) * axis;
173 data.Dinv[0] = (Scalar)(1)/axis.dot(data.U.template segment<3>(Motion::ANGULAR));
174 data.UDinv.noalias() = data.U * data.Dinv;
177 PINOCCHIO_EIGEN_CONST_CAST(Matrix6Like,I) -= data.UDinv * data.U.transpose();
180 static std::string classname() {
return std::string(
"JointModelRevoluteUnboundedUnaligned"); }
181 std::string
shortname()
const {
return classname(); }
184 template<
typename NewScalar>
188 ReturnType res(axis.template cast<NewScalar>());
202 #include <boost/type_traits.hpp> 206 template<
typename Scalar,
int Options>
208 :
public integral_constant<bool,true> {};
210 template<
typename Scalar,
int Options>
212 :
public integral_constant<bool,true> {};
214 template<
typename Scalar,
int Options>
216 :
public integral_constant<bool,true> {};
218 template<
typename Scalar,
int Options>
220 :
public integral_constant<bool,true> {};
224 #endif // ifndef __pinocchio_joint_revolute_unbounded_unaligned_hpp__
int idx_q(const JointModelTpl< Scalar, Options, JointCollectionTpl > &jmodel)
Visit a JointModelTpl through JointIdxQVisitor to get the index in the full model configuration space...
int idx_v(const JointModelTpl< Scalar, Options, JointCollectionTpl > &jmodel)
Visit a JointModelTpl through JointIdxVVisitor to get the index in the full model tangent space corre...
JointDataTpl< Scalar, Options, JointCollectionTpl > createData(const JointModelTpl< Scalar, Options, JointCollectionTpl > &jmodel)
Visit a JointModelTpl through CreateData visitor to create a JointDataTpl.
bool isUnitary(const Eigen::MatrixBase< MatrixLike > &mat, const typename MatrixLike::RealScalar &prec=Eigen::NumTraits< typename MatrixLike::Scalar >::dummy_precision())
Check whether the input matrix is Unitary within the given precision.
JointModelRevoluteUnboundedUnalignedTpl< NewScalar, Options > cast() const
std::string shortname(const JointModelTpl< Scalar, Options, JointCollectionTpl > &jmodel)
Visit a JointModelTpl through JointShortnameVisitor to get the shortname of the derived joint model...
Main pinocchio namespace.
Common traits structure to fully define base classes for CRTP.
void toRotationMatrix(const Eigen::MatrixBase< Vector3 > &axis, const Scalar &cos_value, const Scalar &sin_value, const Eigen::MatrixBase< Matrix3 > &res)
Computes a rotation matrix from a vector and values of sin and cos orientations values.
void calc_aba(const JointModelTpl< Scalar, Options, JointCollectionTpl > &jmodel, JointDataTpl< Scalar, Options, JointCollectionTpl > &jdata, const Eigen::MatrixBase< Matrix6Type > &I, const bool update_I)
Visit a JointModelTpl and the corresponding JointDataTpl through JointCalcAbaVisitor to...
Vector3 axis
3d main axis of the joint.