summaryrefslogtreecommitdiff
path: root/2528/CH11/EX11.7/Ex11_7.sce
diff options
context:
space:
mode:
Diffstat (limited to '2528/CH11/EX11.7/Ex11_7.sce')
-rwxr-xr-x2528/CH11/EX11.7/Ex11_7.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/2528/CH11/EX11.7/Ex11_7.sce b/2528/CH11/EX11.7/Ex11_7.sce
new file mode 100755
index 000000000..05f1474ae
--- /dev/null
+++ b/2528/CH11/EX11.7/Ex11_7.sce
@@ -0,0 +1,14 @@
+// Chapter 11
+// Band pass Filter
+// Page.No-427
+// Example_11_7
+// Given
+clear;clc;
+Q=30;
+fo=60; //in Hz
+Rd=3*Q-1; //R damping
+printf("\n Rdamping is %.1f Ohm\n",Rd); // Result
+W=2*%pi*fo;
+printf("\n The frequency is = %.0f radians per seconds\n",W); // Result
+C=1/W;
+printf("\n C is %.5f F\n",C); // Result