summaryrefslogtreecommitdiff
path: root/608/CH22/EX22.01/22_01.sce
blob: 916af97c20a907851211449e7513e1474e9b6b90 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
//Problem 22.01: A three-phase two-pole induction motor is connected to a 50 Hz supply. Determine the synchronous speed of the motor in rev/min.

//initializing the variables:
f = 50; // in Hz
p = 2/2; // number of pairs of poles

//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
nsrpm = ns*60

printf("\n\n Result \n\n")
printf("\nsynchronous speed of the motor is %.0f rev/min", nsrpm)