diff options
Diffstat (limited to '1757/CH5/EX5.30/EX5_30.sce')
-rwxr-xr-x | 1757/CH5/EX5.30/EX5_30.sce | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/1757/CH5/EX5.30/EX5_30.sce b/1757/CH5/EX5.30/EX5_30.sce new file mode 100755 index 000000000..88fc7c07d --- /dev/null +++ b/1757/CH5/EX5.30/EX5_30.sce @@ -0,0 +1,9 @@ +//Example5.30 // To find Slew rate of an op-amp
+clc;
+clear;
+close;
+Iq = 21 ; // uA // bias current
+Cm = 31 ; // pF // internal frequency compensated capacitor
+Slewrate = (Iq/Cm);
+disp('the Slew rate of an op-amp is = '+string(Slewrate)+' V/u sec');
+
|