From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 608/CH22/EX22.06/22_06.sce | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100755 608/CH22/EX22.06/22_06.sce (limited to '608/CH22/EX22.06') 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 -- cgit