diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /929/CH3/EX3.8 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '929/CH3/EX3.8')
-rwxr-xr-x | 929/CH3/EX3.8/Example3_8.sce | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/929/CH3/EX3.8/Example3_8.sce b/929/CH3/EX3.8/Example3_8.sce new file mode 100755 index 000000000..f18a329f1 --- /dev/null +++ b/929/CH3/EX3.8/Example3_8.sce @@ -0,0 +1,37 @@ +//Example 3.8
+
+clear;
+
+clc;
+
+f0=1*10^3;
+
+Q=5;
+
+C=10*10^(-9);//Arbitrarily chosen value
+
+R=1/(2*%pi*f0*C);
+
+K=3-(1/Q);//DC gain
+
+//->RB/RA=K-1
+
+RA=10*10^3;//Assumed value of RA
+
+RB=((K-1)*RA)-200;
+
+C1=C;
+
+C2=C;
+
+printf("Designed Equal Component Second Order Low Pass Filter :");
+
+printf("\nR=%.2f kohms",R*10^(-3));
+
+printf("\nRA=%.2f kohms",RA*10^(-3));
+
+printf("\nRB=%.2f kohms",RB*10^(-3));
+
+printf("\nC=%.2f nF",C*10^9);
+
+printf("\n\ndc gain (K)=%.2f V/V",K)
\ No newline at end of file |