Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
J
jrl-walkgen
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
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Guilhem Saurel
jrl-walkgen
Commits
b5ca6be4
Commit
b5ca6be4
authored
13 years ago
by
Syrine
Browse files
Options
Downloads
Patches
Plain Diff
Add external object door
parent
7a49aa1b
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
src/CMakeLists.txt
+1
-0
1 addition, 0 deletions
src/CMakeLists.txt
src/ZMPRefTrajectoryGeneration/door.cpp
+71
-0
71 additions, 0 deletions
src/ZMPRefTrajectoryGeneration/door.cpp
src/ZMPRefTrajectoryGeneration/door.hh
+153
-0
153 additions, 0 deletions
src/ZMPRefTrajectoryGeneration/door.hh
with
225 additions
and
0 deletions
src/CMakeLists.txt
+
1
−
0
View file @
b5ca6be4
...
...
@@ -60,6 +60,7 @@ SET(SOURCES
ZMPRefTrajectoryGeneration/qp-problem.cpp
ZMPRefTrajectoryGeneration/generator-vel-ref.cpp
ZMPRefTrajectoryGeneration/mpc-trajectory-generation.cpp
ZMPRefTrajectoryGeneration/door.cpp
MotionGeneration/StepOverPlanner.cpp
MotionGeneration/CollisionDetector.cpp
MotionGeneration/WaistHeightVariation.cpp
...
...
This diff is collapsed.
Click to expand it.
src/ZMPRefTrajectoryGeneration/door.cpp
0 → 100644
+
71
−
0
View file @
b5ca6be4
/*
* door.cpp
*
* Created on: 10 mai 2011
* Author: syrine
*/
#include
<ZMPRefTrajectoryGeneration/door.hh>
using
namespace
std
;
Door
::
Door
()
{}
void
Door
::
initialize
(
double
Orientation
)
{
FrameBase_
.
Orientation_
=
Orientation
;
FrameBase_
.
InvRx_
.
resize
(
2
,
false
);
FrameBase_
.
InvRx_
(
0
)
=
cos
(
Orientation
);
FrameBase_
.
InvRx_
(
1
)
=
-
sin
(
Orientation
);
FrameBase_
.
InvRy_
.
resize
(
2
,
false
);
FrameBase_
.
InvRy_
(
0
)
=
sin
(
Orientation
);
FrameBase_
.
InvRy_
(
1
)
=
cos
(
Orientation
);
double
xp
=
FrameBase_
.
Position
(
X
);
double
yp
=
FrameBase_
.
Position
(
Y
);
double
zp
=
FrameBase_
.
Position
(
Z
);
FrameBase_
.
InvHp_
=
-
FrameBase_
.
InvRx_
*
xp
-
FrameBase_
.
InvRy_
*
yp
;
}
void
Door
::
build_door_matrix
(
double
Time
,
double
DesVelDoor
,
int
N
,
boost_ublas
::
matrix
<
double
>
&
R
,
int
RelativAngle
,
double
&
Xdoortip
,
double
&
Ydoortip
)
{
double
Theta
;
for
(
int
j
=
0
;
j
<
N
;
j
++
)
{
Theta
=
DesVelDoor
*
(
Time
+
j
)
+
RelativAngle
;
R
(
0
,
j
)
=
sin
(
Theta
);
R
(
1
,
j
)
=
-
cos
(
Theta
);
}
// Rrot(0) = sin(DesVelDoor*(Time)+ RelativAngle);
// Rrot(1) = -cos(DesVelDoor*(Time)+ RelativAngle);
// // L largeur de la porte
double
L
=
1.0
;
// door tip position in global frame
Xdoortip
=
L
*
sin
(
DesVelDoor
*
(
Time
))
*
cos
(
FrameBase_
.
Orientation_
)
-
L
*
cos
(
DesVelDoor
*
(
Time
))
*
sin
(
FrameBase_
.
Orientation_
)
+
FrameBase_
.
Position
(
X
);
Ydoortip
=
L
*
sin
(
DesVelDoor
*
(
Time
))
*
sin
(
FrameBase_
.
Orientation_
)
+
L
*
cos
(
DesVelDoor
*
(
Time
))
*
cos
(
FrameBase_
.
Orientation_
)
+
FrameBase_
.
Position
(
Y
);
cout
<<
"FrameBase_.Orientation_"
<<
FrameBase_
.
Orientation_
<<
endl
;
}
Door
::
frame_s
::
frame_s
()
{
Orientation_
=
-
3.14
/
2.0
;
dOrientation_
=
0.0
;
ddOrientation_
=
0.0
;
Position_
[
X
]
=
0.55
;
Position_
[
Y
]
=
0.5
;
Position_
[
Z
]
=
0.0
;
}
This diff is collapsed.
Click to expand it.
src/ZMPRefTrajectoryGeneration/door.hh
0 → 100644
+
153
−
0
View file @
b5ca6be4
/*
* door.hh
*
* Created on: 10 mai 2011
* Author: syrine
*/
#ifndef DOOR_HH_
#define DOOR_HH_
#include
<jrl/mal/matrixabstractlayer.hh>
class
Door
{
//
// Public types:
//
public:
const
static
unsigned
int
X
=
0
;
const
static
unsigned
int
Y
=
1
;
const
static
unsigned
int
Z
=
2
;
//
// Public methods:
//
public:
Door
();
//constructeur
void
initialize
(
double
Orientation
);
///
void
build_door_matrix
(
double
Time
,
double
DesVelDoor
,
int
N
,
boost_ublas
::
matrix
<
double
>
&
R
,
int
RelativAngle
,
double
&
Xdoortip
,
double
&
Ydoortip
);
/// void doormatrices_construct();
struct
frame_s
{
//
// Public methods
//
public:
frame_s
();
// constructeur de la structure
inline
double
const
&
Position
(
unsigned
int
Axis
)
const
{
return
Position_
[
Axis
];
};
inline
void
Position
(
unsigned
int
Axis
,
double
Position
)
{
Position_
[
Axis
]
=
Position
;
};
inline
double
const
Orientation
()
const
{
return
Orientation_
;
};
inline
void
Orientation
(
const
double
Orientation
)
{
Orientation_
=
Orientation
;
};
inline
double
const
dOrientation
()
const
{
return
dOrientation_
;
};
inline
void
dOrientation
(
const
double
dOrientation
)
{
dOrientation_
=
dOrientation
;
};
inline
double
const
ddOrientation
()
const
{
return
ddOrientation_
;
};
inline
void
ddOrientation
(
const
double
ddOrientation
)
{
ddOrientation_
=
ddOrientation
;
};
//TODO:
// inline boost_ublas::vector<double> const Position() const
//{ return Postion_[3]; };
//inline void Postion( const boost_ublas::vector<double> Postion_[3] )
//{ Postion_[3] = Postion_[3]; };
//
// inline boost_ublas::matrix<double> const H() const
// { return H; };
// inline void H( const boost_ublas::matrix<double> H )
// { H = H_; };
//
// inline boost_ublas::matrix<double> const Hinv() const
// { return Hinv; };
// inline void Hinv( const boost_ublas::matrix<double> Hinv )
// { Hinv = Hinv; };
/// \brief Orientation around the vertical axis
double
Orientation_
;
// \brief Rotational velocity around the vertical axis
double
dOrientation_
;
// \brief Rotational acceleration around the vertical axis
double
ddOrientation_
;
/// \brief Position of the origin
double
Position_
[
3
];
// /// \brief transformation matrix from
// boost_ublas::matrix<double> H_;
// /// \brief Inverse of H
// boost_ublas::matrix<double> Hinv_;
/// \brief x rotation vector of the inv. transformation matrix InvH
boost_ublas
::
vector
<
double
>
InvRx_
;
/// \brief y rotation vector of the inv. transformation matrix InvH
boost_ublas
::
vector
<
double
>
InvRy_
;
/// \brief Translation component vector of InvH matrix
boost_ublas
::
vector
<
double
>
InvHp_
;
};
typedef
frame_s
frame_t
;
/// Definition des matrices correspondant à la porte
boost_ublas
::
vector
<
double
>
&
InvRx
()
{
return
FrameBase_
.
InvRx_
;
};
boost_ublas
::
vector
<
double
>
&
InvRy
()
{
return
FrameBase_
.
InvRy_
;
};
boost_ublas
::
vector
<
double
>
&
InvHp
()
{
return
FrameBase_
.
InvHp_
;
};
/// \name Matrices defining the evolution
/// \{
// inline double const Mass() const
// { return Mass_; };
// inline void Mass( const double Mass )
// { Mass_ = Mass; };
//
// inline double const Inertia() const
// { return Inertia_; };
// inline void Inertia( const double Mass )
// { Inertia_ = Inertia; };
/// \}
//
// Private members:
//
private
:
/// Frame of the door
frame_t
FrameBase_
;
/// Frame of the door
frame_t
FrameDoor_
;
// /// Mass
// double Mass_;
// /// Inertia
// double Inertia_;
/// Wrist
/// TODO: Wrist undefined
frame_t
FrameWrist_
;
};
#endif
/* DOOR_HH_ */
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