In [1]:
%pylab inline
A 10-kVA 480/120-V conventional transformer is to be used to supply power from a 600-V source to a 120-V load. Consider the transformer to be ideal, and assume that all insulation can handle 600 V.
In [2]:
Vp = 600 # [V]
Vl = 120 # [V] which is also the load voltage
Vh = 480 # [V]
Sw = 10e3 # [VA]
In [3]:
n = Vh/Vl # = Nse/Nc
Sio = (n + 1)/n * Sw
print('''
Sio = {:.1f} kVA
==============
'''.format(Sio/1000))
In [4]:
Ip = Sio/Vp
print('''
Ip = {:.2f} A
============
'''.format(Ip))
and the maximum secondary current is:
$$I_S = \frac{S}{V_S}$$
In [5]:
Is = Sio/Vl
print('''
s = {:.0f} A
=========
'''.format(Is))