from __future__ import division
import math
#given data:
I=1.5# in amperes
n=50 #turns
l=0.25#length of coil in meter
#calculations:
H=(I*n)/l#field strength in ampere-turns/m
#Results
print "field strength in ampere-turns/m is",H
from __future__ import division
import math
#given data:
I=70 # in amperes
B=0.4#flus density in Wb/m**2
n=1 #turns
#calculations:
F=B*n*I# in newton
#Results
print "force in newtons is", F
from __future__ import division
import math
#given data:
b=2 #in Wb/m**2
l=6 #in cm
s=0.75#in m's
alpha=90#
#calculations:
emf=b*l*s*(math.sin(alpha*math.pi/180))#
#Results
print "emf induced in volts is",emf