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

al_ca's profile - activity

2023-02-15 16:07:58 -0500 received badge  Famous Question (source)
2023-01-30 03:27:08 -0500 received badge  Famous Question (source)
2022-05-11 12:18:45 -0500 received badge  Famous Question (source)
2022-01-19 01:26:08 -0500 received badge  Famous Question (source)
2022-01-11 16:09:58 -0500 received badge  Notable Question (source)
2021-10-27 00:59:22 -0500 received badge  Famous Question (source)
2021-10-02 11:01:10 -0500 received badge  Famous Question (source)
2021-07-30 01:21:16 -0500 received badge  Famous Question (source)
2021-07-20 14:31:33 -0500 received badge  Famous Question (source)
2021-07-16 02:29:04 -0500 commented answer Send automatically nav goal based on the map

It's okay I will find a way to do this. Thank you again for your help!

2021-07-15 01:56:36 -0500 received badge  Popular Question (source)
2021-07-14 13:42:06 -0500 commented answer Send automatically nav goal based on the map

Hmm, interesting... have you in mind of something where I can find applications or examples regarding edge & corner

2021-07-14 11:03:29 -0500 commented answer Send automatically nav goal based on the map

Firstly thank your for your time and effort and sorry for my poor explanation of the question, also could you please exp

2021-07-14 11:00:10 -0500 commented answer Send automatically nav goal based on the map

Firstly thank your for your time and effort and sorry for my poor explanation of the question, also could you please exp

2021-07-14 10:58:58 -0500 commented answer Send automatically nav goal based on the map

Firstly thank your for your time and effort and sorry for my poor explanation of the question, also could you please exp

2021-07-14 10:58:45 -0500 commented answer Send automatically nav goal based on the map

Firstly thank your for your time and effort and sorry for my poor explanation of the question, also could you please exp

2021-07-14 10:58:30 -0500 commented answer Send automatically nav goal based on the map

Firstly thank your for your time and effort and sorry for my poor explanation of the question, also could you please exp

2021-07-14 09:19:47 -0500 commented question Send automatically nav goal based on the map

the second one, the sensors I am using are lidar,imu and Odometry

2021-07-14 07:29:22 -0500 received badge  Organizer (source)
2021-07-14 07:28:56 -0500 edited question Send automatically nav goal based on the map

Send automatically nav goal based on the map Hello there, I am trying to create a script that sends automatically nav g

2021-07-14 07:26:27 -0500 asked a question Send automatically nav goal based on the map

Send automatically nav goal based on the map Hello there, I am trying to create a script that sends automatically nav g

2021-07-14 07:26:25 -0500 asked a question Send automatically nav goal based on the map

Send automatically nav goal based on the map Hello there, I am trying to create a script that sends automatically nav g

2021-07-14 05:23:42 -0500 received badge  Famous Question (source)
2021-07-11 13:06:16 -0500 received badge  Notable Question (source)
2021-07-11 13:06:16 -0500 received badge  Famous Question (source)
2021-04-24 07:35:37 -0500 received badge  Notable Question (source)
2021-04-12 11:50:25 -0500 received badge  Popular Question (source)
2021-03-18 07:03:59 -0500 asked a question odom_vel, cmd_vel, trajectory planner

odom_vel, cmd_vel, trajectory planner Hi there, Is it right or wrong the correlation between these two types of data, w

2021-02-22 21:24:40 -0500 received badge  Notable Question (source)
2021-02-07 03:40:04 -0500 received badge  Notable Question (source)
2020-12-03 02:38:49 -0500 received badge  Popular Question (source)
2020-12-02 09:47:15 -0500 edited question Do I have to create an omni_drive_controller?

Do I have to create an omni_drive_controller? Hi there, I have to create something like diff_drive_controller but for a

2020-12-02 09:42:07 -0500 asked a question Do I have to create an omni_drive_controller?

Do I have to create an omni_drive_controller? Hi there, I have to create something like diff_drive_controller but for a

2020-11-22 09:38:20 -0500 received badge  Notable Question (source)
2020-11-21 09:17:51 -0500 received badge  Famous Question (source)
2020-11-21 09:16:10 -0500 received badge  Popular Question (source)
2020-11-21 05:42:16 -0500 edited question My robot explodes after sending msgs to the wheels in the gazebo

My robot explodes after sending msgs to the wheels Hello there, I have a robot with a triangular form chassis and three

2020-11-21 05:41:48 -0500 edited question My robot explodes after sending msgs to the wheels in the gazebo

My robot explodes after sending msgs to the wheels Hello there, I have a robot with a triangular form chassis and three

2020-11-21 05:39:11 -0500 commented question My robot explodes after sending msgs to the wheels in the gazebo

haha sorry for that... I will update my question. So that means I can't fix it?

2020-11-20 14:35:13 -0500 commented question My robot explodes after sending msgs to the wheels in the gazebo

It starts to fly and the parts(links) are ripped apart, after I send a command to the wheels with values up 1.5 m/s from

2020-11-20 14:33:44 -0500 commented question My robot explodes after sending msgs to the wheels in the gazebo

It starts to fly and the parts(links) are ripped apart

2020-11-20 12:36:20 -0500 marked best answer Control loop missed its desired rate of 20.0000Hz... the loop actually took 0.1600 seconds

Hi there,

why is this happening after I send a nav goal?

<launch>

    <node name="rviz" pkg="rviz" type="rviz" args="-d $(find amcl)/rviz/amcl.rviz"/>

    <!-- Map server -->
    <arg name="map_file" default="$(find amcl)/maps/test_map.yaml"/>
    <node name="map_server" pkg="map_server" type="map_server" args="$(arg map_file)" />

    <node pkg="amcl" type="amcl" name="amcl">

        <!-- Publish scans from best pose at a max of 10 Hz -->
        <remap from="scan" to="scan_multi"/>
        <param name="odom_model_type" value="omni"/>
        <param name="base_frame_id" value="base_footprint"/>
        <param name="update_min_d" value="0.5"/>
        <param name="update_min_a" value="1.0"/>
        <param name="odom_alpha5" value="0.1"/>
        <param name="transform_tolerance" value="0.2" />
        <param name="gui_publish_rate" value="10.0"/>
        <param name="laser_max_beams" value="30"/>
        <param name="min_particles" value="500"/>
        <param name="max_particles" value="5000"/>
        <param name="kld_err" value="0.05"/>
        <param name="kld_z" value="0.99"/>
        <param name="odom_alpha1" value="0.2"/>
        <param name="odom_alpha2" value="0.2"/>
        <!-- translation std dev, m -->
        <param name="odom_alpha3" value="0.8"/>
        <param name="odom_alpha4" value="0.2"/>
        <param name="laser_z_hit" value="0.5"/>
        <param name="laser_z_short" value="0.05"/>
        <param name="laser_z_max" value="0.05"/>
        <param name="laser_z_rand" value="0.5"/>
        <param name="laser_sigma_hit" value="0.2"/>
        <param name="laser_lambda_short" value="0.1"/>
        <param name="laser_lambda_short" value="0.1"/>
        <param name="laser_model_type" value="likelihood_field"/>
        <!--     <param name="laser_model_type" value="beam"/> -->
        <param name="laser_likelihood_max_dist" value="2.0"/>
        <param name="update_min_d" value="0.2"/>
        <param name="update_min_a" value="0.5"/>
        <param name="odom_frame_id" value="odom"/>
        <param name="resample_interval" value="1"/>
        <param name="transform_tolerance" value="0.3"/>
        <param name="recovery_alpha_slow" value="0.0"/>
        <param name="recovery_alpha_fast" value="0.0"/>

    </node>


    <!-- Move base -->
    <node pkg="move_base" type="move_base" respawn="false" name="move_base" output="screen">

       <rosparam file="$(find amcl)/config/costmap_common_params.yaml" command="load" ns="global_costmap" />
       <rosparam file="$(find amcl)/config/costmap_common_params.yaml" command="load" ns="local_costmap" />
       <rosparam file="$(find amcl)/config/local_costmap_params.yaml" command="load" />
       <rosparam file="$(find amcl)/config/global_costmap_params.yaml" command="load" />
       <rosparam file="$(find amcl)/config/trajectory_planner.yaml" command="load" />

       <remap from="cmd_vel" to="cmd_vel"/>
       <remap from="odom" to="odom"/>
       <remap from="scan" to="scan_multi"/>
       <param name="move_base/DWAPlannerROS/yaw_goal_tolerance" value="1.0"/>
       <param name="move_base/DWAPlannerROS/xy_goal_tolerance" value="1.0"/>

    </node>

</launch>

global_costmap:

global_frame: map
robot_base_frame: base_footprint
update_frequency: 5.0
publish_frequency: 2.0
width: 15
height: 15
rolling_window: true
inflation_radius: 0.1
resolution: 0.1
plugins: 
    - {name: static_layer,       type: "costmap_2d::StaticLayer"}

local_costmap:

global_frame: odom
robot_base_frame: base_footprint
update_frequency: 5
publish_frequency: 5
rolling_window: true
width: 3
height: 3
resolution: 0.1
inflation_radius: 0.1
plugins: 
    - {name: static_layer,       type: "costmap_2d::StaticLayer"}
    - {name: obstacle_layer,      type: "costmap_2d::ObstacleLayer"}

costmap_common params:

obstacle_range: 2.5
raytrace_range: 3.0
robot radius: 0.5
map_topic: map
subscribe_to_updates: true
observation_sources ...
(more)
2020-11-20 12:36:13 -0500 answered a question Control loop missed its desired rate of 20.0000Hz... the loop actually took 0.1600 seconds

I fixed the problem by increasing the values of sim_time and a little bit of sim_granularity the parameters of the Traj

2020-11-20 12:27:41 -0500 edited question My robot explodes after sending msgs to the wheels in the gazebo

My robot explodes after sending msgs to the wheels Hello there, I have a robot with a triangular form chassis and three

2020-11-20 12:25:12 -0500 edited question My robot explodes after sending msgs to the wheels in the gazebo

My robot explodes after sending msgs to the wheels Hello there, I have a robot with a triangular form chassis and three

2020-11-20 12:24:10 -0500 asked a question My robot explodes after sending msgs to the wheels in the gazebo

My robot explodes after sending msgs to the wheels Hello there, I have a robot with a triangular form chassis and three

2020-11-19 10:05:01 -0500 commented answer robot rotates instead of going to the goal (dwa_local_planner)

Hello there, did you solved your problem?

2020-11-19 10:04:48 -0500 commented answer robot rotates instead of going to the goal (dwa_local_planner)

Hello there, did you find that solved your problem?

2020-11-15 12:08:22 -0500 received badge  Notable Question (source)
2020-11-15 09:55:10 -0500 commented question Control loop missed its desired rate of 20.0000Hz... the loop actually took 0.1600 seconds

I updated my question... I forgot to mention that I am running a simulation if that helps. From what I see odom is 16.84