blob: 31eb0e178591c8ec52ef54987a7d513a25882fbc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
//=====================================================================================
//Chapter 12 example 26
clc;clear all;
//variable declaration
C1 = 1530; //capacitance in pF
C2 = 162; //capacitance in pF
f1 = 3; //frequency in MHz
f2 =1; //frequency in MHz
//calculations
//f1 = 1/((2*math.pi)*(math.sqrt(L*(C2+Cd))))
//f1 = 1/((2*math.pi)*(math.sqrt(L*(C2+Cd))))
//f2 = 3*f1
Cd = (C1-(9*C2))/(8); //self capacitance of the coil in pF
//result
mprintf("self capacitance of the coil = %3.2f pF",Cd);
|