summaryrefslogtreecommitdiff
path: root/2534/CH10/EX10.6
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /2534/CH10/EX10.6
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 '2534/CH10/EX10.6')
-rwxr-xr-x2534/CH10/EX10.6/Ex10_6.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/2534/CH10/EX10.6/Ex10_6.sce b/2534/CH10/EX10.6/Ex10_6.sce
new file mode 100755
index 000000000..8d7d7e057
--- /dev/null
+++ b/2534/CH10/EX10.6/Ex10_6.sce
@@ -0,0 +1,16 @@
+//Ex10_6
+clc
+Av = 100//voltage gain
+beta = 0.05//feedback ratio
+BW = 400*10^3 //bandwidth
+disp("Av = "+string(Av))
+disp("beta = "+string(beta))
+disp("B.W. = "+string(BW)+"Hz")
+Af = Av/(1+beta*Av)//gain with negative feedback
+disp("Af = Av/(1+beta*Av) = "+string(Af))
+BWf = BW*(1+beta*Av)//bandwidth with negative feedback
+disp("(B.W)f = "+string(BWf)+"Hz")
+
+
+// note : using variable "BW" instad of "B.W" ... as, if using B.W the software takes it as a function.
+// similarly using "BWf" instead of (B.W)f.