summaryrefslogtreecommitdiff
path: root/1757/CH5/EX5.31
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1757/CH5/EX5.31
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 '1757/CH5/EX5.31')
-rwxr-xr-x1757/CH5/EX5.31/EX5_31.sce21
1 files changed, 21 insertions, 0 deletions
diff --git a/1757/CH5/EX5.31/EX5_31.sce b/1757/CH5/EX5.31/EX5_31.sce
new file mode 100755
index 000000000..53c54ac94
--- /dev/null
+++ b/1757/CH5/EX5.31/EX5_31.sce
@@ -0,0 +1,21 @@
+//Example5.31 // To determine full power and small signal bandwidth of an op-amp with unity gain
+clc;
+clear;
+close;
+f = 100*10^6 ; // Hz unity gain bandwidth
+ACL = 10^4 ; // maximum closed loop gain
+Slewrate = 0.51 ; // V/u sec
+Vp = 10 ; // V peak volt
+
+// The full power bandwidth
+FPBW = (Slewrate/(2*3.14*Vp));
+FPBW = FPBW*10^6 ; // *10^6 because Slew rate is V/uV
+disp('The full power bandwidth FPBW is = '+string(FPBW)+' Hz ');
+
+// the 3-db frequency or small signal band width
+f3db = (f/ACL);
+disp('The 3-db frequency or small signal band width f3db is = '+string(f3db)+' Hz ');
+
+
+
+