Monash-Connected-Autonomous-Vehicle / ESDA

Software stack for MCAVs annual IGVC entry
0 stars 0 forks source link

Demo night sim #70

Open AbBaSaMo opened 3 weeks ago

AbBaSaMo commented 3 weeks ago

Overview

Demo night is in week 8. We want a hardware in the loop demo. This will involve:

Relevant resources

Acceptance criteria

Todo

AbBaSaMo commented 3 weeks ago

I've updated the urdf to utilise casters as frictionless spheres. Included gazebo diff drive controller once again and added plugins to simulate IMU/GNSS in piksi.xacro obtained from https://medium.com/@bytesrobotics/a-review-of-the-ros2-urdf-gazebo-sensor-91e947c633d7.

Yet to test it but the only thing to really test is the IMU/GNSS component.

Jiawei-Liao commented 2 weeks ago

I think the correct map/world is lino_track.yaml under /maps and world_only.model under /worlds. (I think world_only.model is the default world setting since it's used for tb3 sim)

Image

The Gazebo doesn't show anything...

Image

When I tried to change world_only.model to lino_map.world, it give me this repeatedly until it crashed.

Image

Doesn't seem like an error? This is the final messages it printed before crashing/closing.

Image

I think using world_only.model is fine? ChatGPT says it's for environment (lighting, physics). Gazebo didn't show anything so I can't verify this.

Not sure if it's my PC but I can't get the robot to spawn. I'm using default tb3 and I also tried with a fresh clone of the repo. All of them can load up the map but can't spawn the robot. Does it work for someone else?

AbBaSaMo commented 2 weeks ago

@Jiawei-Liao when you do figure it out, rename the world to igvc and then whatever the extension is.

If we can't figure it out over time, we can always ask anthony

AbBaSaMo commented 2 weeks ago

For my own sub-tasks, I have the following to do:

After this it can be integrated with nav2

AbBaSaMo commented 2 weeks ago

idk if this fixed gazebo diff drive plugin or increasing the twist speed but it now works sudo apt install ros-humble-gazebo-ros-pkgs

AbBaSaMo commented 2 weeks ago

@Monash-Connected-Autonomous-Vehicle/esda-team

Quite janky when it moves. The "caster" wheels in the front have no friction so it shouuld be fine but it jumps around as shown in the video below.

Any ideas how to fix? I'll play around with inertia but all I can really do is update the mass until I find a sweet spot. Maybe position a single wheel at centre instead of 2.

https://github.com/user-attachments/assets/6e19b546-7d4b-4465-b5dd-2dc023d7f3a2

AbBaSaMo commented 2 weeks ago

Moved casters forward a bit and it removed the lurching. Also added a rear caster, not sure if needed, can test without and the mass is not 0 but close to it

Image

dylan-gonzalez commented 2 weeks ago

The caster wheels aren't spinning, so changing the position of them won't fix anything.

Where have you set the friction to zero? I've done something like this for mine, I don't see anything like that in your urdf. (mine is for Gazebo Fortress so I'm not sure if the syntax is the same for classic but it probably is)

AbBaSaMo commented 2 weeks ago

Oh, interesting. I used the same technique as josh newans in line 164 here where he basically set the mass to a very low number https://github.com/joshnewans/articubot_one/blob/main/description/robot_core.xacro

The intertial_cylinder element in another file is where intertial physics is defined. In our repo it is under esda_sim/description/util

Problem was that without moving the casters forward, it jumps forward when the vehicle stops so I had to '''balance''' it if that makes sense. Will try out your solution when I'm next in.

Did you basically re-create the urdf in gazebo using sdf syntax??

dylan-gonzalez commented 2 weeks ago

Did you basically re-create the urdf in gazebo using sdf syntax??

The only SDF I have is the world file. Everything else is URDF - I use <gazebo> tags.

Jiawei-Liao commented 1 week ago

I got the sim to run on the test world with tb3 bot. Small bot in such a big map. Movement works.

Image Image

There is some output to /cmd_vel topic. Looks right I think? but not sure why only 1 value from linear/angular is being used at a time

Image

Something that I noticed is that RVIZ laggs sometimes, resulting in the bot teleporting. But gazebo is smooth so I think it should be fine?

This is what I did to fix the issues I had before. install: sudo apt install ros-humble-rmw-cyclonedds-cpp

add to .bashrc: export RMW_IMPLEMENTATION=rmw_cyclonedds_cpp

go to: /opt/ros/humble/share/turtlebot3_navigation2/param

edit waffle.yaml (with sudo): change: robot_model_type: "differential" to: robot_model_type: "nav2_amcl::DifferentialMotionModel

then restart

This is the command used to run the sim: ros2 launch nav2_bringup esda_simulation_launch.py

To change the map, change the maps and worlds variables It is currently using nav2_params instead of esda_params. I don't think we need to change this for the demo since I don't think we need anything else (custom layers/plugin) The model is waffle but it can be changed with robot_name and robot_sdf variables.

dylan-gonzalez commented 1 week ago

but not sure why only 1 value from linear/angular is being used at a time

what do you mean? linear x is forward, angular z is yaw. Can your bot move sideways, or fly in the air? Otherwise these values make sense

Something that I noticed is that RVIZ laggs sometimes

Can you be specific? Do you mean one of the transforms is lagging/glitching?

Jiawei-Liao commented 1 week ago

what do you mean? linear x is forward, angular z is yaw. Can your bot move sideways, or fly in the air? Otherwise these values make sense

Ah I see, that makes sense. I thought it would use a combination of linear x, y, z. But I guess the bot is just moving in it's x direction, not the RVIZ axis.

Can you be specific? Do you mean one of the transforms is lagging/glitching?

https://github.com/user-attachments/assets/2c000e79-6d0b-49fa-bfe2-db73ecbde900

dylan-gonzalez commented 1 week ago

Yeah so that's something to do with your localisation. You're running AMCL right? So maybe look at some forums related to that, probs have to tune parameters or something.

But everything is working fine it seems in terms of gazebo and rviz

AbBaSaMo commented 1 week ago

@Jiawei-Liao did i miss something or is there a reason the test world does not have the ground with the grass and lanes?

Jiawei-Liao commented 1 week ago

@Jiawei-Liao did i miss something or is there a reason the test world does not have the ground with the grass and lanes?

oh is that not the map? The other worlds/maps are all the same as this. I'll ask anthony on this. Is he still on slack?

AbBaSaMo commented 1 week ago

It's the right map but it doesn't seem to have loaded properly. Idk if u remember but when Anthony was showcasing it, it had a grass plane with a track.

He's on slack but idk if he's in the team so might be best to shoot him an email.

AbBaSaMo commented 1 week ago
Jokua commented 4 days ago

Just writing a guide on how to get the simulator to run with the basic stuff from the Nav2 Tutorial after Jiawei's fixes:

(TBH the first 4 you don't need to do if you've already put it in bashrc, but just in case) source /opt/ros/humble/setup.bash export TURTLEBOT3_MODEL=waffle export GAZEBO_MODEL_PATH=$GAZEBO_MODEL_PATH:/opt/ros/humble/share/turtlebot3_gazebo/models export RMW_IMPLEMENTATION=rmw_cyclonedds_cpp ros2 launch nav2_bringup tb3_simulation_launch.py headless:=False

After it launches gazebo and rviz2, you have to set the 2D pose estimate of the robot. You can do that by guess-timating the spot by looking at the gazebo sim.

In order to set the goal pose, don't forget to click, hold and aim it in the direction you want it to face at the goal. You can click the goal but it's better if you set the goal pose facing where you want it to to show that it can compensate for that or something

AbBaSaMo commented 3 days ago

Need the following links in the URDF

Regarding the odom -> base_link tf, using robot_localisation

Add and configure the sensors

AbBaSaMo commented 2 days ago

Now slam tool box is working witht he URDF. I changed the ROS DOMAIN ID to 10 as i was getting transforms not defined in my urdf, and it seemed after some time the map was empty but then began publishing fine

image

Now on to the last step: Nav2 integration :D