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/CH6/EX6.12 | |
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/CH6/EX6.12')
-rwxr-xr-x | 929/CH6/EX6.12/Example6_12.sce | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/929/CH6/EX6.12/Example6_12.sce b/929/CH6/EX6.12/Example6_12.sce new file mode 100755 index 000000000..794101d67 --- /dev/null +++ b/929/CH6/EX6.12/Example6_12.sce @@ -0,0 +1,37 @@ +//Example 6.12
+
+clear;
+
+clc;
+
+C=10*10^(-9);
+
+H0bpdB=0;
+
+f0=10*10^3;
+
+Q=10;
+
+H0bp=10^(H0bpdB/20);
+
+R1=Q/(2*%pi*f0*C*H0bp);
+
+R2=(R1/((2*(Q^2))/(H0bp)))-1;
+
+R3=(2*Q)/(2*%pi*f0*C);
+
+BW=f0/Q;
+
+BWer=0.01;//BW deviation from its design value is 1%
+
+GBPmin=(2*Q*f0)/BWer;
+
+printf("Components for the mentioned circuit :");
+
+printf("\nR1=%.2f kohms",R1*10^(-3));
+
+printf("\nR2=%.2f ohms",R2);
+
+printf("\nR3=%.2f kohms",R3*10^(-3));
+
+printf("\nGBP>=%.2f MHz",GBPmin*10^(-6));
\ No newline at end of file |