There are parallelograms, springs, tendon couplings, cables, and counterweight in da Vinci Research Kit (dVRK) so that we can not use existing tools to identify the dynamic parameters of it. This software framework was developed to solve these problems. Although this package was initially developed for the dVRK, it is also very easy to use it to identify the dynamic parameters of other robots.
-
Symbolic dynamic modelling based on DH parameters and geometric tree
- Geometrical modelling
- Dynamic modelling
- Base parameter generation using QR decomposition
-
Optimal excitation trajectory generation based on fourier-series
-
Excitation of robots, using dVRK ROS stack
-
Data processing
- Derive velocity and acceleration from position measurements
- Zero-phase low-pass filter for original data
- Remove the data whose velocity is close to zero to decrease the noise for Coulomb friction
-
Identification
- Joint cable torque identification
- Ordinary Least Square (OLS)
- Weighted Least Square (WLS)
- Convex Optimization
-
Output of the identified parameters to json files
- Python 2.7
- Python modules
- NumPy, SciPy, SymPy, CvxOpt, Matplotlib, PyOpt, cloudpickle
Anaconda is recommended.
A paper describing the modeling and identification of the dVRK using this package can be downloaded here.
A convex optimization-based dynamic model identification package for the da Vinci Research Kit
The bibtex code for including this citation is provided:
@ARTICLE{8758871,
author={Y. {Wang} and R. {Gondokaryono} and A. {Munawar} and G. S. {Fischer}},
journal={IEEE Robotics and Automation Letters},
title={A Convex Optimization-Based Dynamic Model Identification Package for the da Vinci Research Kit},
year={2019},
volume={4},
number={4},
pages={3657-3664},
keywords={Manipulator dynamics;Kinematics;Dynamics;Open source software;Couplings;Surgical Robotics: Laparoscopy;Dynamics;Calibration and Identification},
doi={10.1109/LRA.2019.2927947},
ISSN={2377-3766},
month={Oct},}
-
Master Tool Manipulator (MTM)
-
Patient Side Manipulator (PSM)
Yan Wang and Radian Gondokaryono, from WPI AIM Lab
When developing this work, we referred a lot from the following places:
When I was using PyOpt, I found some problems with it. In pySLSQP.py
file, these changes should be made to make it work.
gg = numpy.zeros([la], numpy.float) ==> gg = numpy.zeros(la, numpy.float)
dg = numpy.zeros([la,n+1], numpy.float) ==> dg = numpy.zeros([la[0], n + 1], numpy.float)
w = numpy.zeros([lw], numpy.float) ==> w = numpy.zeros(lw, numpy.float)
jw = numpy.zeros([ljw], numpy.intc) ==> jw = numpy.zeros(ljw, numpy.intc)
Or simply replace the pySOLVOPT.py
file in anaconda2/lib/python2.7/site-packages/pyOpt/pySOLVOPT/
with the file in dyn_ident_py/design
of this repository.