diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /2444/CH4/EX4.20 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '2444/CH4/EX4.20')
-rwxr-xr-x | 2444/CH4/EX4.20/ex4_20.sce | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/2444/CH4/EX4.20/ex4_20.sce b/2444/CH4/EX4.20/ex4_20.sce new file mode 100755 index 000000000..e9ce92cd4 --- /dev/null +++ b/2444/CH4/EX4.20/ex4_20.sce @@ -0,0 +1,21 @@ +// Exa 4.20
+clc;
+clear;
+close;
+format('v',6)
+// Given data
+R_S = 200;// in ohm
+R_L = 1200;// in ohm
+h_ib = 24;// in ohm
+h_rb = 4*10^-4;// unit less
+h_fb = -0.98;// unit less
+h_ob = 0.6;// in µA/V
+h_ob = h_ob * 10^-6;// in A/V
+Ai = -h_fb/(1+(h_ob*R_L));// unit less
+disp(Ai,"The current gain is");
+Ri = h_ib + (h_rb*Ai*R_L);// in ohm
+disp(Ri,"The input impedance in ohm is");
+Av = round((Ai*R_L)/Ri);// unit less
+disp(Av,"The Voltage gain is");
+Ais = (Ai*R_S)/(Ri+R_S);// unit less
+disp(Ais,"The overall current gain is");
|