Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Stack Of Tasks
pinocchio
Commits
331cb6a3
Verified
Commit
331cb6a3
authored
Mar 31, 2019
by
Justin Carpentier
Browse files
multibody/data: add world expressed Spatial acceleration vectors
parent
5344fbeb
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/multibody/data.hpp
View file @
331cb6a3
//
// Copyright (c) 2015-201
8
CNRS
// Copyright (c) 2015-201
9
CNRS
INRIA
// Copyright (c) 2015 Wandercraft, 86 rue de Paris 91400 Orsay, France.
//
...
...
@@ -74,15 +74,18 @@ namespace pinocchio
/// encapsulated in JointDataAccessor.
JointDataVector
joints
;
/// \brief Vector of joint accelerations expressed at the centers of the joints.
/// \brief Vector of joint accelerations expressed at the centers of the joints
frames
.
container
::
aligned_vector
<
Motion
>
a
;
/// \brief Vector of joint accelerations expressed at the origin.
/// \brief Vector of joint accelerations expressed at the origin
of the world
.
container
::
aligned_vector
<
Motion
>
oa
;
/// \brief Vector of joint accelerations due to the gravity field.
container
::
aligned_vector
<
Motion
>
a_gf
;
/// \brief Vector of joint accelerations expressed at the origin of the world including gravity contribution.
container
::
aligned_vector
<
Motion
>
oa_gf
;
/// \brief Vector of joint velocities expressed at the centers of the joints.
container
::
aligned_vector
<
Motion
>
v
;
...
...
src/multibody/data.hxx
View file @
331cb6a3
//
// Copyright (c) 2015-201
8
CNRS
// Copyright (c) 2015-201
9
CNRS
INRIA
// Copyright (c) 2015 Wandercraft, 86 rue de Paris 91400 Orsay, France.
//
...
...
@@ -26,6 +26,7 @@ namespace pinocchio
,
a
((
std
::
size_t
)
model
.
njoints
)
,
oa
((
std
::
size_t
)
model
.
njoints
)
,
a_gf
((
std
::
size_t
)
model
.
njoints
)
,
oa_gf
((
std
::
size_t
)
model
.
njoints
)
,
v
((
std
::
size_t
)
model
.
njoints
)
,
ov
((
std
::
size_t
)
model
.
njoints
)
,
f
((
std
::
size_t
)
model
.
njoints
)
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment