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 /929/CH3/EX3.15 | |
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 '929/CH3/EX3.15')
-rwxr-xr-x | 929/CH3/EX3.15/Example3_15.sce | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/929/CH3/EX3.15/Example3_15.sce b/929/CH3/EX3.15/Example3_15.sce new file mode 100755 index 000000000..7be2f7287 --- /dev/null +++ b/929/CH3/EX3.15/Example3_15.sce @@ -0,0 +1,37 @@ +//Example 3.15
+
+clear;
+
+clc;
+
+C=10*10^(-9);
+
+C1=C;
+
+C2=C;
+
+f0=1*10^3;
+
+Q=10;
+
+H0dB=20;
+
+H0=10^(H0dB/20);
+
+R2=(2*Q)/(2*%pi*f0*C);
+
+R1A=Q/(H0*2*%pi*f0*C);
+
+R1B=R1A/((2*Q^2/H0)-1);
+
+printf("Designed Multiple Feedback Band Pass Filter :")
+
+printf("\nR1A=%.2f kohms",R1A*10^(-3));
+
+printf("\nR1B=%.2f ohms",R1B);
+
+printf("\nR2=%.2f kohms",R2*10^(-3));
+
+printf("\nC1=%.2f nF",C1*10^(9));
+
+printf("\nC2=%.2f nF",C2*10^(9));
\ No newline at end of file |