diff options
Diffstat (limited to '3630/CH9/EX9.9')
-rw-r--r-- | 3630/CH9/EX9.9/Ex9_9.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/3630/CH9/EX9.9/Ex9_9.sce b/3630/CH9/EX9.9/Ex9_9.sce new file mode 100644 index 000000000..3878aeb2f --- /dev/null +++ b/3630/CH9/EX9.9/Ex9_9.sce @@ -0,0 +1,11 @@ +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
+disp('kohm',Zin/1000,"Zin=");//The answers vary due to round off error
+
+
|