summaryrefslogtreecommitdiff
path: root/135/CH11/EX11.11/EX11.sce
blob: 4f2ba041a7e5b12ddded36fd191a9dc63c2578f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Example 11.11: (a) Amplifier type
//                (b) Input resistance, Output resistance, Transfer ratio
clc, clear
r_pi=1e3; // in ohms
gm=0.1; // in mho

disp("Part (a)");
disp("It ia a CB-CE cascade, configuration. It has low input and high output impedance and hence corresponds to a current     amplifier.");

disp("Part (b)");
// From low frequency equivalent circuit in Fig. 11.40
btao=gm*r_pi;
Rin=r_pi/(1+btao); // Input resistance in ohms
Rout=%inf; // Output resistance (= ro of Q2)
Ai=gm*gm*Rin*3e3*1e3/(3e3+1e3); // Transfer ratio
disp(Rin,"Input resistance (Ω​) =");
disp(Rout,"Output resistance =");
disp(Ai,"Transfer ratio =");