blob: 7d27a1597f96d69cbce38ed451b59e9ed382b176 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
//chapter-8,Example8_6,pg 499
Cr=0.01*10^-6//capacitance at resonance
Cu=0.014*10^-6//capacitance at upper half
Cl=0.008*10^-6//capacitance at lower half
Qac=((2*Cr)/(Cu-Cl))//actual Q-factor
printf("actual Q-factor\n")
printf("Qac=%.2f \n",Qac)
|