Chapter 10 Measuring Instruments

Example 10.1 Page no 289

In [22]:
#Given
C1=600                                         #pf
C2=100                                         #pf
f1=2                                           #MHz
f2=4                                           #MHz

#Calculation
import math
Cs=(C1-4*C2)/3.0
L=1/(4*(math.pi)**2*f1**2*(C1+Cs))

#Result
print"The value of distributed capacitance is ",round(Cs,2),"pf","and inductance is ",round(L*10**6,3),"micro H"
The value of distributed capacitance is  66.67 pf and inductance is  9.499 micro H

Example 10.2 Page no 290

In [33]:
#Given
C1=500                             #pf
C2=110                               #pf2
f1=1                                 #MHz
f2=2                                   #MHz

#Calculation
import math
Cs=(C1-4*C2)/3.0
L=1/(4*(math.pi)**2*f1**2*(C1+Cs))

#Result
print"The distributed capacitance is ",Cs ,"pf","and Value of L is ",round(L*10**6,3),"micro H"
The distributed capacitance is  20.0 pf and Value of L is  48.712 micro H

Example 10.3 Page no 290

In [36]:
#Given
f1=2                                  #MHz
C1=500                                   #pf
f2=6                                  #MHz
C2=50                                  #pf

#Calculation 
Cs=(C1-9*C2)/8.0

#Result
print"Value of self capacitance is ", Cs,"pf"
Value of self capacitance is  6.25 pf