summaryrefslogtreecommitdiff
path: root/2528/CH9/EX9.2/Ex9_2.sce
blob: 8db0fc5554f9b0b840872015305fecf8ee9fad85 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Chapter9
// Maximum and minimum Frequency  of oscillation 
// Page.No-307
// Example9_2
//Figure 9.9
// Given
clear;clc;
// for minimium frequency
R=11100;            //in Ohm
C=0.1*10^-6;           //in F
f=1/(2*%pi*R*C);
printf("\n The mimimum frequency of oscillation  = %.1f Hz\n",f); // Result
// for maximum frequency
R=1100;            //in Ohm
C=0.1*10^-6;           //in F
fm=1/(2*%pi*R*C);
printf("\n The maximum frequency of oscillation  = %.0f Hz\n",fm); // Result
printf("\n For C=0.001microF, the range is from %.1f Hz to %.0f Hz\n  ", f*10,fm*10);//Result
printf("\n For C=0.0001microF, the range is from %.1f Hz to %.0f Hz\n  ", f*100,fm*100);//Result
Rf=10000+2700;          //in ohm
Ri=5600;                //in Ohm
Av=1+Rf/Ri;
printf("\n Gain ,Av is %.2f \n  ", Av);//Result