We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0983b36 commit 0821e72Copy full SHA for 0821e72
tests/test_SerialLink.py
@@ -372,9 +372,14 @@ def test_payload(self):
372
373
def test_jointdynamics(self):
374
# TODO
375
- panda = rp.models.DH.Panda()
376
- panda.jointdynamics(1, 2)
377
- pass
+ self.skipTest("error jointdynamics not complete")
+ # error in the J value
+ puma = rp.models.DH.Puma560()
378
+ jd = puma.jointdynamics(puma.qn)
379
+ nt.assert_array_almost_equal(jd[0], [0.001133478453251, 0.001480000000000])
380
+ nt.assert_array_almost_equal(jd[1], [0.579706964030143e-3, 0.817000000000000e-3])
381
+ nt.assert_array_almost_equal(jd[2], [0.000525146448377, 0.001380000000000])
382
+
383
384
def test_twists(self):
385
0 commit comments