Skip to content

Commit 8240fa0

Browse files
[URDF] Fix velocity limit of carlikebot(#787)
1 parent d8b43d8 commit 8240fa0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ros2_control_demo_description/carlikebot/urdf/carlikebot_description.urdf.xacro

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@
174174
<child link="${prefix}virtual_front_wheel"/>
175175
<origin xyz="${wheelbase/2} 0 -${base_height/2}" rpy="0 0 ${PI/2}"/>
176176
<axis xyz="0 0 1"/>
177-
<limit lower="-0.4" upper="0.4" effort="100.0" velocity="0.0"/>
177+
<limit lower="-0.4" upper="0.4" effort="100.0" velocity="10.0"/>
178178
<dynamics damping="0.2"/>
179179
</joint>
180180

@@ -213,7 +213,7 @@
213213
<child link="${prefix}front_right_wheel" />
214214
<origin xyz="${wheelbase/2} ${base_width/2} -${base_height/2}" rpy="0 0 ${PI/2}"/>
215215
<axis xyz="0 0 1"/>
216-
<limit lower="-0.4" upper="0.4" effort="100.0" velocity="0.0"/>
216+
<limit lower="-0.4" upper="0.4" effort="100.0" velocity="10.0"/>
217217
<dynamics damping="0.2"/>
218218
<mimic joint="${prefix}virtual_front_wheel_joint" multiplier="1.0" offset="0.0"/>
219219
</joint>
@@ -253,7 +253,7 @@
253253
<child link="${prefix}front_left_wheel" />
254254
<origin xyz="${wheelbase/2} -${base_width/2} -${base_height/2}" rpy="0 0 ${PI/2}"/>
255255
<axis xyz="0 0 1"/>
256-
<limit lower="-0.4" upper="0.4" effort="100.0" velocity="0.0"/>
256+
<limit lower="-0.4" upper="0.4" effort="100.0" velocity="10.0"/>
257257
<dynamics damping="0.2"/>
258258
<mimic joint="${prefix}virtual_front_wheel_joint" multiplier="1.0" offset="0.0"/>
259259
</joint>

0 commit comments

Comments
 (0)