summaryrefslogtreecommitdiff
path: root/3871/CH7/EX7.12/Ex7_12.sce
blob: 25780fcc68a9e61aa844c1e386f81415318f2dc3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//===========================================================================
//chapter 7 example 12
clc;clear all;

//variable declaration
V1	= 6600;		//primary voltage in V
V2	= 110;		//secondary voltage in V
I1	= 50;		//primary current in A
I2	= 5;		//secondary voltage in A

//calculations
r	= V1/V2;		//hence transformation ratio of PT 
r1	= I1/I2;		//transformation ratio of CT

//result
mprintf("transformation ratio of CT = %3.2f ",r1);