Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Q&A

Thévenins Theorem for Transistor Circuit

+3
−0

I am calculating the base current of transistor Q1. To simplify the circuit equations, I applied the Thévenin's theorem twice and converted V1, R1 and R2 into Vth and Rth, as shown in the image.


\[ \begin{align} V_{th} &= V_1 \times (R_2/R_1+R_2) && & R_{th} &= R_1 \parallel R_2 \\[1 em] V_{th2} &= V_{th} \times (R_7/R_{th}+R_3+R_7) && & R_{th2} &= R_7 \parallel (R_{th}+R_3) \\[1 em] V_a &= \pu{0.7V} + I_b \times (h_{fe}+1) \times \pu{200\Omega} \end{align} \]

Circuit Diagram

I can accurately calculate $I_b = \pu{2.09 mA}$ by using Kirchoff's voltage law, but I'm getting an inaccurate value ($I_b= \pu{213 \mu A}$) by applying Thévenin's theorem.

Is Thévenin's theorem being applied incorrectly for the circuit?

History
Why does this post require moderator attention?
You might want to add some details to your flag.
Why should this post be closed?

0 comment threads

2 answers

+4
−0

Is the Thevenin's Theorem being applied incorrectly for the circuit ?

It's being applied inaccurately. The final Thevenin voltage should be 2.782 volts (rather than your calculated value of 2.61 volts). I calculate the Thevenin resistance to be 759 ohms (near enough to yours so that it doesn't matter). Double check with simulator for the Thevenin voltage: -

Image alt text

I can accurately calculate the Ib = 2.09mA by using Kirchoff's Voltage law

Then you have miscalculated because, if 2 mA were flowing into the base then, due to hFE (~40), the emitter current would be about 80 mA and, if 80 mA were flowing through the emitter resistor of 200 Ω then there would be an emitter voltage of 16 volts and clearly, that has to be nonsense.

History
Why does this post require moderator attention?
You might want to add some details to your flag.

1 comment thread

So The equation for Ib goes like 2.782 - 759xIb - 0.7 - (40+1) x 200x Ib = 0 Ib = 232 uA This Ib ... (1 comment)
+2
−0

It seems like you did the reduction to a Thevenin source mostly right, although the final value is a bit off.

The original circuit we want to reduce to a Thevenin source is:

First we reduce V1, R1, and R2 to a Thevenin source. The resistance is R1//R2, and the voltage is the V1 voltage applied to the R1-R2 voltage divider. That yeilds:

R1 and R3 can be trivially combined:

The ultimate Thevenin resistance is now R1//R4, and the voltage is the new V1 applied to the R1-R4 divider:

Now we put this back into the original circuit:

R5 appears on the base times gain+1. (200 Ω)⋅41 = 8.2 kΩ. Let's say the B-E junction drops 700 mV. The base current is then:

    IB = (2.78 V - 700 mV)/(759 Ω + 8.2 kΩ) = 232 µA

Note that reflecting the emitter resistance to the base by multiplying times gain+1 is only valid if there is enough collector voltage so that the stated gain is being realized. It should be obvious from inspection that the 10 Ω resistor is well low enough, but I'll do the calculation anyway to show what to do in cases it's not so obvious.

We determined that the base current is 232 µA. With a gain of 40, the collector current is therefore 9.3 mA. R6 therefore drops (9.3 mA)(10 Ω) = 93 mV. The drop across R5 is (200 Ω)(232 µA)⋅41 = 1.9 V, which is also the emitter voltage. The C-E voltage is therefore (24 V)-(93 mV)-(1.9 V) = 22 V. Silicon BJTs usually exhibit their stated gain after about 1 V C-E, so this is clearly plenty for the gain assumption to be valid.

NOTE: Calculating the currents with this accuracy is absurd for any case other than a homework assignment. In the real world, you generally only know the minimum gain the transistor is guaranteed to have. The upper limit is usually not specified, or is several times the minimum. I've personally measured transistors with 10x the minimum guaranteed gain. Circuits need to work over the whole range of valid gain a transistor might have. It's usually good to make sure the circuit works from the minimum gain to infinite gain.

History
Why does this post require moderator attention?
You might want to add some details to your flag.

1 comment thread

@#36396 Thanks for detailed explaination . I understood it . (1 comment)

Sign up to answer this question »