Modern Robotics URDF Load Module
Project description
"mr_urdf_loader" Python Package Instructions
Dependency Requirement
numpy
, modern_robotics
, urdfpy
should be preinstalled.
Installing the Package
pip install mr_urdf_loader
Importing the Package
To import the package, we recommend using
from mr_urdf_loader import loadURDF
MRSetup = loadURDF(urdf_name)
Examples
1. Simple MR test
cd example/3DoF
python3 urdf_loader.py
2. Pybullet Simulation
cd example/3DoF
pip install pybullet
python3 sim.py
3. UR5 Simulation
cd example/ur5
python3 ur5_sim.py
Using the Package Locally
It is possible to use the package locally without installation. Download and place the package in the working directory. Note that since the package is not installed, you need to move the package if the working directory is changed. Importing is still required before using.
4. Pybullet Error
Pybullet의 경우 마지막 링크 urdf를 다음과 같이 inertial 정보를 기입하지 않는 경우 임의의 값으로 수정하여 Dynamics를 해석하는 듯 싶다.
<link name="eef_link" />
따라서 다음처럼 mass가 없는 링크에도 inertial 정보를 기입해야 Modern robotics library와 동일하게 계산된다.
<link name="eef_link">
<collision>
<geometry>
<box size="0.00 0.00 0.00"/>
</geometry>
<origin rpy="0 0 0" xyz="0.00 0 0"/>
</collision>
<inertial>
<mass value="0.0"/>
<origin rpy="0 0 0" xyz="0.0 0.0 0.0"/>
<inertia ixx="0.0" ixy="0.0" ixz="0.0" iyy="0.0" iyz="0.0" izz="0.0"/>
</inertial>
</link>
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file mr-urdf-loader-0.0.10.tar.gz
.
File metadata
- Download URL: mr-urdf-loader-0.0.10.tar.gz
- Upload date:
- Size: 7.4 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.28.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2bffc1d7f47b60f6d0329c8629f7f86fae77c44bf4ad1257b0e5e1e6cbf1e169 |
|
MD5 | 9f6c2d653a3aeafd7704481405bc480c |
|
BLAKE2b-256 | e16727af1df655aea268cde44020a009c1cf048043920413560b9ac120fb8322 |
File details
Details for the file mr_urdf_loader-0.0.10-py3-none-any.whl
.
File metadata
- Download URL: mr_urdf_loader-0.0.10-py3-none-any.whl
- Upload date:
- Size: 5.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.28.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 63d6990fb761c49e5bd367d6b32e1a027f4cc16c3de21d022f806246d05ae054 |
|
MD5 | 47ba9ed4e8165c64d9647822b8df9422 |
|
BLAKE2b-256 | 5ddcadad7955029d42fad1a1bde99081068a449875cce8708b5dc62c1bb2a24c |