diff options
Diffstat (limited to '1757/CH5/EX5.12/EX5_12.sce')
-rwxr-xr-x | 1757/CH5/EX5.12/EX5_12.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/1757/CH5/EX5.12/EX5_12.sce b/1757/CH5/EX5.12/EX5_12.sce new file mode 100755 index 000000000..6f095decc --- /dev/null +++ b/1757/CH5/EX5.12/EX5_12.sce @@ -0,0 +1,15 @@ +//Example5.12 // To calculate unity gain bandwidth and maximum close loop gain
+clc;
+clear;
+close;
+A = 10^5 ; // open loop gain
+fo = 10 ; // Hz // dominant pole frequency
+fdb = 20*10^3 ; //Hz // 3-db frequency
+
+// the unity gain bandwidth
+f1 = fo*A ;
+ disp('the unity gain bandwidth is = '+string(f1)+'Hz');
+
+// the maximum close loop gain
+ACL = (f1/fdb) ;
+disp('the maximum close loop gain ACL is = '+string(ACL)+'');
|