From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 2375/CH9/EX9.4/ex9_4.sce | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100755 2375/CH9/EX9.4/ex9_4.sce (limited to '2375/CH9/EX9.4') 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. -- cgit