blob: 4431f56129cb7804fc27d18f39016d3a54d82411 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
//Chapter 18, Example 18.9
clc
//Initialisation
R1=2*10**3 //resistance in ohm
R2=5.2*10**3 //resistance in ohm
pi=3.14 //pi
c=2.2*10**-6 //capacitance in farad
ce=10*10**-6 //capacitance in farad
re=24 //resistance in ohm
//Calculation
fc1=1/(2*pi*c*R1) //cut-off frequency
fc2=1/(2*pi*c*R2) //cut-off frequency
fc=1/(2*pi*ce*re) //cut-off frequency
//Results
printf("Coupling Capacitor is in the range %d Hz - %d Hz\n",round(fc2),round(fc1))
printf("Decoupling Capacitor, Ce = %d Hz",fc)
|