summaryrefslogtreecommitdiff
path: root/1109/CH13/EX13.19/13_19.sce
diff options
context:
space:
mode:
Diffstat (limited to '1109/CH13/EX13.19/13_19.sce')
-rwxr-xr-x1109/CH13/EX13.19/13_19.sce8
1 files changed, 8 insertions, 0 deletions
diff --git a/1109/CH13/EX13.19/13_19.sce b/1109/CH13/EX13.19/13_19.sce
new file mode 100755
index 000000000..ed9631005
--- /dev/null
+++ b/1109/CH13/EX13.19/13_19.sce
@@ -0,0 +1,8 @@
+clear;
+clc;
+R1=3;R2=2;R3=2;
+A=(R3+R3+R2+R2)/(R1+R3+R1+R2);
+Zi1=sqrt((R2*(R1+R3)+(R1*R2))/A);
+printf("Zi1 = %f ohms\n",round(Zi1*10)/10);
+Zi2=R2+(R3*(R1+Zi1)/(R3+R1+Zi1));
+printf(" Zi2 = %f ohms\n",round(Zi2*10)/10);