Home› Programming
Discussion
Back to discussions page
abeachy_HG24
Posts: 79 Handy
Recording max force value |
271 views
|
Answered | |
/ Most recent by matthewd92
in Programming
|
7 comments |

in Programming
I am using the FT 300 on a UR 10 and we are trying to perform a quality check on our product. The UR will bias the part that needs to be checked all the way in one direction to ensure that we are actuating the part fully. Then the UR will bring the part back and while it is doing this I would like to record the max force that the FT sees during the actuation to a variable and then use an if-statement to decide if the part is good or bad. Right now I am actuating the part and after it reaches the waypoint where the part is fully actuated, I then will record the force value to a variable to compare in an if statement. I think this method works just fine but if possible I would like to use the max force during the actuation, is this possible?
thread
if measureMax == True:
If Fx > previousMax:
maxValue = Fx
end
previousMax = Fx
end
else
maxValue = 0
previousMax=0
end
sync()
end thread
Let me know if that does what you're looking for. Depending on how much your signal is fluctuating you might want to do some signal filtering using time averaging.
http://blog.robotiq.com/measuring-insertion-force?_ga=2.167629758.1210040562.1495193479-73641461.1495193474-556149795
Integration Coach
robotiq.com
[email protected]