blob: c924a395dc5b3346d21948c9581d588de64f7f65 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
//chapter 3
//example 3.24
//page 124
printf("\n")
printf("given")
f=500;Rs=600;E=8;
t=1/(2*f)
PW=t;
C1=PW/Rs
Vo=2*E
Vc=(1*Vo)/100;//1% of the Vo
Ic=(Vc*C1)/t
R1=(2*E)/Ic;
printf("suitable value of R1 is %dohm\n",R1)
|