Closed Topasm closed 4 months ago
Hi,
I am not sure I understand your issue. Are you commanding a delta position that the robot does not reach?
Best, Tim
No, If simply Loop{ get current_ee_position Move(current_ee_position) }
What i expected is keeping its position but EE keeps falling
Thanks for feedback Tim
My guess would be that the end-effectors weight is configured lower than it actually is (in the web interface). Also by getting the current position in every step, you will have compounding errors which certainly cause the robot to slowly diverge from its original position. If you really want to hold the current position, I recommend just getting the position once in the beginning. Also you might check out my suggestion here.
I tried
motion = franky.ExponentialImpedanceMotion(
affine, franky.ReferenceType.Absolute, 200, 100)
but it makes
franky._franky.ControlException: libfranka: Move command aborted: motion aborted by reflex! ["communication_constraints_violation"]
control_command_success_rate: 0 packets lost in a row in the last sample: 9
this error. Anyway, with just getting the position in the beginning I could make robot hold z position well.
thanks Tim
I am running this function in while loop. This code get current postion and calculate new position with current postion + diff. What I want do is move end-effector in absolute position.
But in test it's end-effector doen't keep its postion. I change end effector weight in desk but with small amount of disturb(weight) it doesn't keep its postion.
can I change stiffness of position in cartesian control? I know it could solve with relative control mode but I need this way too.