diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3682/CH7/EX7.2 | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '3682/CH7/EX7.2')
-rw-r--r-- | 3682/CH7/EX7.2/Ex7_2.sce | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/3682/CH7/EX7.2/Ex7_2.sce b/3682/CH7/EX7.2/Ex7_2.sce new file mode 100644 index 000000000..d1c1cd537 --- /dev/null +++ b/3682/CH7/EX7.2/Ex7_2.sce @@ -0,0 +1,36 @@ +// Exa 7.2
+
+clc;
+clear;
+
+// Given data
+
+n=4; // Fourth order Butterworth low-pass filter
+fH=1000; // Hz
+
+// Solution
+
+printf('Let C = 0.1 μF. \n');
+C=0.1*10^-6; // Farads
+// Since fH = 1/(2 * %pi * R*C);
+// Therefore;
+R = 1/(2*%pi*fH*C);
+printf(' The calculated value of R = %.1f kΩ. \n',R/1000);
+
+printf(' From Table 7.1, for n=4, we get two damping factors namely,\n alpha1 = 0.765 and alpha2 = 1.848.');
+alpha1=0.765;
+alpha2=1.848;
+A01 = 3-alpha1;
+A02 = 3-alpha2;
+printf('\n');
+printf('\n Then the pass band gain A01 = %.3f and A02 = %.3f. \n',A01,A02);
+printf('\n');
+printf(' The transfer function of the normalized second order low-pass Butterworth filter is 2.235 1.152 ');
+printf('\n ---------------- * ------------------');
+printf('\n Sn^2+0.765*Sn+1 Sn^2+1.848*Sn+1 ');
+
+// Since A01= 1 + Rf/Ri = 1 + 1.235;
+printf('\n Since A01= 2.235 so Let Rf1 = 12.35 kΩ and Ri1 = 10 kΩ to make A01 = 2.235.' );
+printf('\n Since A02= 1.152 so Let Rf2 = 15.20 kΩ and Ri1 = 100 kΩ to make A01 = 1.152.' );
+
+printf(' \n The circiuit realized is as shown in Fig. 7.7 with component value as mentioned above.');
|