summaryrefslogtreecommitdiff
path: root/3871/CH6/EX6.27/Ex6_27.sce
blob: 82d173d3cd47a12229ecb5dc0ed20ba4672b1f28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
//===========================================================================
//chapter 6 example 27

clc;
clear all;

//variable declaration
KT	= 198;	//turn ratio
e	=0;	//ratio error
Is	= 5;	// secondary current in A
P	= 5;	//load in VA
Rs	= 0.02;	//resistance in Ω
KN	= 200;	//KN=KC since e=0
KC	= 200;

//calculations
V2	= P/Is;	//secondary voltage in V
Es	= V2+(Is*Rs);	//secondary induced emf in V
Ep	= Es/KT;		//primary induced emf 
Ie	= (KC-KT)*Is;	//eddy current loss in A
IL	= Ep*Ie;		//iron loss in W

//result
mprintf("iron loss = %3.3f mW",(IL*10^3));