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 /1430/CH11/EX11.13 | |
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 '1430/CH11/EX11.13')
-rw-r--r-- | 1430/CH11/EX11.13/exa11_13.sce | 31 | ||||
-rw-r--r-- | 1430/CH11/EX11.13/exa11_13.txt | 29 |
2 files changed, 60 insertions, 0 deletions
diff --git a/1430/CH11/EX11.13/exa11_13.sce b/1430/CH11/EX11.13/exa11_13.sce new file mode 100644 index 000000000..403359989 --- /dev/null +++ b/1430/CH11/EX11.13/exa11_13.sce @@ -0,0 +1,31 @@ +// Example 11.13
+// Op-Amp Circuit for a Lowpass Filter
+f_co=15.9*10^3; // Hertz
+Q3=0.618;
+Q5=1.618;
+K=80; // Overall gain
+// Approximately equal distribution of total gain
+K1=5;
+K3=4;
+K5=4;
+R_mu=1000; // assume
+R_F1=(5-1)*R_mu; // VAlues of feedback Resistors
+R_F3=(4-1)*R_mu;
+R_F5=R_F3;
+C=10^-9; // Appropriate choice
+R=1/(2*%pi*f_co*C); // For 1st order stage
+// For 2nd stage
+r=R;
+K_i=4;
+// Thus the resistor for the stage with Q3
+R1=2*Q3*r/(1+sqrt(4*Q3^2*(K_i-2)+1));
+R2=r^2/R1;
+// Thus the resistor for the stage with Q5
+R3=2*Q5*r/(1+sqrt(4*Q5^2*(K_i-2)+1));
+R4=r^2/R3;
+disp(C,"Capacitor for all the stages(Farad)=")
+disp(R,"Resistor for the 1st order stage(Ohms)=")
+disp(R1,"Resistor for the 2nd order stage with Q3(Ohms)=")
+disp(R2,"Resistor for the 2nd order stage with Q3(Ohms)=")
+disp(R3,"Resistor for the 3rd order stage with Q5(Ohms)=")
+disp(R4,"Resistor for the 3rd order stage with Q5(Ohms)=")
diff --git a/1430/CH11/EX11.13/exa11_13.txt b/1430/CH11/EX11.13/exa11_13.txt new file mode 100644 index 000000000..bd7080db0 --- /dev/null +++ b/1430/CH11/EX11.13/exa11_13.txt @@ -0,0 +1,29 @@ +
+
+-->exec('C:\Users\sangeet\Documents\Scilab\Circuits\Chapter 11\exa11_13.sce', -1)
+
+ Capacitor for all the stages(Farad)=
+
+ 1.000D-09
+
+ Resistor for the 1st order stage(Ohms)=
+
+ 10009.745
+
+ Resistor for the 2nd order stage with Q3(Ohms)=
+
+ 4105.1307
+
+ Resistor for the 2nd order stage with Q3(Ohms)=
+
+ 24407.26
+
+ Resistor for the 3rd order stage with Q5(Ohms)=
+
+ 5698.3433
+
+ Resistor for the 3rd order stage with Q5(Ohms)=
+
+ 17583.179
+
+
|