Robotics StackExchange | Archived questions

Moving model out of origin gives error

I'm trying to move hectorquadrotor from origin to position (-12.0, -1, 0) in the world. The hectorquadrotor model is made of many parts. One of them, is the sonar sensor.

My code to place it in the word follows:

   <xacro:sonar_sensor name="sonar" parent="base_link" ros_topic="sonar_height" update_rate="10" min_range="0.03" max_range="3.0" field_of_view="${40*pi/180}" ray_count="3">
       <origin xyz="-12.16 -1.0 -0.012" rpy="0 ${90*pi/180} 0"/>
   </xacro:sonar_sensor>

However, I got the error:

propulsion model input contains **!?* Nan values!
drag model input contains **!?* Nan values!

The code to the sensor is this link https://github.com/tu-darmstadt-ros-pkg/hector_models/blob/groovy-devel/hector_sensors_description/urdf/sonar_sensor.urdf.xacro

Asked by bxl on 2017-06-20 19:28:06 UTC

Comments

Answers