blob: 9fa83a4bfc00ad22f102bc2c1d4b1035630add76 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
//chapter-14,Example14_4,pg 435
//assuming eps1=9.85*10^12
x=4//separation between plates
x3=1//thickness of dielectric
eps1=9.85*10^12//dielectric const. of free space
eps2=120*10^12//dielectric const. of material
Sx=(1/(1+((x/x3)/((eps1/eps2)-1))))//sensitivity of measurement of capacitance
printf("sensitivity of measurement of capacitance\n")
printf("Sx=%.2f",Sx)
|