blob: 14166279bc91a5b3a429485cdfa41211c7fde1a4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
clear
//Given
V=200 //V
Vp=200 //V
n=200.0
Ip=2 //A
//Calculation
Vs=Vp*n
Is=(Ip*V)/Vs
//Result
printf("\n (i) Voltage developed in the secondary is %0.3f V", Vs)
printf("\n (ii) The current in the secondary is %0.3f A",Is )
|