summaryrefslogtreecommitdiff
path: root/1430/CH11/EX11.6
diff options
context:
space:
mode:
Diffstat (limited to '1430/CH11/EX11.6')
-rw-r--r--1430/CH11/EX11.6/exa11_6.sce17
-rw-r--r--1430/CH11/EX11.6/exa11_6.txt13
2 files changed, 30 insertions, 0 deletions
diff --git a/1430/CH11/EX11.6/exa11_6.sce b/1430/CH11/EX11.6/exa11_6.sce
new file mode 100644
index 000000000..276d86b99
--- /dev/null
+++ b/1430/CH11/EX11.6/exa11_6.sce
@@ -0,0 +1,17 @@
+// Example 11.6
+// Design of a Bandpass filter
+L=1*10^-3;
+R_w=1.2;
+B=2*%pi*2*250; // Bandwidth
+omega_0=2*%pi*20*10^3;
+Q=omega_0/B; // quality factor
+f_l=20000-250;
+f_u=20000+250;
+f_0=sqrt(f_l*f_u);
+Q_par=Q;
+C=1/(omega_0^2*L); // Required value of Capacitor
+R_par=L/(C*R_w); // Parallel equivalent of winding resistance
+R_eq=Q*omega_0*L;
+R=(R_eq*R_par)/(R_par-R_eq);
+disp(C,"Required value of C (Farad)=")
+disp(R,"Required value of R(Ohms)=")
diff --git a/1430/CH11/EX11.6/exa11_6.txt b/1430/CH11/EX11.6/exa11_6.txt
new file mode 100644
index 000000000..b88384550
--- /dev/null
+++ b/1430/CH11/EX11.6/exa11_6.txt
@@ -0,0 +1,13 @@
+
+
+-->exec('C:\Users\sangeet\Documents\Scilab\Circuits\Chapter 11\exa11_6.sce', -1)
+
+ Required value of C (Farad)=
+
+ 6.333D-08
+
+ Required value of R(Ohms)=
+
+ 8133.2029
+
+