blob: 533bfaac90006970692e6cdabfceae6338960225 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
//Caption: Find (a)Number of poles and (b)% slip
//Exa:11.1
clc;
clear;
close;
f=50//Frequency(in hertz)
n=960//Speed of induction motor on full load(in r.p.m)
n_s=1000//Synchronous speed(in r.p.m)
p=(f*120)/(n_s)
disp(p,'(a)Number of poles is=')
s=n_s-n
S=(s/n_s)*100
disp(S,'(b)%Slip is(in%)=')
|