diff options
Diffstat (limited to '3630/CH9/EX9.11/Ex9_11.sce')
-rw-r--r-- | 3630/CH9/EX9.11/Ex9_11.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/3630/CH9/EX9.11/Ex9_11.sce b/3630/CH9/EX9.11/Ex9_11.sce new file mode 100644 index 000000000..35396e07d --- /dev/null +++ b/3630/CH9/EX9.11/Ex9_11.sce @@ -0,0 +1,13 @@ +clc;
+re=19.8; //Ohm
+Hfe=200;
+Zbase=Hfe*re; //Ohm
+R5=15000; //Ohm
+R6=2500; //Ohm
+Req=(R5*R6)/(R5+R6);//Ohm
+Zin=(Req*Zbase)/(Req+Zbase); //Ohm
+R3=5000; //Ohm
+rc=(R3*Zin)/(R3+Zin); //Ohm
+Av=rc/re;
+disp(' ',Av,"Av=");//The answers vary due to round off error
+
|