summaryrefslogtreecommitdiff
path: root/132/CH7/EX7.6/Example7_6.sce
blob: f5aea829f4e3f968fc157db3ae3199e39a799df3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//Example 7.6
//Program to Calculate
//(a)Minimum Collector Current
//(b)Maximum Collector Current
clear;
clc ;
close ;
//Given Circuit Data
Vcc=20; //V
Rc=2*10^3; //Ohms
Rb=200*10^3; //Ohms
Beeta1=50;
Beeta2=200;
//Calculation CASE-1: Minimum Collector Current
Ibmin=Vcc/(Rb+Beeta1*Rc);
Icmin=Beeta1*Ibmin;
//Calculation CASE-2: Maximum Collector Current
Ibmax=Vcc/(Rb+Beeta2*Rc);
Icmax=Beeta2*Ibmax;
//Displaying The Results in Command Window
printf("\n\t The Minimum Collector Current Ic(min) = %f mA .",Icmin/10^(-3));
printf("\n\t The Maximum Collector Current Ic(max) = %f mA .",Icmax/10^(-3));