Skip to content

Commit cc8ce99

Browse files
Adds bar map to navigation and increases the max position limits for the base linear joints (#51)
1 parent 144777d commit cc8ce99

File tree

6 files changed

+17
-11
lines changed

6 files changed

+17
-11
lines changed

src/moveit_pro_ur_configs/bring_it_sim/config/moveit/hard_joint_limits.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,19 +17,19 @@ joint_limits:
1717
has_velocity_limits: true
1818
max_acceleration: 0.1
1919
max_effort: 150.0
20-
max_position: 5.0
20+
max_position: 20.0
2121
max_velocity: 0.175
22-
min_position: -5.0
22+
min_position: -20.0
2323
linear_y_joint:
2424
has_acceleration_limits: true
2525
has_effort_limits: true
2626
has_position_limits: true
2727
has_velocity_limits: true
2828
max_acceleration: 0.1
2929
max_effort: 150.0
30-
max_position: 5.0
30+
max_position: 20.0
3131
max_velocity: 0.175
32-
min_position: -5.0
32+
min_position: -20.0
3333
rotational_yaw_joint:
3434
has_acceleration_limits: true
3535
has_effort_limits: true

src/moveit_pro_ur_configs/bring_it_sim/config/moveit/joint_limits.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,19 +17,19 @@ joint_limits:
1717
has_velocity_limits: true
1818
max_acceleration: 0.02
1919
max_effort: 150.0
20-
max_position: 5.0
20+
max_position: 20.0
2121
max_velocity: 0.175
22-
min_position: -5.0
22+
min_position: -20.0
2323
linear_y_joint:
2424
has_acceleration_limits: true
2525
has_effort_limits: true
2626
has_position_limits: true
2727
has_velocity_limits: true
2828
max_acceleration: 0.02
2929
max_effort: 150.0
30-
max_position: 5.0
30+
max_position: 20.0
3131
max_velocity: 0.175
32-
min_position: -5.0
32+
min_position: -20.0
3333
rotational_yaw_joint:
3434
has_acceleration_limits: true
3535
has_effort_limits: true

src/moveit_pro_ur_configs/bring_it_sim/description/ur5e_ridgeback.xacro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
<parent link="world" />
7171
<child link="virual_rail_link_1" />
7272
<origin xyz="0 0 0" rpy="0 0 0" />
73-
<limit effort="1000.0" lower="-5.0" upper="5.0" velocity="0.175" acceleration="10.0"/>
73+
<limit effort="1000.0" lower="-20.0" upper="20.0" velocity="0.175" acceleration="10.0"/>
7474
<dynamics damping="20.0" friction="500.0" />
7575
</joint>
7676

@@ -81,7 +81,7 @@
8181
<parent link="virual_rail_link_1" />
8282
<child link="virual_rail_link_2" />
8383
<origin xyz="0 0 0" rpy="0 0 0" />
84-
<limit effort="1000.0" lower="-5.0" upper="5.0" velocity="0.175" acceleration="10.0"/>
84+
<limit effort="1000.0" lower="-20.0" upper="20.0" velocity="0.175" acceleration="10.0"/>
8585
<dynamics damping="20.0" friction="500.0" />
8686
</joint>
8787

src/moveit_pro_ur_configs/bring_it_sim/launch/sim/robot_drivers_to_persist_sim.launch.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ def generate_launch_description():
127127

128128
declare_map_yaml_cmd = DeclareLaunchArgument(
129129
"map",
130-
default_value=os.path.join(config_dir, "maps", "empty_map.yaml"),
130+
default_value=os.path.join(config_dir, "maps", "bar_map.yaml"),
131131
description="Full path to map yaml file to load",
132132
)
133133

19 KB
Loading
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
image: bar_map.png
2+
resolution: 0.0073
3+
origin: [-7.000000, -2.000000, 0.000000]
4+
negate: 0
5+
occupied_thresh: 0.65
6+
free_thresh: 0.196

0 commit comments

Comments
 (0)