summaryrefslogtreecommitdiff
path: root/1757/CH5/EX5.25/EX5_25.sce
diff options
context:
space:
mode:
Diffstat (limited to '1757/CH5/EX5.25/EX5_25.sce')
-rwxr-xr-x1757/CH5/EX5.25/EX5_25.sce13
1 files changed, 13 insertions, 0 deletions
diff --git a/1757/CH5/EX5.25/EX5_25.sce b/1757/CH5/EX5.25/EX5_25.sce
new file mode 100755
index 000000000..f2ba27dee
--- /dev/null
+++ b/1757/CH5/EX5.25/EX5_25.sce
@@ -0,0 +1,13 @@
+//Example5.25 // To determine the cut off frequency of an op-amp
+clc;
+clear;
+close;
+f = 1*10^3 ; // Hz // unity frequency
+Av = 200 ; // V/mV // dc gain
+
+// the unity gain frequency of an op-amp is defined as
+// f = Av*fc ;
+
+// cut off frequency
+fc = (f/Av);
+disp('Cut -off frequency of an op-amp is = '+string(fc)+' Hz ');