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.04/22_04.sce | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100755 608/CH22/EX22.04/22_04.sce (limited to '608/CH22/EX22.04') diff --git a/608/CH22/EX22.04/22_04.sce b/608/CH22/EX22.04/22_04.sce new file mode 100755 index 000000000..c9bc45ad9 --- /dev/null +++ b/608/CH22/EX22.04/22_04.sce @@ -0,0 +1,16 @@ +//Problem 22.04: The stator of a 3-phase, 4-pole induction motor is connected to a 50 Hz supply. The rotor runs at 1455 rev/min at full load. Determine (a) the synchronous speed and (b) the slip at full load. + +//initializing the variables: +p = 4/2; // number of pairs of poles +f = 50; // in Hz +nr = 1455/60; // in rev/sec + +//calculation: +//ns is the synchronous speed, f is the frequency in hertz of the supply to the stator and p is the number of pairs of poles. +ns = f/p +//The slip, s +s = ((ns - nr)/ns)*100 // in percent + +printf("\n\n Result \n\n") +printf("\n(a) synchronous speed is %.0f rev/sec",ns) +printf("\n(b) slip is %.0f percent",s) \ No newline at end of file -- cgit