Saturday 29 March 2014

Is there any reasoning behind component names?



All the components I own have strange names, like a transistor called 2N2222 and a motor driver called L293D. When you see these kind of things writen down do you instantly know what it means or do you have to google it every time?


How much information is hidden in these codes or are they totally random?



Answer



The prefix often has a specific meaning, but the numbering following the prefix often doesn't.


In general:



1N... = diodes
2N... = transistors


A... (2 letters + 3 digits) = germanium transistor, e.g. AF117
B... (idem) = silicon transistor, e.g BC847




For diodes like 1N400x the last digit is kind of counter to indicate the diodes belong to the same series:



1N4001: 50V
1N4002: 100V
1N4003: 200V
1N4004: 400V
1N4005: 600V
1N4006: 800V
1N4007: 1000V




The 1N4148 is a typical switching diode. For it's SMT counterpart manufacturers use the same number (4148), but with a different prefix: Fairchild calls it an LL4148, Rectron an MM4148.
On the other hand, the SMT version of the BC547 transistor is the BC847, so there they keep the prefix, but change the number. You try and find the logic in it.


IC manufacturers often release new devices with their own prefix, like "LT" for Linear Technology, or "LM" for National Semiconductor, so sometimes it refers directly to the name, but often it doesn't. When other manufacturers make compatible parts, however, they often stick to the same part number, so that prefix doesn't always tell you who the manufacturer is. A MAX809, for instance, is made by (at least) Maxim, On Semiconductor and NXP. "TIP" originally meant "Texas Instruments Power" but you'll also find a TIP110 transistor with Fairchild.


Like Matt says sometimes the number following the prefix refers to the device's function. He mentions the MAX232 as an EIA232 driver, and guess what the MAX485 is. FTDI's FT232R is also an EIA232 bridge. But those are really exceptions.


Sometimes the last digit refers to the number of opamps, for instance, in a device.



LF411 = single opamp
LF412 = dual LF411




I once asked a question about other than manufacturer's prefixes in IC type numbers, but there seems to be little systematical in it.


No comments:

Post a Comment

arduino - Can I use TI's cc2541 BLE as micro controller to perform operations/ processing instead of ATmega328P AU to save cost?

I am using arduino pro mini (which contains Atmega328p AU ) along with cc2541(HM-10) to process and transfer data over BLE to smartphone. I...