Hello, all.
Goal: Measuring/filtering cyclic loads with a force torque sensor by averaging the measurement of the same cycle.
I am measuring loads with ATI's Nano 17 F/T Sensor. The load that I am measuring is cyclic. I want to average 200 readings of the same cycle to get rid of random noise. The sensor measures six voltage signals and eventually outputs measurement of six components (please see the sample vi). I have another sensor (cycle counter) sending signals to my computer of the beginning of each cycle. I came up with two ideas to achieve this but both met techical problems.
1) Have cycle counter indicate/output "1" if it is the beginning of a cycle. Add a column of "0s" in the loads measurement array, replace the 0 with 1 whenever the cycle indicator triggers. Postprocess the data to average the readings.
Problem: the output load measurement array is already "done" after the DAQ reading, appending/combining another array to it wouldn't indicate the correct timing.
2) Have both cycle counter and the measurement append some timing information (elapse time, system time... accurate to mili/micro seconds) and then postprocess to get the cycle average.
Problem: I don't know how to append accurate time indicator into the load measurement array.
Any suggestions will be gratefully appreciated.