summaryrefslogtreecommitdiff
path: root/431/CH4/EX4.26
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /431/CH4/EX4.26
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 '431/CH4/EX4.26')
-rwxr-xr-x431/CH4/EX4.26/EX4_26.sce20
-rwxr-xr-x431/CH4/EX4.26/resultEX4_26.txt5
2 files changed, 25 insertions, 0 deletions
diff --git a/431/CH4/EX4.26/EX4_26.sce b/431/CH4/EX4.26/EX4_26.sce
new file mode 100755
index 000000000..e301f5ec9
--- /dev/null
+++ b/431/CH4/EX4.26/EX4_26.sce
@@ -0,0 +1,20 @@
+//Calculate starting line current and starting torque
+//Chapter 4
+//Example 4.26
+//page 330
+clear;
+clc;
+disp("Example 4.26")
+V=400; //supply voltage in volts
+f=50; //frequency in hertz
+Id=75; //current taken when delta-connected in amperes
+printf("current taken when delta-connected=%dA",Id);
+Is=Id/3; //current taken when star-connected in amperes
+printf("\ncurrent taken when star-connected=%dA",Is);
+//Tfl be the full load torque
+//r=Ts/Tfl
+r=1.5;
+//since voltage becomes (1/sqrt(3)) when star connected
+//torque is directly proportional to square of voltage
+printf("\nStarting torque with winding star connected=%f times of Tfl",(r/3));
+
diff --git a/431/CH4/EX4.26/resultEX4_26.txt b/431/CH4/EX4.26/resultEX4_26.txt
new file mode 100755
index 000000000..35b30d0c5
--- /dev/null
+++ b/431/CH4/EX4.26/resultEX4_26.txt
@@ -0,0 +1,5 @@
+
+ Example 4.25
+current taken when delta-connected=75A
+current taken when star-connected=25A
+Starting torque with winding star connected=0.500000 times of Tfl \ No newline at end of file