summaryrefslogtreecommitdiff
path: root/1628/CH11/EX11.6/Ex11_6.sce
blob: 44caf4e3b8aca52f94b99e1fc130ceeb24d8c5e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21

                    // Example  11.6

f=150*10^3;                  // Frequency
Bw=75*10^3;                  // Band width
Q=f/Bw;                      // Q-Factor
disp(' Q-Factor is  = '+string(Q));
               // since Q < 10   there for we need to solve by Equation
               // 75= f2-f1    &   150= root(f1*f2)
               // will get Eq ( f1^2+ 75f1- 22500= 0 ) by Eliminating f2
               // by factorization we have f1=( 117.1kHz or -192.1kHz )
f1=117.1; 
f2=75+f1;
disp(' The half Power Frequencies are f1= '+string(f1)+' kHz   &  f2= '+string(f2)+' kHz');



      //   p 382      11.6