summaryrefslogtreecommitdiff
path: root/1092/CH14/EX14.10/Example14_10.sce
blob: 69f2bafee1d58cd75c6fe695609bb206eca95f28 (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
25
26
27
28
29
30
31
32
33
34
// Electric Machinery and Transformers
// Irving L kosow 
// Prentice Hall of India
// 2nd editiom

// Chapter 14: TRANSFORMERS
// Example 14-10

clear; clc; close; // Clear the work space and console.

// Given data(from Example 14-9)
kVA = 1 ; // kVA rating of the transformer
V_1 = 220 ; // Primary voltage in volt
V_2 = 110 ; // Secondary voltage in volt
f_o = 400 ; // Frequency in Hz
f_f = 60 ; // Frequency in Hz for which the transformer is to be used
P_orig = 10 ; // Original iron losses of the transformer in W

// Calculations
// consider only ratio of frequencies for calculating B  
B = f_o / f_f ; // flux density

P_iron = (P_orig)*(B^2); // Iron losses in W

// Display the results
disp("Example 14-10 Solution : ");

printf(" \n Since E = k*f*B_m and the same primary voltage is applied to the ");
printf(" \n transformer at reduced frequency, the final flux density B_mf ");
printf(" \n increased significantly above its original maximum permissible ");
printf(" \n value B_mo to :\n B_mf = B_mo * (f_o/f_f) = %.2fB_mo \n ",B );

printf(" \n Since the iron losses vary approximately as the square of the flux density :");
printf(" \n P_iron = %d W ",P_iron );