summaryrefslogtreecommitdiff
path: root/3802/CH11/EX11.2/Ex11_2.sce
blob: 12f2b680bbef9da447b59f497f8ed42d38d5fc66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//Book Name:Fundamentals of Electrical Engineering
//Author:Rajendra Prasad
//Publisher: PHI Learning Private Limited
//Edition:Third ,2014

//Ex11_2.sce

clc;
clear;
t=0.5;        //pole pitch
f=50;
vmp=162;
fd=100e3;
vm=vmp*1e3/(60*60);
pd=fd*vm;
vs=2*t*f;
s=(vs-vm)/vs;
pcu=s*fd*vs;
printf("\n  The developed power by the motor=%d kw \n",pd/1000)
printf("\n  Secondary copper loss=%d kw \n",pcu/1000)