summaryrefslogtreecommitdiff
path: root/1820/CH3/EX3.3/Example3_3.sce
blob: 1d5daec8b1678ed35106a1cfd4d97d2856812cb2 (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
// ELECTRIC POWER TRANSMISSION SYSTEM ENGINEERING ANALYSIS AND DESIGN
// TURAN GONEN
// CRC PRESS
// SECOND EDITION

// CHAPTER : 3 : FUNDAMENTAL CONCEPTS

// EXAMPLE : 3.3 :
clear ; clc ; close ; // Clear the work space and console

// GIVEN DATA
// For case (c)
I_normal = 1000 ; // Normal full load current in Ampere

// CALCULATIONS
// For case (a) equation is (1.5pu)*I_rated = (2 pu)*I_normal
// THEREFORE
// I_rated = (1.333pu)*I_normal ; // Rated current in terms of per unit value of the normal load current

// For case (b) 
Mvar = (1.333)^2 ; // Increase in Mvar rating in per units

// For case (c)
I_rated = (1.333)*I_normal ; // Rated current value

// DISPLAY RESULTS
disp("EXAMPLE : 3.3 : SOLUTION :-") ;
printf("\n (a) Rated current , I_rated = (1.333 pu)*I_normal \n") ;
printf("\n (b) Mvar rating increase = %.2f pu \n",Mvar) ;
printf("\n (c) Rated current value , I_rated = %.f A \n",I_rated) ;