blob: 9010857e4d6e949224b000a39c93fe19aaaba81a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
//determine the Q point for the emitter bias circuit
clear;
clc;
//soltion
//given
B=100; //dc beta
Rc=5*10^3;//ohm //resistor connected to collector
Rb=10*10^3;//ohm //resistor connected to base
Re=10*10^3;//ohm //resistor connected to emitter
Vcc=12;//V //Voltage supply across the collector resistor
Vee=15;//V //supply at emitter
Ie=Vee/Re;
Ic=Ie;
Vce=Vcc-Ic*Rc;
printf("The Q point is (%.1f V, %.1f mA)",Vce,Ic*1000);
|