summaryrefslogtreecommitdiff
path: root/3835/CH6/EX6.3/Ex6_3.sce
blob: 4d8b5f68279024d6d4b77a0571d15f1cbaf5f521 (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
clear
//
//given
//as per step up tranformer
v1=220
v2=6600
f=50
vturn=2.5
kva=10000
//case a
a=v1/(v2)
printf("\n %0.3f ",a)
//as per step down case b
v1=6600
v2=220
a=v1/v2
printf("\n %0.3f ",a)
//case c
//high voltage soil
n=v1/(vturn)
printf("\n number of turns of high voltage soil= %0.1f  ",n)
//low voltage soil
n1=v2/(vturn)
printf("\n number of turns of high voltage soil= %0.1f  ",n1)
//case d
i=kva/(v1)
printf("\n primary current as a step down transformer is= %0.1f  A",i)
//case e
i=kva/(v2)
printf("\n secondary current as a step down transformer is= %0.1f  A",i)