summaryrefslogtreecommitdiff
path: root/1892/CH1/EX1.62
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1892/CH1/EX1.62
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 '1892/CH1/EX1.62')
-rwxr-xr-x1892/CH1/EX1.62/Example1_62.sce29
1 files changed, 29 insertions, 0 deletions
diff --git a/1892/CH1/EX1.62/Example1_62.sce b/1892/CH1/EX1.62/Example1_62.sce
new file mode 100755
index 000000000..3de99518c
--- /dev/null
+++ b/1892/CH1/EX1.62/Example1_62.sce
@@ -0,0 +1,29 @@
+// Example 1.62
+
+clc;clear;close;
+
+// Given data
+format('v',6)
+VL=400;//in volt
+f=50;//in Hz
+I=100;//i Ampere
+
+//calculations
+//D.O.L starter
+IL=I*sqrt(3);//in Ampere
+disp(IL,"(i) The line current for direct on line starting in Ampere : ");
+//In star delta starter
+Vph=VL/sqrt(3);//in Volt
+Iph=I/sqrt(3);//in Ampere
+disp(Iph,"(ii) Starting phase current for star delta starting in Ampere : ");
+disp(Iph,"(ii) Starting line current for star delta starting in Ampere : ");
+//Auto transformer starter
+K=70/100;//tapping of auto transformer
+Vph=VL/sqrt(3);//in Volt
+Vline=K*VL;//in volt
+Ist_phase=Vline*I/VL;//in Ampere
+disp(Ist_phase,"(iii) Starting phase current of motor in Ampere : ");
+Ist_line=Ist_phase*sqrt(3);//in Ampere
+disp(Ist_line,"(iii) Starting line current of motor in Ampere : ");
+IsupplyLine=K*Ist_line;//in Ampere
+disp(IsupplyLine,"(iii) Supply line current of motor in Ampere : ");