5

In a post to the diyaudio forums, www.diyaudio.com/forums 67232, I see terminology that are likely to be measurements of resistance: "0r1", "1r0", and "10r". I am thinking the "r" there means a decimal point. If that is true, then is this some standard used in the electronics industry, and if so, what is the name of the standard and/or URL's to descriptions of that standard?

In case that forum ever disappears, below I quote that post's content.

now we know what you are trying to measure to, tell us what the probe to probe resistance reading and also the probe vias winding to probe resistance reading is. That way we and you can compare the extra resistance as the likely winding resistance. <=0r1 indicates a big fat secondary capable of many amperes. 1r0 indicates a big fat primary capable of many hundreds of VA. 10r starts to show current limitations.

bgoodr
  • 239
  • 2
  • 8
  • 2
    Never seen a formal standard defining it, but it is a common convention indicating both decimal point, and resistance measurement (as opposed to 0v1 for voltage. I haven't seen 0a1 for current, that I can recall!) –  Mar 16 '13 at 13:02
  • 2
    @OlinLathrop in that post, resistance isn't mentioned. So there might be some discussion on if it's a duplicate. I do feel the same though. –  Mar 16 '13 at 13:51
  • 1
    http://electronics.stackexchange.com/questions/28053/what-does-3v3-or-1v8-mean is a pseudo-duplicate of my question. However, it is only "pseudo" duplicated because how in the heck would one avoid asking this question and not have it rendered as duplicate? My question could have been avoided had I been able to search using extended regular expressions, such as \b[0-9]+R[0-9]+\b which might have matched one of the answers in http://electronics.stackexchange.com/questions/28053/what-does-3v3-or-1v8-mean. Note that the "R" is not in the title, but only "3V3" – bgoodr Mar 17 '13 at 03:12

1 Answers1

6

You are correct about it standing for a decimal point. So 2R2 means 2.2Ω, 0R5 means 0.5Ω, and so on. Also as pjc50 notes, it's common to see e.g. 47R used for 47Ω since using an Omega symbol is more difficult and time consuming (e.g it's a special symbol you can't just shift + something for on most keyboards)
Similarly, it is common to see 2K2 for 2.2KΩ, or 3M3 for 3.3MΩ

As far as I know, these conventions started back in the days when paper schematics used to get copied a lot (e.g. photocopied, faxed, etc) and the reproduction quality was not very good. This meant that small decimal points could easily get lost or even "appear" if a speck of dust was on the sheet at the time of copying.
So to make things clearer and these type of errors less likely, this type of notation was used.

Here are a couple of example clips from old schematics:

One where they should have used the notation discussed (60's guitar amp schematic - is that .02uF or 2F? ;-) ):

Example 1

Another bad one:

Example 1A

Two clips from a better schematic from the mid 70's with the same convention used for capacitance also, plus nanofarads are used (in earlier schematics 22nF would be presented as 0.022uF):

Example 2

Example 3

Schematics found at Dr.Tube and Vox Amps. It's interesting to browse through the schematics and note the differences in notation over time.

Oli Glaser
  • 54,990
  • 3
  • 76
  • 147
  • 2
    Another factor: typewriters have and ASCII have 'R' but not 'Ω', and it's still a pain to type in something that's not an electronics package. – pjc50 Mar 16 '13 at 13:41
  • Yep, good point there for the Omega symbol. I'll add that in. – Oli Glaser Mar 16 '13 at 13:44
  • @pjc50 (extended) ASCII has Ω. It's character 234: http://www.asciitable.com/. But yes, (most) typewriters don't have Ω. –  Mar 16 '13 at 13:48
  • 1
    the \$\Omega\$ symbol is also sometimes replaced by a capital `E` to indicate ohms. Not sure where the E came from though. – jippie Mar 16 '13 at 14:26
  • 1
    Which character you actually get for code point 234 depends on what code page the system is using - on Windows that's 'ê'. – pjc50 Mar 16 '13 at 14:38
  • That's probably because the _extended_ ASCII isn't used all the time. A shame. (By the way, I'm getting a Û on Alt-234 on Windows.) –  Mar 16 '13 at 14:47
  • ASCII ends at 127, once it's extended it's no longer ASCII. The term *extended ASCII* is completely meaningless, because there are umpteen different character encodings that extend ASCII. – starblue Mar 16 '13 at 15:51
  • As for the one true character encoding that everybody should use nowadays: Unicode has Ω U+03A9 GREEK CAPITAL LETTER OMEGA, which is preferred over U+2126 OHM SIGN. – starblue Mar 16 '13 at 15:53