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.6/Ex7_6.sce | |
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.6/Ex7_6.sce')
-rw-r--r-- | 3682/CH7/EX7.6/Ex7_6.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/3682/CH7/EX7.6/Ex7_6.sce b/3682/CH7/EX7.6/Ex7_6.sce new file mode 100644 index 000000000..47da97769 --- /dev/null +++ b/3682/CH7/EX7.6/Ex7_6.sce @@ -0,0 +1,18 @@ +// Exa 7.6
+
+clc;
+clear;
+
+// Given data
+
+// A notch filter
+fo=50; // cutoff frequency for notch filter(Hz)
+
+//Solution
+
+printf('As Given fo=50 Hz. Let C=0.1 μF.');
+C=0.1*10^-6; // Farads
+// since fo=1/(2*%pi*R*C);
+// Therefore R -
+R=1/(2*%pi*fo*C);
+printf(' \n For R/2, take two resistors of 31.8 k Ohms in parallel and for 2C,\n take two 0.1 mocroFarads capacitors in parallel to make the twin-T notch filter\n as shown in Fig. 7.15(a) on page no. 279 where resistors R1 and R2 are for adjustment of gain.\n ')
|