summaryrefslogtreecommitdiff
path: root/1748/CH2/EX2.1/Exa2_1.sce
blob: 070b0f941f7c3cb0dca33207c5a953fe08199c2f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
//Exa 2.1
clc;
clear;
close;
//Given data : 
P=2;//no. of poles
f=60;//in Hz
N=3460;//in rpm
Ns=120*f/P;//in rpm
Slip=Ns-N;//in rpm
PercentageSlip=(Ns-N)*100/Ns;//in %
disp(Ns,"Synchronous speed in rpm : ");
disp(round(PercentageSlip),"Percentage Slip : ");