summaryrefslogtreecommitdiff
path: root/3556/CH13/EX13.12/Ex13_12.sce
blob: 02f75ca8bbd602ad6e70b999d682f6d2f824b694 (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
clc
// Fundamental of Electric Circuit 
// Charles K. Alexander and  Matthew N.O Sadiku  
// Mc Graw Hill of New York 
// 5th Edition 

// Part 1     :  AC Circuits 
// Chapter 13 :  Magnetically Couple Circuits
// Example 13 - 12

clear; clc; close; 
//
// Given data
ST  = 42000.0000;
n   =     5.0000;
VL2 =   240.0000; 
//
// Calculatioons Line Voltage and Current on The Primary Side 
IL2 = ST/(sqrt(3)*VL2);
IL1 = (n/(sqrt(3)))*IL2;
VL1 = (sqrt(3)/n)*VL2;
// Calculations KVA Rating 
KVA = ST/3
// Display the result
disp("Example 13-12 Solution : ");
disp("a. Type Transformer Connection is Y - Delta ")
disp("b. Line Voltage and Current on The Primary Side  : ");
printf(" \n IL1       = Line Current on The Primary Side      = %.3f A",IL1)
printf(" \n VL1       = Voltage Current on The Primary Side   = %.3f Voltage",VL1)
disp("c. KVA Rating   : ");
printf(" \n KVA       = KVA Rating Each TRansformer           = %.3f KVA",KVA/1000)