#Given
Ep=2300.0 #v
Np=4000
Es=230 #v
#Calculation
Ns=Np*(Es/Ep)
#Result
print"Number of turns is", Ns
#Given
Ep=220.0 #v
Es=110
E=550 #watt
#Calculation
Ip=E/Ep
#Result
print"Current drawn is",Ip,"A"
#Gien
Ep=220.0 #v
Es=22
Z=220.0 #ohm
#Calculation
Is=Es/Z
Ip=(Es/Ep)*Is
#Result
print"Current drawn is",Ip,"A"
#Given
Np=200.0
Ns=1000
Ep=200.0 #v
E=10**4 #W
#Calculation
Es=(Ns/Np)*Ep
Ip=E/Ep
#Result
print"(a) Output voltage is",Es,"V"
print"(b) Current is",Ip,"A"
#Given
ep=120
Ip=1.85 #A
Is=150*10**-3
n=0.95
#Calculation
es=n*ep*Ip/Is
#result
print"Voltage across the secondary is",es,"V"
#Given
K=100
Np=100
e=1100 #watt
ep=220.0
#Calculation
Ns=K*Np
ip=e/ep
es=K*ep
Is=ip*ep/es
#Result
print"(i) Number of turns is",Ns
print"(ii) Current is",ip,"A"
print"(iii) Voltage across the secondary is",es,"V"
print"(iv) Current in the secondaryis",Is,"A"
#Given
e=11000 #W
es=220.0 #V
es1=22000.0
#Calculation
Is=e/es
V=Is**2
Is1=e/es1
P=Is1**2
#Result
print"(i) Electrical energy dissipated when power is transmitted at es=220 V is",V,"R watt"
print"(ii)Electrical energy dissipated when power is transmitted at es=22000 V is",P,"R watt"
print"Transmission should be done at 22000 V"
#Given
B=0.1 #T
n=2000
A=0.05 #m**2
w=2100 #r.p.m.
#calculation
import math
A1=2*math.pi*w/60.0
e0=w*B*A*A1
e=e0*math.sin(60*3.14/180.0)
#Result
print"Maximum e.m.f is", round(e0,0),"V"
print"Instantaneous e.m.f is",round(e,0),"V"
#Given
n=100
A=3 #m**2
w=60 #rad/s
B=0.04
R=500.0
#Calculation
e0=n*B*A*w
I0=e0/R
P=e0*I0
#Result
print"(a) Maximum current is",I0,"A"
print"(b) Maximum power is",P,"W"
#Given
n=50
A=2.5 #m**2
w=60 #rad/s
B=0.30
R=500.0
#Calculation
e0=n*B*A*w
I0=e0/R
#Result
print"(a) The maximum current is",I0,"A"
print"(b) Current is zero when coil is vertical and flux is maximum.On the other hand current is maximum when coil is horizontal,flux is minimum"
print"(c) Yes,there should be relative motion between the magnetic field and coil"
#Given
E=220
e=200.0
P=5000
#Calculation
I=P/e
R=(E-e)/I
#Result
print"Armature current is",I,"A"
print"Motor resistance is",R,"ohm"
#Given
R=8.5
E=200
I=5
#Calculation
e=E-(I*R)
Pi=E*I
Po=E*I-(I**2*R)
n=Po/Pi
#Result
print"Back e.m.f of the motor is", e,"V"
print"Power input is",Pi,"W"
print"Power output is",Po,"W"
print"Efficiencyis",n*10**2,"%"
#Given
h=300
g=9.8 #m/s**2
a=1000
A=100.0
n=60
#Calculation
m=A*a
E=m*g*h
P=E*n/A
#Result
print"Electric power is", P*10**-6,"MW"
#Given
L=30 #km
R=15 #ohm
V=4000.0 #V
P=8*10**5 #W
#Calculation
Is=P/V
P1=Is**2*R
P2=P+P1
V1=R*Is
A=440-(V+V1)
#Result
print"(a) Line power loss is",P1*10**-3,"KW"
print"(b) Supplied power is",P2*10**-3,"KW"
print"(c) Step up transformer at the plane is",A
#Given
r=8*10**-2
n=20
w=50 #rad/s
B=3*10**-2 #T
A=64*math.pi*10**-4 #m**2
Eav=0
R=10 #ohm
#Calculation
math.pi
e0=n*B*A*w
Pav=e0**2/(2*R)
#Result
print" Maximum e.m.f. is",round(e0,4),"V"
print" Average e.m.f. is zero"
print" Dissipated power is",round(Pav,4),"W"