summaryrefslogtreecommitdiff
path: root/833/CH11/EX11.2/Ex11_2.txt
blob: 78eda61ae9f2d5e02b71f0095df28e4e82fe2718 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//Caption: Find (a)Speed of motor (b)%Slip
//Exa:11.2
clc;
clear;
close;
p=6//Number of poles
f_s=50//Stator frequency(in c/s)
f_r=2//Rotor frequency(in c/s)
n_s=(120*f_s)/p
n=(f_r*120)/p
s=n_s-n
disp(s,'(a)Speed of motor(in r.p.m)=')
S=(n/n_s)*100
disp(S,'(b)%Slip(in %)=')