summaryrefslogtreecommitdiff
path: root/3574/CH3/EX3.8/EX3_8.sce
blob: 49da0f71fc3b2e25d6c1572b404c2880e0313372 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Example 3.8
// Determine the maximum allowable power that the open-delta bank handle 
// without overheating
// Page No. 117

clc;
clear;
close;

// Given data
S=25;                      // Transformer rating

// Capacity of the delta-delta bank is
Cddb=S*3;
// Capacity of the bank when operating open-delta is
Cob=Cddb*0.577;


// Display result on command window
printf("\n Capacity of the bank when operating open-delta is = %0.1f kVA ",Cob);