Number of parts left on a reel?

Status
Not open for further replies.

Interesting problem and a math solution would be cool. However I suspect that one needs to know how many parts per unit length are stored on the strip as well as the thickness of the component/strip, inside/outside diameter, etc.

I've never seen pro parts reels in operation but I would think that such a automated process would have to have a component counter that keeps track and is reset with each loading of a new reel and alarms or stops when reel is empty

Lefty
 
There cannot be a simple solution because as the hub gets bigger the relationship must become nearly linear. Imagine a real with a 10 inch hub and 1 inch of components. Compare that to a 1 inch hub with 10 inch of components.

Mike.
 
Aside from machine counting of deposited components shouldn't there be some kind of tick marks on the tape?
 
It appears we can change approach,like this

we know how many jobs are completed after mounting a reel. we also know how many componenets are used per job.
we can start a counter at the time of loading a reel - for each component- acquire the data of jobs done from then till now use a formula and the balance is known-- Ofcourse there may be some dropouts or missed components- we can always give allowance for that.
 
You could easily setup a program to figure this out.

The program would calculate the carrier on the reel and use that to figure out how many parts remained.

The crude program (sort of). This is off the top of my head and could quite possibly have an error two. It is always a crapshoot when on posts untested code; even more so with this sort of thing.

Code:
// The inputs would be:
// ED: Empty hub diameter
// FD: Full hub diameter (not needed but interesting to know)
// PD: Partial diameter.
// DD: Delta diameter, diameter change per turn (carrier thickness)
// PPL: Part count per unit length of carrier

WD = ED;     // working diameter = empty diameter
LEN = 0;     // total length of carrier

while (WD < PD)  // ***
{
   LEN = LEN + pi*WD;  // circumference = pi * diameter
   WD = WD +  DD;      // adjust circumference 
}

return (WD * PPL)   // answer

*** This may end up being better expressed as (WD < (PD + (.5 DD)) or similar.

Measure the tape the same way every time. maybe measure out from the start of the tape on the inside hub.

As a check the program should be able to calculate the number of parts on a full reel. +- 1 turn

This all depends on the reels being uniformly tensioned.
 
If you have a decent scale, weigh a full reel and an empty one. The difference in weight is equal to the components. Check with one component to insure you have adequate resolution.
 
Status
Not open for further replies.
Cookies are required to use this site. You must accept them to continue using the site. Learn more…