You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description of the bug
I am trying to make adjustments to the wavefield to test some things about the dynamics of my vessel. Adjustments I try to make are expanding the waves and reducing or increasing the size of the wavefield.
To turn off the waves I set the gain and amplitude to 0 in the sydney_regatta.sdf, see first image below. This results in the vessel no longer moving up and down as expected, but the visuals of the waves are not stopped.
I'm trying to change the size of the wavefield by adding a 'size' parameter to the sydney_regatta.sdf, see first image below. The design of this is based on how this is read by the Wavefield.cc file: {params["size"].vector3d_value().x(), params["size"].vector3d_value().y()}.
The adjusted values are also published correctly to the /vrx/wavefield/parameters topic as shown in the second image.
Reproduction
Modify sydney_regatta.sdf according to the image above.
Build, source and run the environment as you are used to:
colcon build --merge-install
source install/setup.bash
ros2 launch ros2 launch vrx_gz competition.launch.py
Check the changes:
- Use to component inspector in gazebo to check if the pose of the vessel is stationary in the z direction.
- Use the visuals in gazebo to check if the waves are not moving up and down anymore.
- Use the visuals in gazebo to check if the size of the entire wavefield changed accordingly.
System Configuration:
OS: PopOS 22.04
ROS Version: ROS2 Humble
Gazebo Version: Gazebo 7.6.0
Graphics Card: NVIDIA GeForce RTX 3050
Are you using VRX or VRX Classic? VRX
Screenshots
The text was updated successfully, but these errors were encountered:
I met similar problem as dscherrenburg described, that Wave Visual doesn't change with the parameter topic.
In the end I found out that the wave parameter only apply on wave visual once at start up, which are described in /vrx/vrx_gz/src/WaveVisual.cc, inside the member function WaveVisualPrivate::OnUpdate() and control by the paramsSet boolean.
So I tried these temporary solutions to change wave parameters of wave visual:
1.Let parametset become false when receive call back from parameter topic.
Or more violence but simpler way :
2. Change the default wave parameter values in Wavefield.cc and compile it again.
3. remove if (!this->paramsSet) { } block at line 304 of WaveVisual.cc, let params update every render cycle.
Wave visual will change its parameters through these ways.
But I found out another issue that the wave visual and the buoyancy apply on the wamv or buoy are not synchronized, there are tiny phase difference between them. This behavior will more significant when using larger wave amplitude (gain).
You can see the wamv doesn't move with wave visuals and "fly" out above the water line.
Same in buoy.
The wave parameter in this case is
Description of the bug
I am trying to make adjustments to the wavefield to test some things about the dynamics of my vessel. Adjustments I try to make are expanding the waves and reducing or increasing the size of the wavefield.
To turn off the waves I set the gain and amplitude to 0 in the sydney_regatta.sdf, see first image below. This results in the vessel no longer moving up and down as expected, but the visuals of the waves are not stopped.
I'm trying to change the size of the wavefield by adding a 'size' parameter to the sydney_regatta.sdf, see first image below. The design of this is based on how this is read by the Wavefield.cc file: {params["size"].vector3d_value().x(), params["size"].vector3d_value().y()}.
The adjusted values are also published correctly to the /vrx/wavefield/parameters topic as shown in the second image.
Reproduction
colcon build --merge-install
source install/setup.bash
ros2 launch ros2 launch vrx_gz competition.launch.py
- Use to component inspector in gazebo to check if the pose of the vessel is stationary in the z direction.
- Use the visuals in gazebo to check if the waves are not moving up and down anymore.
- Use the visuals in gazebo to check if the size of the entire wavefield changed accordingly.
System Configuration:
Screenshots
The text was updated successfully, but these errors were encountered: