L=58.6*10**(-6) # H, inductance
C=300*10**(-12) # F, capacitance
#Calculation
import math
fo=1/(2*math.pi*math.sqrt(L*C))
#Result
print " The Frequency of Oscillation of Tuned Collector Oscillator is fo = ",round(fo/10**3,2),"KHz"
R=100000.0 # Ohms, resistance
C=0.01*10**(-6) #F, capacitance
#Calculation
import math
fo=1/(2*math.pi*R*C*math.sqrt(6))
#Result
print "The Frequency of Oscillation of Vacuum Tube Phase Shift Oscillator is fo = ",round(fo,2),"Hz"
R1=220000.0 # Ohms, Resistance 1
R2=220000.0 # Ohms Resistance 2
C1=250*10**(-12) #F, capacitance 1
C2=250*10**(-12) #F, capacitance 2
#Calculation
import math
fo=1/(2*math.pi*math.sqrt(R1*C1*R2*C2))
# Result
print "The Frequency of Oscillation of Wein Bridge Oscillator is fo = ",round(fo/10**3,2),"KHz"