blob: 52b74525b3491fc5e13b1d65fe2e908f13599ed1 (
plain)
1
2
3
4
5
6
7
8
9
|
//Chapter 5, Problem 13
clc
n1=16 //no of turns on primary
n2=8 //no of turns on secondary
zs=16 //terminating resistance
//calculation of effective resistance
zp=zs*(n1/n2)^2
printf("Effective resistance at the primary = %d ohm",zp)
|