Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Lazarus

Pages: 1 [2] 3 4
16
Electronic connection / Bipolar Junction Transistors "BJT"
« on: January 02, 2015, 09:15:05 PM »
This is a work in progress, and as such is subject to change, so i will be editing this post as i think of more detail and better ways of presenting it, but if i'm gonna do this then i've got to start somewhere, so for now here goes,

How it Works:

as illustrated in the figure below of an NPN transistor, if we apply a small amount of base current it will cause a much larger amount of collector current to flow, this is how a transistor is able to amplify a signal, and the ratio of base to collector current is called the current gain, symbolized by the greek letter beta "β", the current gain is also sometimes called "Hfe",

in the example below, lets assume that we have a base current of 1 milliamp, and a collector current of 100 milliamps, the ratio would be 100:1 so the current gain of this transistor would be 100, so in this case β = 100, here's the formula:

β = Ic / Ib

where:
β = current gain
Ic = collector current
Ib = base current

ok now lets apply 2 milliamps base current, with a current gain of 100 that would yield a collector current of 200 milliamps,

so now it can be seen how it is able to amplify a signal, because that a small amount of base current causes a much larger amount of collector current to flow, just a 1 milliamp increase in base current caused a 100 milliamp increase in collector current,



β = Ic/Ib

Vcc = Collector Supply Voltage
Vbb = Base Bias Supply Voltage
Ib = Base Current
Ic = Collector Current
Ie = Emitter Current
Vbe = Base Emitter Voltage, or Voltage measured across the Base and Emitter
Vce = Collector Emitter Voltage, or Voltage measured across the Collector and Emitter
Vcb = Collector Base Voltage, or Voltage measured across the Collector and Base
Rb = Base Bias Resistor, used to limit the base current
RL = Load Resistor, used to limit the collector current
β = Current Gain, or HFE

17
This thread is for discussing the topics raised in the: Digital 101, Logic Gates thread, i am keeping that thread locked to keep it neat and orderly,

:)

18
Electronic connection / Re: Digital 101: Logic Gates
« on: December 16, 2014, 05:38:47 PM »
The Exclusive NOR Gate,

The Exclusive NOR Gate is simply an Exclusive OR Gate with its output inverted, so its output goes low when either of its its inputs are high, but not both,


19
Electronic connection / Re: Digital 101: Logic Gates
« on: December 16, 2014, 05:35:07 PM »
The Exclusive OR Gate,

The Exclusive OR Gate output goes high when either of its inputs are high, but not both,


20
Electronic connection / Re: Digital 101: Logic Gates
« on: December 16, 2014, 05:30:18 PM »
The NOR Gate,

The NOR Gate is simply an OR Gate with its output inverted, so its output goes low when either or both its inputs are high,


21
Electronic connection / Re: Digital 101: Logic Gates
« on: December 16, 2014, 05:26:29 PM »
The OR Gate,

The OR Gates output goes high when either or both its inputs are high,


22
Electronic connection / Re: Digital 101: Logic Gates
« on: December 16, 2014, 05:20:43 PM »
The NAND Gate,

the NAND Gate is simply an AND Gate with its output inverted, so its output goes low when both its inputs are high,


23
Electronic connection / Re: Digital 101: Logic Gates
« on: December 16, 2014, 05:11:54 PM »
The AND Gate,

The AND gate output goes high when both its inputs are high,   


24
Electronic connection / Re: Digital 101: Logic Gates
« on: December 16, 2014, 05:05:51 PM »
The NOT Gate,

also called an Inverter, or Inverting Buffer,

The NOT Gate does exactly the same thing as the Buffer except its output is inverted,


25
Electronic connection / Digital 101: Logic Gates
« on: December 16, 2014, 04:59:23 PM »
The Buffer,

A buffer is often used in digital logic to condition a signal, and also to buffer a signal up to the level needed to drive the next stage, basically you can think of it as simply a hopped up amplifier who's output is either all the way ON or completely OFF,



Discussion area for this thread is found here: http://gokarters.com/smf/index.php?topic=2439.0

26
This thread is for discussing the topics raised in the: Digital 101, digital numbering systems, thread, i am keeping that thread locked to keep it neat and orderly,

:)

27
Electronic connection / Re: Digital 101, digital numbering systems,
« on: December 16, 2014, 12:22:15 PM »
To further illustrate the difference between Binary and BCD,

the truth chart on the left shows the BCD encoding that the channel selector sends to the PLL chip on a cobra 29 LTD,

the truth chart on the right shows the Binary encoding that the channel selector sends to the adder chips in a typical EPT 3600-xxx chassis,



Notice that the one on the left uses perfect in order 1 and 1/2 digit BCD encoding with no skips beginning with 00 at channel 40 and ending with 39 at channel 39, and the mess with the skipped RC channels, and the tangled up mess between channel 22 and 26 is all handled by the PLL chips internal ROM,

:)

28
Electronic connection / Re: Digital 101, digital numbering systems,
« on: December 14, 2014, 04:17:47 PM »
BCD, or Binary Coded Decimal:

in BCD, 4 binary digits or bits represent a single decimal digit, and 4 more binary digits or bits are required for the next decimal digit, and 4 more for the next and so on, it is almost like hexadecimal except the binary values higher than 9 representing A through F for any given digit are either ignored, or considered illegal or garbage, or skipped entirely, because in decimal a single digit does not go any higher than 9, here is a short example of 2 digit BCD counting from 00 to 20,

0000,0001 = 01
0000,0010 = 02
0000,0011 = 03
0000,0100 = 04
0000,0101 = 05
0000,0110 = 06
0000,0111 = 07
0000,1000 = 08
0000,1001 = 09
0001,0000 = 10
0001,0001 = 11
0001,0010 = 12
0001,0011 = 13
0001,0100 = 14
0001,0101 = 15
0001,0110 = 16
0001,0111 = 17
0001,1000 = 18
0001,1001 = 19
0010,0000 = 20


now to give some contrast here, the channel selector in a cobra 29 LTD Classic uses 1 and 1/2 digit BCD for its channel code going into the PLL chip, whereas in a typical EPT 3600-xxx chassis like the galaxy 33, and practically every other radio using an MC145106 PLL chip, its channel selector uses 8 bit binary for its channel code, and the two are not interchangeable, BCD and Binary are two very different numbering systems,

29
Electronic connection / Re: Digital 101, digital numbering systems,
« on: December 14, 2014, 04:16:13 PM »
Hexadecimal:

in hexadecimal, each digit has 16 possible values, beginning with 0 as the lowest possible value, and ending with F as the highest possible value, each alphanumeric digit is used to represent 4 bits of binary code, this is called base 16, or Hexadecimal, or simply Hex, here is an example using 2 digit hexadecimal to represent 8 bit binary, counting from 00 to 20 in hex, 

0000,0000 = 00
0000,0001 = 01
0000,0010 = 02
0000,0011 = 03
0000,0100 = 04
0000,0101 = 05
0000,0110 = 06
0000,0111 = 07
0000,1000 = 08
0000,1001 = 09
0000,1010 = 0A
0000,1011 = 0B
0000,1100 = 0C
0000,1101 = 0D
0000,1110 = 0E
0000,1111 = 0F
0001,0000 = 10
0001,0001 = 11
0001,0010 = 12
0001,0011 = 13
0001,0100 = 14
0001,0101 = 15
0001,0110 = 16
0001,0111 = 17
0001,1000 = 18
0001,1001 = 19
0001,1010 = 1A
0001,1011 = 1B
0001,1100 = 1C
0001,1101 = 1D
0001,1110 = 1E
0001,1111 = 1F
0010,0000 = 20

At this point I think it prudent to note that, 1 hexadecimal digit is commonly called a nibble, and pairs of 2 hexadecimal digits are commonly called a Byte,

up next: BCD, or Binary Coded Decimal,

30
Electronic connection / Re: Digital 101, digital numbering systems,
« on: December 14, 2014, 04:14:33 PM »
Binary:

in Binary, each digit has only two possible values, 0 and 1, the first digit goes from 0 to 1, before the next digit advances, Binary can have any number of digits although it is usually limited to 8, and these digits are often called bits, this is called base 2, or binary, here is an example using 4 digits, or 4 bit binary,

0000
0001
0010
0011
0100
0101
0110
0111
1000
1001
1010
1011
1100
1101
1110
1111

At this point I think it prudent to mention that, a 1 is usually equal in voltage to the power supply voltage supplied to the system, and a 0 is equal to ground potential or 0v, in most CB Radios the PLL system is powered by +8Vdc, therefore in such a system, a 1 = 8v, and a 0 = 0v,

up next: Hexadecimal,

Pages: 1 [2] 3 4