summaryrefslogtreecommitdiff
path: root/275/CH6/EX6.6.57
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /275/CH6/EX6.6.57
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 '275/CH6/EX6.6.57')
-rwxr-xr-x275/CH6/EX6.6.57/Ch6_6_57.sce18
1 files changed, 18 insertions, 0 deletions
diff --git a/275/CH6/EX6.6.57/Ch6_6_57.sce b/275/CH6/EX6.6.57/Ch6_6_57.sce
new file mode 100755
index 000000000..0619a5f14
--- /dev/null
+++ b/275/CH6/EX6.6.57/Ch6_6_57.sce
@@ -0,0 +1,18 @@
+clc
+disp("Example 6.57")
+printf("\n")
+printf("given")
+disp("gain is 200 & gain bandwidth product is 1MHz")
+Af=200
+GBW=10^6
+BW=10^4
+reqBW=GBW/Af
+if(reqBW>BW) then
+ printf("Required bandwidth is=%f",reqBW)
+ else
+ Af2=10
+ Af1=200/Af2
+ R1fbyR11=Af1-1
+ R2fbyR21=Af2-1
+ printf("The ratio of resistance of both amplifier circuit is=\n%d,\n%d",R1fbyR11,R2fbyR21)
+end \ No newline at end of file