Parts Numbering Scheme

  • Thread starter Roger Lascelles
  • Start date
R

Roger Lascelles

Guest
We are a small company, and we would like to implement a better components
numbering scheme.

The parts numbers need to go into our accounting system and on parts lists,
build lists and some schematics, so we don't want them to be too long.

Letters and digits are OK, but each must start with a letter. Sort order is
a consideration, because computers sort strings from left to right, often in
ascii or similar order. That means each character position has significance
and it might be best if every part had the same number of characters.

The storeroom must be organised by part number, so that we can work
systematically to find the correct shelf, container, then envelope or reel
inside the container. We need to store similar parts together in the
storeroom, to make the most of the containers. For example, SMD resistor
reels are stored together, with a number of different resistor values in
each container. This means SMD resistor part numbers must form a sequence,
though not necesarily in order of ohms value.

A part number should at least tell roughly what kind of part it is - SMD
resistor, leaded electrolytic, etc, so that means the leftmost characters
should carry that info so the sorted list is by part type.

Now, does anyone have a system like that ? Or a different or better system
?

thanks
Roger Lascelles
 
Since part numbers are entered by hand over and over again into computer
systems the key is to use the smallest number of digits possible.

Part numbers should not attempt to define the part.

I would suggest a 6 digit system xxyyyy where xx is a gross identifier and
yyyy is just a sequential number within the xx class.

Do not use dashes or periods in the part number - that is just one more
keystroke to enter.

Do not use Alpha characters - you should be able to enter the part number
with a key pad for speed.

--

Dan Hollands
1120 S Creek Dr
Webster NY 14580
585-872-2606
QuickScore@USSailing.net
www.QuickScoreRace.com


"Roger Lascelles" <despam_rklasl@aanet.com.au> wrote in message
news:1118145239.8b1b814e3565d3cb1c58b5148a78fa1f@teranews...
We are a small company, and we would like to implement a better components
numbering scheme.

The parts numbers need to go into our accounting system and on parts
lists,
build lists and some schematics, so we don't want them to be too long.

Letters and digits are OK, but each must start with a letter. Sort order
is
a consideration, because computers sort strings from left to right, often
in
ascii or similar order. That means each character position has
significance
and it might be best if every part had the same number of characters.

The storeroom must be organised by part number, so that we can work
systematically to find the correct shelf, container, then envelope or reel
inside the container. We need to store similar parts together in the
storeroom, to make the most of the containers. For example, SMD resistor
reels are stored together, with a number of different resistor values in
each container. This means SMD resistor part numbers must form a
sequence,
though not necesarily in order of ohms value.

A part number should at least tell roughly what kind of part it is - SMD
resistor, leaded electrolytic, etc, so that means the leftmost characters
should carry that info so the sorted list is by part type.

Now, does anyone have a system like that ? Or a different or better
system
?

thanks
Roger Lascelles
 
On Tue, 07 Jun 2005 13:02:00 GMT, "Dan Hollands" <dhollan3@rochester.rr.com>
wrote:

Since part numbers are entered by hand over and over again into computer
systems the key is to use the smallest number of digits possible.
There is also copy and paste.



Regards,

Boris Mohar

Got Knock? - see:
Viatrack Printed Circuit Designs (among other things) http://www.viatrack.ca

void _-void-_ in the obvious place
 
Roger...


35 years ago, when I started RST Engineering, I was restricted to numbers
below the integer-based storage of the computer we had at the time, so all
of our part numbers were 64,000 and below. (+32K to -32K and a subtraction
algorithm that made them all positive).

Fifteen years ago we switched to a 9-digit part number and what a pain in
the labonza to change them all over. However, change them we did and it has
made life one hell of a lot easier.

Send me a decent email address to jim at rstengineering point com and I'll
port you back our internal company document on how the system works.

Basically, it is a number like 1-2345-6789 where the first digit is a broad
class (mechanical component, electrical component, in house made component,
subassembly, etc.), the 23 is a very generic class of parts (and for
electrical parts, 90% of our stock, based on the first two digits of the
Electronic Engineers Master [EEM] numbering system), the 4 breaks it down to
through-hole, smd, etc., 5 breaks it down further (quarter watt, half watt),
the 6 is the tolerance, the 789 is the value in milliohms with the 7 being
the multiplier and the 89 being the significant digits.

The more I think about it, the better I like the first character being a
letter. That gives me 52 options PLUS the 20 some oddball categories of
@#%& non-alpha characters.

Drop me a line. You might also look at a program called Parts & Vendors
that handles this sort of numbering system quite well.

Jim



"Roger Lascelles" <despam_rklasl@aanet.com.au> wrote in message
news:1118145239.8b1b814e3565d3cb1c58b5148a78fa1f@teranews...
We are a small company, and we would like to implement a better components
numbering scheme.
 
"Dan Hollands" <dhollan3@rochester.rr.com> writes:

Since part numbers are entered by hand over and over again into computer
systems the key is to use the smallest number of digits possible.

Part numbers should not attempt to define the part.

I would suggest a 6 digit system xxyyyy where xx is a gross identifier and
yyyy is just a sequential number within the xx class.

Do not use dashes or periods in the part number - that is just one more
keystroke to enter.

Do not use Alpha characters - you should be able to enter the part number
with a key pad for speed.
Yes, that is just how I reasoned when setting up our database. Our
part numbers start from 1. Maybe I took the principle too far...

We are up to 1654 now. (BFS17W, a NPN RF transistor. Nice part.)

--

John Devereux
 
"Mark" <makolber@yahoo.com> wrote in message
news:1118156165.514339.259050@f14g2000cwb.googlegroups.com...
Boy, this is one of my pet peeves, the typical part number is
incomprehensible to a human. Untold hours are wasted looking up part
nmbers.

I suggest you invent a part number that is descriptive such as

RES 1000 Ohms 1/8 W 5% 0402 SMD Rev 3

This ASCII string can BE THE PART NUMBER.
You can add as many fields as needed to completely describe the part

Computers don't need random digits to be the part number. They work
fine with ASCII strings.

I would be glad to work with you to invent this new part number system.
We can both become millionaires.
Agree, if it is smart enough to know that

RES 1.0 KOhms 1/8 W 5% 0402 SMD Rev 3

can be the same part.
 
On Tue, 7 Jun 2005 09:25:52 -0700, the renowned "Richard Henry"
<rphenry@home.com> wrote:

"Mark" <makolber@yahoo.com> wrote in message
news:1118156165.514339.259050@f14g2000cwb.googlegroups.com...
Boy, this is one of my pet peeves, the typical part number is
incomprehensible to a human. Untold hours are wasted looking up part
nmbers.

I suggest you invent a part number that is descriptive such as

RES 1000 Ohms 1/8 W 5% 0402 SMD Rev 3

This ASCII string can BE THE PART NUMBER.
You can add as many fields as needed to completely describe the part

Computers don't need random digits to be the part number. They work
fine with ASCII strings.

I would be glad to work with you to invent this new part number system.
We can both become millionaires.

Agree, if it is smart enough to know that

RES 1.0 KOhms 1/8 W 5% 0402 SMD Rev 3

can be the same part.
Not to mention 1K0


Best regards,
Spehro Pefhany
--
"it's the network..." "The Journey is the reward"
speff@interlog.com Info for manufacturers: http://www.trexon.com
Embedded software/hardware/analog Info for designers: http://www.speff.com
 
Hello John,

We are up to 1654 now. (BFS17W, a NPN RF transistor. Nice part.)
And dirt cheap. My impression is that many young engineers don't even
know about these anymore.

Regards, Joerg

http://www.analogconsultants.com
 
Joerg <notthisjoergsch@removethispacbell.net> writes:

Hello John,

We are up to 1654 now. (BFS17W, a NPN RF transistor. Nice part.)

And dirt cheap. My impression is that many young engineers don't even
know about these anymore.
Yes, that too :) Good job too since I just ordered a reel of 3k. A
lifetime supply at the rate we will use them!

Well, it would be if not for RoHS (as discussed in another thread...)

--

John Devereux
 
Engineers often like descriptive part numbers because they rarely have to
enter the part number. They may enter it into a bill of material but thats
about it.

Manufacturing and Purchasing are the groups that spend lots of time entering
part numbers over and over again. When parts are ordered, received, removed
from stock etc. Long alph numeric part numbers not only take more time to
enter but the increase the probability of error.

It is important to get it right from the start. Changing the system later is
a major pain.

The ideal system uses sequential numeric part numbers linked to a
standardized description field. Then reports can be generated for the
engineers that have similar parts grouped together. This makes it easy to
know what parts are already stocked as new products are designed reducing
the rate at which new parts are brought into the system.

A standardized description field is designed for each type of component such

RES 5W 104 SM

It takes considerable work to standardize the descriptions and enforce their
use but is well worth the trouble.

Dan

--

Dan Hollands
1120 S Creek Dr
Webster NY 14580
585-872-2606
QuickScore@USSailing.net
www.QuickScoreRace.com


"Mark" <makolber@yahoo.com> wrote in message
news:1118156165.514339.259050@f14g2000cwb.googlegroups.com...
Boy, this is one of my pet peeves, the typical part number is
incomprehensible to a human. Untold hours are wasted looking up part
nmbers.

I suggest you invent a part number that is descriptive such as

RES 1000 Ohms 1/8 W 5% 0402 SMD Rev 3

This ASCII string can BE THE PART NUMBER.
You can add as many fields as needed to completely describe the part

Computers don't need random digits to be the part number. They work
fine with ASCII strings.

I would be glad to work with you to invent this new part number system.
We can both become millionaires.


Mark
 
Dan,

You have some good insights, but let me add a couple of things:

1) One of the biggest frustrations I've had as a working engineer at a small
handful of companies is that many systems used for entering BOMs are some
horribly old archaic pieces of software that have rotten search facilities. A
smart design would let something like "res 2.2k" find any of "resistor
002.2kilohms" "r 2.2 kohms" or "res 2.2kilohms", yet most have limited exact
search functionality much less the "fuzzier" search needed to find "r 2.2
kohms".

A standardized description field is designed for each type of component such
RES 5W 104 SM
The problem with this is that you can never foresee all the fields you need.
In a reasonably sophisticated manufacturing operator, something like 99% of
your resistors will be something like "10k, 5%, 0805," but there's always that
design where things like temperature coefficients, the build style (inductive,
non-inductive, etc.) matters. This gets even worse with capacitors.

I've had more than one product fail during production due to someone deciding
that they could go and substitute some "run of the mill" part for something
that had tight specs. To avoid that I sometimes will go to the effort to find
a part where the "standard" description (e.g., 2.2uF 0805 25V) specifically
_isn't_ "in the system!"

It takes considerable work to standardize the descriptions and enforce their
use but is well worth the trouble.
....and even with the exceptions to the rules, it's still a lot easier than not
making the attempt.

---Joel Kolstad
 
Dan Hollands wrote:
Engineers often like descriptive part numbers because they rarely have to
enter the part number. They may enter it into a bill of material but thats
about it.

Manufacturing and Purchasing are the groups that spend lots of time entering
part numbers over and over again. When parts are ordered, received, removed
from stock etc. Long alph numeric part numbers not only take more time to
enter but the increase the probability of error.

It is important to get it right from the start. Changing the system later is
a major pain.

The ideal system uses sequential numeric part numbers linked to a
standardized description field. Then reports can be generated for the
engineers that have similar parts grouped together. This makes it easy to
know what parts are already stocked as new products are designed reducing
the rate at which new parts are brought into the system.

A standardized description field is designed for each type of component such

RES 5W 104 SM

It takes considerable work to standardize the descriptions and enforce their
use but is well worth the trouble.
I agree completely. I once thought "engineer readable" part numbers were
necessary and designed my own system where the part number encoded all
sorts of useful (to me) info. This ended up being a nightmare because
the person assigning the numbers had to keep coming to me to check that
new numbers were correct. Then there were the situations that I hadn't
thought of, or were ambiguous. In the end, it generated more work for
many people and didn't really improve anything.

If I had to do it again, I would choose a system based on purchasing,
inventory, and manufacturing requirements. I'd probably use 2-3 digits
to define broad categories (mechanical, electrical, etc.), 1-2 digits
for special handling requirements (ESD sensitivity, fragility, humidity,
temperature, etc.) and 5-7 digits for a sequential stock number. I'd
also include a check digit or two to help detect entry errors
(particularly transpositions [430 instead of 403] and phone/calculator
substitutions [143 instead of 749]).

I would use numbers with fields separated by dashes. This is both human
(numeric keypad) and "barcode" friendly. Dashes reduce human error by
breaking numbers into subunits that fit into our short-term memory.
Numeric+dashes allows use of the less error prone (and shorter)
numeric-only barcodes. Check digits are also required to detect read
errors for most barcodes, so including it everywhere keeps the number
consistent.

Initial entry of the standardized descriptions should be
software-verified, or menu-driven. If the description doesn't match an
established template, it should require someone with management-level
authority to enter an override code. Systems that allow entry without
checks are a recipe for enormous headaches. I would also include a
free-form notes field to help cover those special cases nobody thought of.
--
Tim Hubberstey, P.Eng. . . . . . Hardware/Software Consulting Engineer
Marmot Engineering . . . . . . . VHDL, ASICs, FPGAs, embedded systems
Vancouver, BC, Canada . . . . . . . . . . . http://www.marmot-eng.com
 
Hello Dan,

Manufacturing and Purchasing are the groups that spend lots of time entering
part numbers over and over again. When parts are ordered, received, removed
from stock etc. Long alph numeric part numbers not only take more time to
enter but the increase the probability of error.
That is exactly the point. You need to be able to enter the PN with just
a numeric keypad. Also, in most companies it needs to be suitable for
bar coding.

It is important to get it right from the start. Changing the system later is
a major pain.
In a controlled environment you can't change them later. This can easily
require an ECO re-release of everything that had been designed to date.

Regards, Joerg

http://www.analogconsultants.com
 
Roger Lascelles wrote:

We are a small company, and we would like to implement a better components
numbering scheme.

The parts numbers need to go into our accounting system and on parts lists,
build lists and some schematics, so we don't want them to be too long.

Letters and digits are OK, but each must start with a letter. Sort order is
a consideration, because computers sort strings from left to right, often in
ascii or similar order. That means each character position has significance
and it might be best if every part had the same number of characters.

The storeroom must be organised by part number, so that we can work
systematically to find the correct shelf, container, then envelope or reel
inside the container. We need to store similar parts together in the
storeroom, to make the most of the containers. For example, SMD resistor
reels are stored together, with a number of different resistor values in
each container. This means SMD resistor part numbers must form a sequence,
though not necesarily in order of ohms value.

A part number should at least tell roughly what kind of part it is - SMD
resistor, leaded electrolytic, etc, so that means the leftmost characters
should carry that info so the sorted list is by part type.

Now, does anyone have a system like that ? Or a different or better system
?

thanks
Roger Lascelles

I would suggest that you don't even try to organize the storeroom by
part number. If you do then you will have to dedicate enough space for
each part to accept the maximum amount you may ever have on hand -- and
when you add one miserable little part you'll have to rearrage the whole
room.

Any 1/2-way decent stock tracking program will allow you to track the
locations of any parts, and to print pick tags with the location for the
stock boys. Use one, put the parts where it makes sense, ask the
computer when you're looking for parts and tell the computer when you
move them.

--
-------------------------------------------
Tim Wescott
Wescott Design Services
http://www.wescottdesign.com
 
Roger Lascelles wrote:
We are a small company, and we would like to implement a better components
numbering scheme.
Suggest you go find out about relational database design. Once you
understand how that works, most of what you want is easy to implement.
Look for keywords like 'Natural key' 'Surrogate key' '1 to many
relationship'.

--
Regards,

Adrian Jansen adrianjansen at internode dot on dot net
Design Engineer J & K Micro Systems
Microcomputer solutions for industrial control
Note reply address is invalid, convert address above to machine form.
 
Roger Lascelles wrote:

We are a small company, and we would like to implement a better components
numbering scheme.

The parts numbers need to go into our accounting system and on parts lists,
build lists and some schematics, so we don't want them to be too long.

Letters and digits are OK, but each must start with a letter. Sort order is
a consideration, because computers sort strings from left to right, often in
ascii or similar order. That means each character position has significance
and it might be best if every part had the same number of characters.

The storeroom must be organised by part number, so that we can work
systematically to find the correct shelf, container, then envelope or reel
inside the container. We need to store similar parts together in the
storeroom, to make the most of the containers. For example, SMD resistor
reels are stored together, with a number of different resistor values in
each container. This means SMD resistor part numbers must form a sequence,
though not necesarily in order of ohms value.

A part number should at least tell roughly what kind of part it is - SMD
resistor, leaded electrolytic, etc, so that means the leftmost characters
should carry that info so the sorted list is by part type.

Now, does anyone have a system like that ? Or a different or better system
?
One of the best I've ever seen, used at a pro-audio manufacturer used a typical
prefix and and sub-descriptor suffix follwed by the value.

E.g. RA100K0 was a 2% 1/4W metal film resistor with value = 100k
RA033R0 was 33R in the same type. Note the use of 4 numerals in both cases to
make listings consistent.

RB, RC etc were different families of resistor type / tolerance / rating etc.

Simialar method used for other parts.

I like the text string idea too. But you need to keep to the format - and that
may be rather less easy to remember.

Graham
 
Hello Joel,

I tend to waffle about it, but usually I figure that arbitrary numbers are
best -- it doesn't seem there are that many cases where "100k" is the _only_
piece of information you'd like to know about the part, in which case you have
to look up the rest anyway.
At the end it all boils down to how well the search functions on a parts
database work. For example if you start a new design you may want to
know what kinds of SOT23 transistors are already released and which ones
are used on current products. This ensures that you get to share in all
the candy that Purchasing receives from the vendors before Christams ;-)

Regards, Joerg

http://www.analogconsultants.com
 
In article <3gm04kFd54lbU1@individual.net>,
Richard Henry <rphenry@home.com> wrote:
[...]
RES 1.0 KOhms 1/8 W 5% 0402 SMD Rev 3
It goes without saying that there is no need to set up a part number for
5% SMT resistors since the 1% don't cost enough more to matter to anyone
but the truly mass producers.

I think "R 1K0 0402" would be all you'd really need. "1K0" vs "1K00"
would indicate 5% vs 1%. Except for some special cases, the package size
gives the power rating.

--
--
kensmith@rahul.net forging knowledge
 
"Adrian Jansen" <adrian@qq.vv.net> wrote in message
news:42a61edc$1@duster.adelaide.on.net...
Roger Lascelles wrote:
We are a small company, and we would like to implement a better
components
numbering scheme.

Suggest you go find out about relational database design. Once you
understand how that works, most of what you want is easy to implement.
Look for keywords like 'Natural key' 'Surrogate key' '1 to many
relationship'.

--
Regards,

Adrian Jansen
If we had a part number to shelf & bin lookup on a database, we could keep
all the resistor 1% SMD reels on the same shelf, even though the part
numbers are simple numbers. That means our storeroom makes best use of
space. We could print out some sheets which let us do the lookup without a
computer in the storeroom. We could even keep our existing parts numbers,
warts and all and reorganise the parts on the shelf.

I'm just not sure that we are big enough to keep it all going. The stock
guy is has got a lot of other work to do already and is a hands-on sort of
guy. There are just 6 or 7 of workers. If I want a part, I wander into the
storeroom and get it.

I think the choices are becoming clear :

- reassign all part numbers in a way which lets us store parts by number.
This system is simple, but storage by part number can still come unstuck as
time changes parts and storage.

- use a database to connect part numbers to shelf locations. This is the
ultimate system but requires discipline.


Thanks, Adrian.
 
On Tue, 7 Jun 2005 21:53:57 +1000, "Roger Lascelles"
<despam_rklasl@aanet.com.au> wrote:

We are a small company, and we would like to implement a better components
numbering scheme.

The parts numbers need to go into our accounting system and on parts lists,
build lists and some schematics, so we don't want them to be too long.

Letters and digits are OK, but each must start with a letter. Sort order is
a consideration, because computers sort strings from left to right, often in
ascii or similar order. That means each character position has significance
and it might be best if every part had the same number of characters.

The storeroom must be organised by part number, so that we can work
systematically to find the correct shelf, container, then envelope or reel
inside the container. We need to store similar parts together in the
storeroom, to make the most of the containers. For example, SMD resistor
reels are stored together, with a number of different resistor values in
each container. This means SMD resistor part numbers must form a sequence,
though not necesarily in order of ohms value.

A part number should at least tell roughly what kind of part it is - SMD
resistor, leaded electrolytic, etc, so that means the leftmost characters
should carry that info so the sorted list is by part type.

Now, does anyone have a system like that ? Or a different or better system
?

thanks
Roger Lascelles
When I managed a parts inventory for electronic components one of the
major wish list items was for some sort of picure of the actual
components. Many items would have a similar description and value and
multiple returns would result from a search thus requiring some
intelligence in order to determine which particular item was the one
required for an application. A picture based inventory system would
have solved most problems but may incur some additional work and
equipment to implement.

One piece of commercial software might be a contender for such an
inventory system http://dynamiccontrolsoftware.com/
 

Welcome to EDABoard.com

Sponsor

Back
Top