summaryrefslogtreecommitdiff
path: root/2345/CH6/EX6.5/Ex6_5.sce
blob: 647dd26220a8dd7c6115b968dfc0188c1b7314a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//Finding loss and frequency
//Example 6.5(pg 214)
clc
clear
P=4//no of poles
N=1600// Speed in rpm
f=P*N/120//Frequency of magnetic reversal
V=5400//volume
d=7.5//density
m=(V*d)/1000//Mass of armature in kg
L=1.76//Loss in W/kg
Cl=L*m//Core loss in Watts
printf('Thus Frequency of magnetic reversal is %3.2f c/s',f)
printf('\n and Core loss is %3.2f Watts',Cl)