summaryrefslogtreecommitdiff
path: root/3754/CH31/EX31.10/31_10.sce
blob: d875abd78ee41fd14f507bbf64a2daa8e1861580 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
clear//

//Variables

C1 = 100.0 * 10**-12                    //Capacitance (in Farad)
C2 = 7500.0 * 10**-12                   //Capacitance (in Farad)
fomin = 950.0 * 10**3                   //Frequency minimum (in Hertz)
fomax = 2050.0 * 10**3                  //Frequency maximum (in Hertz)

//Calculation

C = C1 * C2/ (C1 + C2)                  //Net capacitance (in Farad)     
L1 = 1.0/(4 * %pi**2*(C*fomin**2))  //Inductance1 (in Henry)
L2 = 1.0/(4 * %pi**2*(C*fomax**2))  //Inductance2 (in Henry)

//Result

printf("\n The range of inductance required is from  %0.0f  micro-Henry to  %0.0f  micro-Henry.",L2*10**6,L1*10**6)