summaryrefslogtreecommitdiff
path: root/1109/CH13/EX13.11/13_11.sce
diff options
context:
space:
mode:
Diffstat (limited to '1109/CH13/EX13.11/13_11.sce')
-rwxr-xr-x1109/CH13/EX13.11/13_11.sce10
1 files changed, 10 insertions, 0 deletions
diff --git a/1109/CH13/EX13.11/13_11.sce b/1109/CH13/EX13.11/13_11.sce
new file mode 100755
index 000000000..a3bbf83b0
--- /dev/null
+++ b/1109/CH13/EX13.11/13_11.sce
@@ -0,0 +1,10 @@
+clear;
+clc;
+V1=10;I1=2.5;I2a=-0.5; //values with terminals 3-4 short-circuited
+V2=V1;I2b=1.5; //values with terminals 1-2 short circuited
+Yb=-I2a/V1;
+Ya=(I1/V1)-Yb;
+Yc=(I2b/V2)-Yb;
+printf("-Ya = %f mho\n",Ya);
+printf("-Yb = %f mhp\n",Yb);
+printf("-Yc = %f mho",Yc);