summaryrefslogtreecommitdiff
path: root/1523/CH6/EX6.19/ex6_19.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1523/CH6/EX6.19/ex6_19.sce
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '1523/CH6/EX6.19/ex6_19.sce')
-rwxr-xr-x1523/CH6/EX6.19/ex6_19.sce30
1 files changed, 30 insertions, 0 deletions
diff --git a/1523/CH6/EX6.19/ex6_19.sce b/1523/CH6/EX6.19/ex6_19.sce
new file mode 100755
index 000000000..db1489ef9
--- /dev/null
+++ b/1523/CH6/EX6.19/ex6_19.sce
@@ -0,0 +1,30 @@
+// Three-Phase Circuits :example 6.19 :(pg 6.21 & 6.22)
+VL=400;
+IL=5;
+Vph=(VL/sqrt(3));
+Zph=(Vph/IL);
+Iph=(IL/sqrt(3));
+Vph1=(Iph*Zph);
+printf("\nVl=400 V \nIL=5 A");
+//For a star-connected load
+printf("\nVph=VL/sqrt(3) =%.2f V",Vph);
+printf("\nIph=IL=%.f A",IL);
+printf("\nZph=Rph=Vph/Iph =%.2f Ohm",Zph);
+//For a delta connected load
+printf("\nIL=5 A \nRph=%.2f Ohm",Zph);
+printf("\nIph=IL/sqrt(3)=%.2f A",Iph);
+printf("\nVph=Iph*Rph \n=%.2f V",Vph1);
+//Voltage needed is 1/3 of the star value
+
+
+
+
+
+
+
+
+
+
+
+
+