summaryrefslogtreecommitdiff
path: root/991/CH6/EX6.6/Example6_6.sce
blob: 0941bf3c7c79783546eb3ff6df0f1cbf011aeb0b (plain)
1
2
3
4
5
6
7
8
9
10
11
//Example 6.6.
clc
format(6)
beta=100
IC=40
disp("beta = 100 = IC / IB")
IB=IC/beta
disp(IB,"Therefore,    IB(mA) = ")
disp("IE = IB + IC")
IE=IB+IC
disp(IE,"IE(mA) = ")