diff options
Diffstat (limited to '1319/CH2/EX2.19/2_19.sce')
-rw-r--r-- | 1319/CH2/EX2.19/2_19.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/1319/CH2/EX2.19/2_19.sce b/1319/CH2/EX2.19/2_19.sce new file mode 100644 index 000000000..b43a8bf2a --- /dev/null +++ b/1319/CH2/EX2.19/2_19.sce @@ -0,0 +1,17 @@ +// Star Equivalent of the delta circuit
+
+clc;
+clear;
+
+Z12=%i*5;
+Z23=%i*-5;
+Z31=%i*5;
+
+Z1=(Z12*Z31)/(Z12+Z23+Z31);
+Z2=(Z12*Z23)/(Z12+Z23+Z31);
+Z3=(Z23*Z31)/(Z12+Z23+Z31);
+
+printf('Star Equivalent :\n')
+disp('ohms',Z1,'Z1 =')
+disp('ohms',Z2,'Z2 =')
+disp('ohms',Z3,'Z3 =')
|