Skip to content
Snippets Groups Projects
Commit 8118490e authored by Ventsislav Dokusanski's avatar Ventsislav Dokusanski
Browse files

Remove unneccessary code lines

parent 715f69df
No related branches found
No related tags found
No related merge requests found
......@@ -16,7 +16,7 @@ def generate_launch_description():
'forward_kinematics_simulations.rviz'
)
velocity_launch_arg = DeclareLaunchArgument('velocity', default_value = '0.015') # constant: 0.015 acceleration: 0.005
velocity_launch_arg = DeclareLaunchArgument('velocity', default_value = '0.015')
velocity = LaunchConfiguration('velocity')
acceleration_launch_arg = DeclareLaunchArgument('acceleration', default_value = '0.0004')
......
......@@ -48,17 +48,11 @@ class Reference_Node_1DoF(Node):
if self.phi < self.slope:
self.phi = self.phi + self.velocity
self.velocity = self.velocity + self.acceleration
self.get_logger().info('Acceleration phase')
self.get_logger().info('%f' % self.velocity)
elif self.phi > 1 - self.slope:
self.phi = self.phi + self.velocity
self.velocity = self.velocity - self.decelaration
self.get_logger().info('Decelaration phase')
self.get_logger().info('%f' % self.velocity)
else:
self.phi = self.phi + self.velocity
self.get_logger().info('Constant speed phase')
self.get_logger().info('%f' % self.velocity)
#setting back to 0
if self.phi>self.phi_end:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment