summaryrefslogtreecommitdiff
path: root/2375/CH10/EX10.12
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /2375/CH10/EX10.12
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 '2375/CH10/EX10.12')
-rwxr-xr-x2375/CH10/EX10.12/ex10_12.sce20
1 files changed, 20 insertions, 0 deletions
diff --git a/2375/CH10/EX10.12/ex10_12.sce b/2375/CH10/EX10.12/ex10_12.sce
new file mode 100755
index 000000000..67a11d89d
--- /dev/null
+++ b/2375/CH10/EX10.12/ex10_12.sce
@@ -0,0 +1,20 @@
+// Exa 10.12
+clc;
+clear;
+close;
+format('v',5)
+// Given data
+Ao = 100;
+f_L = 20;// in Hz
+f_H = 40;// in kHz
+f_H = f_H*10^3;// in Hz
+Beta = 0.1;
+Af = Ao/(1 + (Beta*Ao));
+disp(Af,"The overall gain at mid frequency is");
+f_Hf = f_H*(1+(Ao*Beta));// in Hz
+f_Hf = f_Hf * 10^-3;// in kHz
+disp(f_Hf,"The upper cutoff frequency with negative feedback in kHz is");
+f_Lf = f_L/(1+(Ao*Beta));// in Hz
+disp(f_Lf,"The lower cutoff frequency with negative feedback in Hz is");
+
+// Note: The calculated value of lower cutoff frequency with negative feedback i.e f_Lf is wrong. So the answer in the book is wrong.