diff options
Diffstat (limited to '3630/CH9/EX9.10')
-rw-r--r-- | 3630/CH9/EX9.10/Ex9_10.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/3630/CH9/EX9.10/Ex9_10.sce b/3630/CH9/EX9.10/Ex9_10.sce new file mode 100644 index 000000000..66561dca2 --- /dev/null +++ b/3630/CH9/EX9.10/Ex9_10.sce @@ -0,0 +1,16 @@ +clc;
+re=22.3; //Ohm
+Hfe=200;
+Zbase=Hfe*re; //Ohm
+R1=18000; //Ohm
+R2=4700; //Ohm
+Req=(R1*R2)/(R1+R2); //Ohm
+Zin=(Req*Zbase)/(Req+Zbase); //Ohm
+rc=1150; //Ohm
+RL=5000; //Ohm
+Ai=Hfe*((Zin*rc)/(Zbase*RL));
+disp(' ',Ai,"Ai=");//The answers vary due to round off error
+
+
+
+
|