For your pull downs I would suggest 10k that is a common value and won't draw much current away from the LEDs (1.26mA). Many small signal transistors have an hFe around 100 so if you want your E-C current to be about 60mA then you should select the resistor that will sink about 0.6mA from the base. To allow for some margin(and to make easy calculations). I'll design the resistor to sink 1mA.
In the lowest sink case the voltage at your emitter will be 12.6V, assuming a Vbe drop of 0.7V(fairly standard) the put the base voltage at 11.9V base resistor is pulled to ground we want it to sink only 1mA so using ohm's law 11.9V/1mA= 11.9k resistor.
The nearest standard value is 10k. If we use that in our calculations the base current at 12.6V supply is 1.19mA, with 14.5V it goes up to 1.38mA which is fine.
So I recommend you use 10k resistors all around.
For the transistor I recommend you use the ubiquious 2N3906 PNP Transistor, its cheap and available from a bunch of manufacturers, The currents your manipulating are well within the limits of the transistor.
Since the transistor is being used as a switch the power dissipated can be calculated by multiplying the current time the Vce saturation voltage. Punching the numbers comes out to 30mW of power dissipated which if multiply time the junction to ambient thermal resistance(200C/W) gives a temperature rise of 6C above ambient which is not a big deal.
So to recap use
10k 1/4W resistors all around
2N3906 PNP transistor
hth,
Jorge Garcia
Jorge,
I ended up going with a BXC69 PNP Transistor, 20V, and a 2.5K resistor. But as you said, a 10K would have worked too.
Thank you for the help!
Cabe
Sounds good Cabe,
I generally don't give a 300% power margin so I see where you are concerned. I have a small disagreement with your assertion that you will be dissipation 14.5V*60mA in the transistor. If that were the case than the colector of your PNP transistor should be to ground and you would basically be burning power for no reason. I used the saturation value Vce value to calculate the power dissipated across the transistor.
The calculation should be as follows:
14.5*60ma=0.87W Total Power
-0.5V*60mA=0.06W Dissipated in the transistor
The remaining 0.81W should be consumed by the load which are the LEDs in your case. Takes some measurements of your circuit and see what you get, the idea behind using the transistor as a switch is to disspate a small amount of power across the transistor so that most of the available power can make it to the LED.
I'm glad your circuit is working, and nothing of what I mentioned here would affect your current circuit, but I thought it would be good to mention.
What do you think, does my argument makes sense?
I would just use a cmos quad not gate IC, or program a simple pic10f for simple switching: http://uk.farnell.com/microchip/pic10f220t-i-mc/8bit-flash-mcu-smd-10f220-dfn-6/dp/1332174, leave transistors for analogue tasks (unless you really must operate from those supply rails).
In the case if you dont have a regultade 3,3 or 5 V i have used PIC12HV615 sometimes - just a resistor and then you have the power to the MCU without any expensive LDO regulators - oki, not the best solution when it comes to save energy, but careful setting of the shunt resistor makes it oki in lots of applications like fancontroll (i have used it as a smart temperature controlling buch converter regulator with the PWM module). Few and cheap components - workes well! The 10F204 is also a nice component that io have build a PWM generator with a two button controllinterface with - it is good stuff and keeps down the lenght of the BOM.
In the case if you dont have a regultade 3,3 or 5 V i have used PIC12HV615 sometimes - just a resistor and then you have the power to the MCU without any expensive LDO regulators - oki, not the best solution when it comes to save energy, but careful setting of the shunt resistor makes it oki in lots of applications like fancontroll (i have used it as a smart temperature controlling buch converter regulator with the PWM module). Few and cheap components - workes well! The 10F204 is also a nice component that io have build a PWM generator with a two button controllinterface with - it is good stuff and keeps down the lenght of the BOM.
Bengt,
Thank you for the suggestion. I would have prefered to go the MCU route, but the PCB area was less that 1.5cm x 1.5cm. I could only place components on one side.
I posted the final design I used. I did the whole circuit with 2 mosfets, as opposed to a microcontroller and power handling components. The main issue I had was with the extremely low forward voltage of the LEDs. With the new design, I was able to drop the voltage on the line to almost zero.
Cabe