from __future__ import division
from math import sqrt
L=150*10**-6#
C=100*10**-12#
fo=0.159/sqrt (L*C)#
print 'fo=%0.2f MHZ'%(fo*10**-6)
from __future__ import division
from math import sqrt
L=100*10**-6#
C=100*10**-12#
R=5#
fo=0.159/sqrt (L*C)#
print 'fo=%0.2f MHZ'%(fo*10**-6)
Zp=L/(C*R)#
print 'Zp=%0.2f Kohm'%(Zp*10**-3)
from __future__ import division
fo=1*10**6#
Qo=100#
BW=fo/Qo#
print 'BW=%0.2f kHZ'%(BW*10**-3)
from __future__ import division
fo=1600*10**3#
BW=10*10**3#
Qo=fo/BW#
print "Qo=%0.2f"%(Qo)#
from __future__ import division
fo=2*10**6#
BW=50*10**3#
Qo=fo/BW#
print "Qo=%0.2f"%(Qo)#
from __future__ import division
from math import pi
fo=455*10**3#
BW=10*10**3#
XL=1255#
Qo=fo/BW#
R=XL/Qo#
L=XL/(2*pi*fo)#
C=1/(XL*2*pi*fo)#
Zp=L/(C*R)#
print 'Zp=%0.2f kohm'%(Zp*10**-3)