summaryrefslogtreecommitdiff
path: root/2444/CH4/EX4.22
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /2444/CH4/EX4.22
downloadScilab-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.22')
-rwxr-xr-x2444/CH4/EX4.22/ex4_22.sce17
1 files changed, 17 insertions, 0 deletions
diff --git a/2444/CH4/EX4.22/ex4_22.sce b/2444/CH4/EX4.22/ex4_22.sce
new file mode 100755
index 000000000..f2eb4ba4e
--- /dev/null
+++ b/2444/CH4/EX4.22/ex4_22.sce
@@ -0,0 +1,17 @@
+// Exa 4.22
+clc;
+clear;
+close;
+format('v',6)
+// Given data
+R_D = 5;// in k ohm
+R_D = R_D * 10^3;// in ohm
+r_d = 35;// in k ohm
+r_d = r_d * 10^3;// in ohm
+miu = 50;// amplifier factor
+g_m = miu/r_d;// in S
+Av = -g_m*( (r_d*R_D)/(r_d+R_D) );
+disp(Av,"The voltage gain is");
+Rout = (R_D*r_d)/(R_D+r_d);// in ohm
+Rout= Rout*10^-3;// in k ohm
+disp(Rout,"The output resistance in k ohm is");