summaryrefslogtreecommitdiff
path: root/2375/CH9/EX9.4
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /2375/CH9/EX9.4
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 '2375/CH9/EX9.4')
-rwxr-xr-x2375/CH9/EX9.4/ex9_4.sce18
1 files changed, 18 insertions, 0 deletions
diff --git a/2375/CH9/EX9.4/ex9_4.sce b/2375/CH9/EX9.4/ex9_4.sce
new file mode 100755
index 000000000..7aaca61cf
--- /dev/null
+++ b/2375/CH9/EX9.4/ex9_4.sce
@@ -0,0 +1,18 @@
+// Exa 9.4
+clc;
+clear;
+close;
+// Given data
+Rs = 1;// in k ohm
+Rs = Rs * 10^3;// in ohm
+omega_z = 10;// in rad/sec
+omega_p = 100;// in rad/sec
+//omega_z = 1/(Rs*Cs);
+Cs = 1/(Rs*omega_z);// in F
+disp(Cs*10^6,"The value of Cs in µF is");
+//omega_p = (g_m + (1/Rs))/Cs;
+g_m = omega_p*Cs-1/Rs;// in A/V
+g_m= g_m*10^3;// in mA/V
+disp(g_m,"The value of g_m in mA/V is")
+
+// Note: The unit of g_m in the book is wrong. It will be in mA/V not in nA/V.