ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question

clotz's profile - activity

2022-07-13 05:30:03 -0500 received badge  Great Question (source)
2018-05-23 23:19:51 -0500 received badge  Good Question (source)
2017-05-05 15:28:31 -0500 received badge  Nice Question (source)
2013-07-31 06:29:12 -0500 received badge  Famous Question (source)
2012-12-04 04:20:36 -0500 received badge  Taxonomist
2012-09-18 22:31:22 -0500 received badge  Famous Question (source)
2012-09-08 16:32:02 -0500 received badge  Notable Question (source)
2012-08-29 20:53:39 -0500 received badge  Notable Question (source)
2012-08-26 03:31:53 -0500 received badge  Popular Question (source)
2012-08-22 02:28:10 -0500 received badge  Popular Question (source)
2012-08-20 01:54:39 -0500 asked a question Start a node from python code - rospy equivalence rosrun - rosgui qt

Hallo,

I'm writing a plugin for my rosgui in python. At the moment I'm trying to write an "pressed-button" action which starts a rosnode. I's there a python-command equivalent to "rosrun pkg node" or the launch-command "<node name="..." pkg="..." type="...">?

Unfortunately I couldn't find something in the documentations yet.

Thanks for Help.

2012-08-06 23:14:13 -0500 received badge  Nice Question (source)
2012-08-06 22:47:56 -0500 received badge  Student (source)
2012-08-06 21:55:26 -0500 received badge  Editor (source)
2012-08-06 21:52:06 -0500 asked a question gazebo - revolute joint unresistant against outer forces

Hallo, does anybody know how I can make a revolute joint resistant against outer forces? I'm trying to create a manipulator for my urdf Robot-Model. The controllable joint is working fine, but it's deflecting immediately after an outer force worked on it.

Edit: Tried it also with an effort of "5000" without any improvement.

-----------URDF-------------------------

<joint name="XYZ_disk_joint" type="revolute">
  <origin xyz=" 0.0 y.y  z.z" rpy="0.0 0.0 0.0"/>
  <parent link="XYZ_corpus" />
  <child link="XYZ_disk" />
  <axis xyz="0 1 0" />      
  <limit  lower="-1.5708" upper="1.5708" effort="10.0" velocity="3.0" />    
  <dynamics damping="1.0" friction="1.0"/> 
</joint> 

<transmission name="XYZ_revolute_controll" type="pr2_mechanism_model/SimpleTransmission" >
  <actuator name="XYZ_disk_motor" />
  <joint name="XYZ_disk_joint" />
  <mechanicalReduction>1.0</mechanicalReduction>
</transmission>

-----------Controller------------------

XYZ_servo_controller:
  type: robot_mechanism_controllers/JointPositionController
  joint: XYZ_disk_joint
  pid:
    p: 1.0
    i: 0.0
    d: 0.4