diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /61/CH15/EX15.7/ex15_7.sce | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '61/CH15/EX15.7/ex15_7.sce')
-rwxr-xr-x | 61/CH15/EX15.7/ex15_7.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/61/CH15/EX15.7/ex15_7.sce b/61/CH15/EX15.7/ex15_7.sce new file mode 100755 index 000000000..e0f20b2b0 --- /dev/null +++ b/61/CH15/EX15.7/ex15_7.sce @@ -0,0 +1,14 @@ +//ex15.7
+R4=10^3;
+C1=0.022*10^-6;
+R7=R4;
+C2=C1;
+R6=R4;
+R5=100*10^3;
+f_c=1/(2*%pi*R4*C1); //critical frequency in hertz for each integrator
+f0=f_c //center frequency
+Q=(1+(R5/R6))/3;
+BW=f0/Q;
+disp(f0,'center frequency in hertz')
+disp(Q,' value of Q')
+disp(BW,'bandwidth in hertz')
\ No newline at end of file |