blob: 6f095decccb27e18f4fea9bd61cad78868ffc8e1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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)+'');
|