summaryrefslogtreecommitdiff
path: root/833/CH11/EX11.3/Ex11_3.txt
blob: 95fbb97c57b9480e3f76e07cd2a0363d1de6dcf8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//Caption: Calculate (a)Number of poles (b)Slip (c)Slip for full load torque if total resistance in rotor circuit is doubled
//Exa:11.3
clc;
clear;
close;
n=970//Speed of induction motor(in r.p.m)
f=50//Frequency(in hertz)
n_s=1000//Synchronous speed(in r.p.m)
p=(f*120)/n_s
disp(p,'(a)Number of poles=')
s=((n_s-n)/n_s)*100
disp(s,'(b)Slip(in%)=')
S=((s/100)*2)*100
disp(S,'(c)Required slip(in%)=')