summaryrefslogtreecommitdiff
path: root/3754/CH32/EX32.3/32_3.sce
blob: c54c2f673f51a0e7358d9c5e59a5a606d0ba3fee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
clear//

//Variables

R1 = 2.0 * 10**3         //Resistance (in ohm)
R2 = 20.0 * 10**3        //Resistance (in ohm)
C1 = 0.01 * 10**-6       //Capacitance (in Farad)
C2 = 0.05 * 10**-6       //Capacitance (in Farad)

//Calculation

T = 0.69*(R1*C1 + R2*C2) //Time periode of oscillation (in seconds)
f = 1/T                  //Frequency of oscillation (in Hertz)

//Result

printf("\n Time period of oscillation is  %0.1f  ms.\nFrequency of oscillation is  %0.2f  kHz.",T*10**3,f*10**-3)