summaryrefslogtreecommitdiff
path: root/929/CH6/EX6.11
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /929/CH6/EX6.11
downloadScilab-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.11')
-rwxr-xr-x929/CH6/EX6.11/Example6_11.sce29
1 files changed, 29 insertions, 0 deletions
diff --git a/929/CH6/EX6.11/Example6_11.sce b/929/CH6/EX6.11/Example6_11.sce
new file mode 100755
index 000000000..04327fb13
--- /dev/null
+++ b/929/CH6/EX6.11/Example6_11.sce
@@ -0,0 +1,29 @@
+//Example 6.11
+
+clear;
+
+clc;
+
+C=(5/%pi)*10^(-9);
+
+R1=10*10^3;
+
+R2=30*10^3;
+
+GBP=1*10^6;
+
+Hreler=0.01;//Departure of H from Hideal
+
+ft=1*10^6;
+
+fx=ft/(1+(R2/R1));
+
+fmax=((1/((1-Hreler)^2)-1)^(1/2))*fx;
+
+f0=1/(2*%pi*R1*C);
+
+fmin3dB=(1/((1/(f0^2))-(1/(fx^2))-(1/((f0^2)*(fx^2)))))^(1/2);//f(-3dB)
+
+f3dBer=((fmin3dB-f0)/fmin3dB)*100;
+
+printf("Percentage Deviation of cut off frequency=%.2f",f3dBer*2); \ No newline at end of file