diff options
Diffstat (limited to '3630/CH10/EX10.5/Ex10_5.sce')
-rw-r--r-- | 3630/CH10/EX10.5/Ex10_5.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/3630/CH10/EX10.5/Ex10_5.sce b/3630/CH10/EX10.5/Ex10_5.sce new file mode 100644 index 000000000..a3815403e --- /dev/null +++ b/3630/CH10/EX10.5/Ex10_5.sce @@ -0,0 +1,11 @@ +clc;
+re=8.1; //Ohm
+rE=1430; //ohm
+hfc=220;
+Zbase=hfc*(re+rE); //Ohm
+R1=25000; //Ohm
+R2=33000; //Ohm
+Req=(R1*R2)/(R1+R2); //Ohm
+Zin=(Zbase*Req)/(Zbase+Req);//Ohm
+disp('kohm',Zin/1000,"Zin=");//The answers vary due to round off error
+
|