Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
RobotAPI
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Container Registry
Model registry
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Software
ArmarX
RobotAPI
Commits
523e33b0
Commit
523e33b0
authored
4 years ago
by
Raphael Grimm
Browse files
Options
Downloads
Patches
Plain Diff
Update ice interface
parent
8b8b25cf
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!76
Update cartesian impedance and arviz
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
source/RobotAPI/interface/units/RobotUnit/TaskSpaceActiveImpedanceControl.ice
+21
-12
21 additions, 12 deletions
...rface/units/RobotUnit/TaskSpaceActiveImpedanceControl.ice
with
21 additions
and
12 deletions
source/RobotAPI/interface/units/RobotUnit/TaskSpaceActiveImpedanceControl.ice
+
21
−
12
View file @
523e33b0
...
...
@@ -22,6 +22,7 @@
#pragma once
#include
<ArmarXCore/interface/serialization/Eigen.ice>
#include
<RobotAPI/interface/units/RobotUnit/NJointController.ice>
module
armarx
...
...
@@ -29,24 +30,32 @@ module armarx
class
NJointTaskSpaceImpedanceControlConfig
extends
NJointControllerConfig
{
string
nodeSetName
;
Ice
::
FloatSeq
desiredPoseVec
;
Ice
::
FloatSeq
desiredJointPositions
;
Ice
::
FloatSeq
Kpos
;
Ice
::
FloatSeq
Kori
;
Ice
::
FloatSeq
Dpos
;
Ice
::
FloatSeq
Dori
;
Ice
::
FloatSeq
Knull
;
Ice
::
FloatSeq
Dnull
;
float
torqueLimit
;
Eigen
::
Vector3f
desiredPosition
;
Eigen
::
Quaternionf
desiredOrientation
;
Eigen
::
Vector3f
Kpos
;
Eigen
::
Vector3f
Kori
;
Eigen
::
Vector3f
Dpos
;
Eigen
::
Vector3f
Dori
;
Eigen
::
VectorXf
desiredJointPositions
;
Eigen
::
VectorXf
Knull
;
Eigen
::
VectorXf
Dnull
;
float
torqueLimit
;
};
interface
NJointTaskSpaceImpedanceControlInterface
extends
NJointControllerInterface
{
void
setPosition
(
Ice
::
FloatSeq
target
);
void
setOrientation
(
Ice
::
FloatSeq
orientation
);
void
setPosition
(
Eigen
::
Vector3f
target
);
void
setOrientation
(
Eigen
::
Quaternionf
orientation
);
void
setPositionOrientation
(
Eigen
::
Vector3f
target
,
Eigen
::
Quaternionf
orientation
);
void
setPose
(
Eigen
::
Matrix4f
mat
);
void
setImpedanceParameters
(
string
paraName
,
Ice
::
FloatSeq
vals
);
void
setNullspaceConfig
(
Eigen
::
VectorXf
desiredJointPositions
,
Eigen
::
VectorXf
Knull
,
Eigen
::
VectorXf
Dnull
);
void
setConfig
(
NJointTaskSpaceImpedanceControlConfig
cfg
);
};
};
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