Skip to content

Commit b46be65

Browse files
committed
Add Kinova Link6: MJCF, scene, meshes, docs (author: Anas Houssaini <[email protected]>)
1 parent 1f2300d commit b46be65

File tree

14 files changed

+256
-0
lines changed

14 files changed

+256
-0
lines changed

kinova_link6/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Changelog – Link6 Description
2+
3+
All notable changes to this model will be documented in this file.
4+
5+
## [2025-27-08]
6+
- Initial release.

kinova_link6/LICENSE

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
Copyright (c) 2018, Kinova inc.
2+
3+
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
4+
5+
1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
6+
7+
2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
8+
9+
3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
10+
11+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS “AS IS” AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

kinova_link6/README.md

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
# Kinova Link6 Description (MJCF)
2+
3+
> [!IMPORTANT]
4+
> Requires MuJoCo 2.3.3 or later.
5+
6+
## Changelog
7+
8+
See [CHANGELOG.md](./CHANGELOG.md) for a full history of changes.
9+
10+
## Overview
11+
12+
This package contains a simplified robot description (MJCF) of the [Kinova
13+
Link6](https://www.kinovarobotics.com/product/link6-robots) developed by [Kinova Robotics](https://www.kinovarobotics.com/). It is derived from a private URDF description.
14+
15+
16+
<p float="left">
17+
<img src="assets/link6.png" width="400">
18+
</p>
19+
20+
21+
## MJCF derivation Link6
22+
23+
1. Converted xacro to URDF: `rosrun xacro xacro link6.xacro > link6.urdf`
24+
2. Added the following to the URDF's `<robot>` clause:
25+
26+
```xml
27+
<mujoco>
28+
<compiler meshdir="assets" discardvisual="false" fusestatic="false"/>
29+
</mujoco>
30+
```
31+
32+
3. Converted to MJCF:
33+
34+
```python
35+
import mujoco
36+
model = mujoco.MjModel.from_xml_path('link6.urdf')
37+
mujoco.mj_saveLastXML('link6_raw.xml', model)
38+
```
39+
40+
4. Added the following to the MJCF:
41+
* Position actuators for all six arm joints with per-class gains/limits;
42+
5. Added `scene.xml` which includes the robot.
43+
44+
45+
## License
46+
47+
This model is released under a [BSD-3-Clause License](LICENSE).
48+
49+
## Acknowledgement
50+
51+
This model was graciously contributed by [Anas Houssaini](https://anashoussaini.github.io/), [Abed Al Rahman Al Mrad](https://github.com/aalmrad),[Jonathan Lussier](https://github.com/kinovajon).

kinova_link6/assets/arm_link.stl

2.12 MB
Binary file not shown.

kinova_link6/assets/base_link.stl

1.04 MB
Binary file not shown.
1.09 MB
Binary file not shown.

kinova_link6/assets/link6.png

253 KB
Loading
8.04 MB
Binary file not shown.
2.86 MB
Binary file not shown.
1.46 MB
Binary file not shown.

0 commit comments

Comments
 (0)