Skip to content

is "dv = current_vel+last_vel " should be modified to "dv = current_vel - last_vel" in industrial_robot_simulator package file #277

@dbdxnuliba

Description

@dbdxnuliba

in industrial_robot_simulator package the pyhon file

 def accelerate(self, last_pt, current_pt, current_time, delta_time):
        intermediate_pt = JointTrajectoryPoint()
        #rospy.logerr("debug : enter accelerate() in industrial_robot_simulator")

        for last_joint, current_joint, last_vel, current_vel in zip(last_pt.positions, current_pt.positions, last_pt.velocities, current_pt.velocities):
            delta_x = current_joint-last_joint
            dv = current_vel+last_vel

is "dv = current_vel+last_vel " should be modified to "dv = current_vel - last_vel"

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions