summaryrefslogtreecommitdiff
path: root/3682/CH7/EX7.6/Ex7_6.sce
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3682/CH7/EX7.6/Ex7_6.sce
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-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.sce18
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 ')