Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
pinocchio
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Stack Of Tasks
pinocchio
Commits
dc6f742b
Commit
dc6f742b
authored
10 years ago
by
Nicolas Mansard
Committed by
Valenza Florian
10 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Specialization of RX working.
parent
8e788f93
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
CMakeLists.txt
+3
-0
3 additions, 0 deletions
CMakeLists.txt
src/multibody/joint.hpp
+66
-7
66 additions, 7 deletions
src/multibody/joint.hpp
src/spatial/motion.hpp
+3
-1
3 additions, 1 deletion
src/spatial/motion.hpp
with
72 additions
and
8 deletions
CMakeLists.txt
+
3
−
0
View file @
dc6f742b
...
...
@@ -72,6 +72,9 @@ PKG_CONFIG_USE_DEPENDENCY(tspatial eigenpy)
ADD_EXECUTABLE
(
rnea EXCLUDE_FROM_ALL unittest/rnea.cpp
)
PKG_CONFIG_USE_DEPENDENCY
(
rnea eigenpy
)
ADD_EXECUTABLE
(
dg EXCLUDE_FROM_ALL unittest/dg.cpp
)
PKG_CONFIG_USE_DEPENDENCY
(
dg eigenpy
)
ADD_EXECUTABLE
(
variant EXCLUDE_FROM_ALL unittest/variant.cpp
)
PKG_CONFIG_USE_DEPENDENCY
(
variant eigenpy
)
...
...
This diff is collapsed.
Click to expand it.
src/multibody/joint.hpp
+
66
−
7
View file @
dc6f742b
...
...
@@ -13,6 +13,18 @@ namespace se3
{
template
<
class
C
>
struct
traits
{};
/*
* *** FORWARD ***
* J::calc()
* SE3 = SE3 * J::SE3
* Motion = J::Motion
* Motion = J::Constraint*J::JointMotion + J::Bias + Motion^J::Motion
* Force = Inertia*Motion + Inertia.vxiv(Motion)
*
* *** BACKWARD ***
* J::JointForce = J::Constraint::Transpose*J::Force
*/
#define SE3_JOINT_TYPEDEF \
typedef typename traits<Joint>::JointData JointData; \
typedef typename traits<Joint>::JointModel JointModel; \
...
...
@@ -86,6 +98,49 @@ namespace se3
struct
BiasZero
{};
friend
const
Motion
&
operator
+
(
const
Motion
&
v
,
const
BiasZero
&
)
{
return
v
;
}
friend
const
Motion
&
operator
+
(
const
BiasZero
&
,
const
Motion
&
v
)
{
return
v
;
}
struct
MotionRX
{
MotionRX
()
:
wx
(
NAN
)
{}
MotionRX
(
const
double
&
wx
)
:
wx
(
wx
)
{}
double
wx
;
operator
Motion
()
const
{
return
Motion
(
Motion
::
Vector3
::
Zero
(),
Motion
::
Vector3
(
wx
,
0
,
0
));
}
};
// struct MotionRX
friend
const
MotionRX
&
operator
+
(
const
MotionRX
&
m
,
const
BiasZero
&
)
{
return
m
;
}
friend
Motion
operator
+
(
const
MotionRX
&
m1
,
const
Motion
&
m2
)
{
return
Motion
(
m2
.
linear
(),
m2
.
angular
()
+
Eigen
::
Vector3d
::
UnitX
()
*
m1
.
wx
);
}
friend
Motion
operator
^
(
const
Motion
&
m1
,
const
MotionRX
&
m2
)
{
/* nu1^nu2 = ( v1^w2+w1^v2, w1^w2 )
* nu1^(0,w2) = ( v1^w2 , w1^w2 )
* (x,y,z)^(0,0,w) = ( 0,zw,-yw )
* nu1^(0,wx) = ( 0,vz1 wx,-vy1 wx, 0,wz1 wx,-wy1 wx)
*/
const
Motion
::
Vector3
&
v
=
m1
.
linear
();
const
Motion
::
Vector3
&
w
=
m1
.
angular
();
const
double
&
wx
=
m2
.
wx
;
return
Motion
(
Motion
::
Vector3
(
0
,
v
[
2
]
*
wx
,
-
v
[
1
]
*
wx
),
Motion
::
Vector3
(
0
,
w
[
2
]
*
wx
,
-
w
[
1
]
*
wx
)
);
}
struct
ConstraintRX
{
template
<
typename
D
>
MotionRX
operator
*
(
const
Eigen
::
MatrixBase
<
D
>
&
v
)
const
{
return
MotionRX
(
v
[
0
]);
}
const
ConstraintRX
&
transpose
()
const
{
return
*
this
;
}
//template<typename D> D operator*( const Force& f ) const
Force
::
Vector3
::
ConstFixedSegmentReturnType
<
1
>::
Type
operator
*
(
const
Force
&
f
)
const
{
return
f
.
angular
().
head
<
1
>
();
}
};
// struct ConstraintRX
};
template
<
>
...
...
@@ -93,11 +148,14 @@ namespace se3
{
typedef
JointDataRX
JointData
;
typedef
JointModelRX
JointModel
;
typedef
ConstraintTpl
<
1
,
double
,
0
>
Constraint_t
;
//typedef ConstraintTpl<1,double,0> Constraint_t;
typedef
typename
JointRX
::
ConstraintRX
Constraint_t
;
typedef
SE3
Transformation_t
;
typedef
Motion
Velocity_t
;
//typedef Motion Velocity_t;
typedef
JointRX
::
MotionRX
Velocity_t
;
typedef
JointRX
::
BiasZero
Bias_t
;
typedef
Constraint_t
::
JointMotion
JointMotion_t
;
//typedef Constraint_t::JointMotion JointMotion_t;
typedef
Eigen
::
Matrix
<
double
,
1
,
1
>
JointMotion_t
;
enum
{
nq
=
1
,
nv
=
1
...
...
@@ -120,9 +178,9 @@ namespace se3
JointDataRX
()
:
S
(),
M
(
1
)
{
S
.
matrix
()
<<
0
,
0
,
0
,
1
,
0
,
0
;
//
S.matrix() << 0,0,0,1,0,0;
M
.
translation
(
SE3
::
Vector3
::
Zero
());
v
.
linear
(
Motion
::
Vector3
::
Zero
());
//
v.linear(Motion::Vector3::Zero());
}
};
...
...
@@ -146,7 +204,8 @@ namespace se3
data
.
qdd
[
0
]
=
as
[
idx_v
()];
data
.
M
.
rotation
(
rotationX
(
q
));
data
.
v
.
angular
(
Eigen
::
Vector3d
(
v
,
0
,
0
));
//data.v.angular(Eigen::Vector3d(v,0,0));
data
.
v
.
wx
=
v
;
}
static
inline
Eigen
::
Matrix3d
rotationX
(
const
double
&
angle
)
...
...
@@ -242,7 +301,7 @@ namespace se3
const
Eigen
::
VectorXd
&
as
)
const
{
Eigen
::
VectorXd
::
ConstFixedSegmentReturnType
<
nq
>::
Type
q
=
qs
.
segment
<
nq
>
(
idx_q
());
data
.
v
=
vs
.
segment
<
nv
>
(
idx_v
());
data
.
v
=
vs
.
segment
<
nv
>
(
idx_v
());
data
.
qdd
=
as
.
segment
<
nv
>
(
idx_v
());
JointData
::
Quaternion
quat
(
Eigen
::
Matrix
<
double
,
4
,
1
>
(
q
.
tail
(
4
)));
// TODO
...
...
This diff is collapsed.
Click to expand it.
src/spatial/motion.hpp
+
3
−
1
View file @
dc6f742b
...
...
@@ -48,8 +48,10 @@ namespace se3
void
linear
(
const
Vector3
&
v
)
{
m_v
=
v
;
}
// Arithmetic operators
MotionTpl
&
operator
=
(
const
Vector6
&
v
)
template
<
typename
D
>
MotionTpl
&
operator
=
(
const
Eigen
::
MatrixBase
<
D
>
&
v
)
{
EIGEN_STATIC_ASSERT_VECTOR_SPECIFIC_SIZE
(
D
,
6
);
m_w
=
v
.
template
segment
<
3
>(
ANGULAR
);
m_v
=
v
.
template
segment
<
3
>(
LINEAR
);
return
*
this
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment