summaryrefslogtreecommitdiff
path: root/3630/CH9/EX9.16/Ex9_16.sce
diff options
context:
space:
mode:
Diffstat (limited to '3630/CH9/EX9.16/Ex9_16.sce')
-rw-r--r--3630/CH9/EX9.16/Ex9_16.sce12
1 files changed, 12 insertions, 0 deletions
diff --git a/3630/CH9/EX9.16/Ex9_16.sce b/3630/CH9/EX9.16/Ex9_16.sce
new file mode 100644
index 000000000..c2ec4e84c
--- /dev/null
+++ b/3630/CH9/EX9.16/Ex9_16.sce
@@ -0,0 +1,12 @@
+clc;
+R1=10000; //Ohm
+R2=2200; //Ohm
+Zbase1=5000; //Ohm
+Req=(R1*R2)/(R1+R2); //Ohm
+Zin1=(Req*Zbase1)/(Req+Zbase1);//Ohm
+Zbase2=45000; //ohm
+Zin2=(Req*Zbase2)/(Req+Zbase2);//Ohm
+disp('kohm',Zin1/1000,"Zin=");//The answers vary due to round off error
+disp('kohm',Zin2/1000,"Zin=");//The answers vary due to round off error
+
+