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.6 | |
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.6')
-rwxr-xr-x | 61/CH15/EX15.6/ex15_6.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/61/CH15/EX15.6/ex15_6.sce b/61/CH15/EX15.6/ex15_6.sce new file mode 100755 index 000000000..33caceb3c --- /dev/null +++ b/61/CH15/EX15.6/ex15_6.sce @@ -0,0 +1,12 @@ +//ex15.6
+R1=68*10^3;
+R2=180*10^3;
+R3=2.7*10^3;
+C=0.01*10^-6;
+f0=(sqrt((R1+R3)/(R1*R2*R3)))/(2*%pi*C);
+A0=R2/(2*R1);
+Q=%pi*f0*C*R2;
+BW=f0/Q;
+disp(f0,'center frequency in hertz')
+disp(A0,'maximum gain')
+disp(BW,'bandwidth in hertz')
\ No newline at end of file |