Chapter - 33 : OP AMP APPLICATION

Ex 33.1 Pg 935

In [3]:
from __future__ import division
from math import pi
R1=1*10**3#
R2=100*10**3#
Rf=R2#
f1=159#
C=1/(2*pi*R2*f1)#
print 'C=%0.2e microF'%C
C=1.00e-08 microF

Ex 33.2 Pg 935

In [4]:
from __future__ import division
from math import pi
R1=1*10**3#
Rf=51*10**3#
Cf=0.1*10**-6#
f=1/(2*pi*Rf*Cf)#
print 'f=%0.2f HZ'%f #ans given in book is wrong
fmin=10*f#
print 'fmin=%0.2f HZ'%fmin
f=31.21 HZ
fmin=312.07 HZ

Ex 33.3 Pg 935

In [5]:
from __future__ import division
from math import pi
R1=10*10**3#
Cf=0.01*10**-6#
f=1/(2*pi*R1*Cf)#
print 'f=%0.2f HZ'%f #ans given in book is wrong
fmin=f/10#
print 'fmin=%0.2f HZ'%fmin
f=1591.55 HZ
fmin=159.15 HZ

Ex 33.4 Pg 936

In [7]:
from __future__ import division
from math import pi
R=51*10**3#
C=0.001*10**-6#
f0=1/(2*pi*R*C)#
print 'f0=%0.2f HZ'%f0
f0=3120.69 HZ