summaryrefslogtreecommitdiff
path: root/1892/CH1/EX1.64/Example1_64.sce
blob: 88da9d18543059f23574003348cf2f49917f2e81 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Example  1.64

clc;clear;close;

// Given data
format('v',6);
P=4;//no. of poles
f1=50;//in Hz
f2=1.5;//in Hz

//calculations
S=f2/f1;//slip
disp(S*100,"Slip in % : ");
Ns=120*f1/P;//in rpm
N=(1-S)*Ns;//in rpm
disp(N,"Running speed of motor in rpm : ");