summaryrefslogtreecommitdiff
path: root/608/CH22/EX22.06
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /608/CH22/EX22.06
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 '608/CH22/EX22.06')
-rwxr-xr-x608/CH22/EX22.06/22_06.sce13
1 files changed, 13 insertions, 0 deletions
diff --git a/608/CH22/EX22.06/22_06.sce b/608/CH22/EX22.06/22_06.sce
new file mode 100755
index 000000000..c91a882bf
--- /dev/null
+++ b/608/CH22/EX22.06/22_06.sce
@@ -0,0 +1,13 @@
+//Problem 22.06: A three-phase induction motor is supplied from a 50 Hz supply and runs at 1200 rev/min when the slip is 4%. Determine the synchronous speed.
+
+//initializing the variables:
+f = 50; // in Hz
+nr = 1200/60; // in rev/min
+s = 0.04; // slip
+
+//calculation:
+//the synchronous speed.
+ns = nr/(1 - s)
+nsrpm = ns*60
+printf("\n\n Result \n\n")
+printf("\n synchronous speed is %.0f rev/min",nsrpm) \ No newline at end of file