diff options
Diffstat (limited to '3554/CH15/EX15.8/Ex15_8.sce')
-rw-r--r-- | 3554/CH15/EX15.8/Ex15_8.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/3554/CH15/EX15.8/Ex15_8.sce b/3554/CH15/EX15.8/Ex15_8.sce new file mode 100644 index 000000000..b7e84a363 --- /dev/null +++ b/3554/CH15/EX15.8/Ex15_8.sce @@ -0,0 +1,19 @@ +// Exa 15.8
+
+clc;
+clear all;
+
+// Given data
+// Active notch filter
+
+Fn=50; //Notch out frequency(Hz)
+
+// Solution
+
+disp(" Let C=0.047 micro farads");
+C=0.047; // micro farads
+R=1/(2*%pi*Fn*C*10^-6);
+
+printf(' The value of R is calculated as %d k Ohms \n',round(R/1000));
+disp("For R/2, two 68 k Ohms resistors connected in parallel are used and for the 2C components, two 0.047 micro farad capacitors connected in parallel are used.");
+
|