diff options
Diffstat (limited to '2609/CH4/EX4.11/ex_4_11.sce')
-rwxr-xr-x | 2609/CH4/EX4.11/ex_4_11.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/2609/CH4/EX4.11/ex_4_11.sce b/2609/CH4/EX4.11/ex_4_11.sce new file mode 100755 index 000000000..a04ad73e3 --- /dev/null +++ b/2609/CH4/EX4.11/ex_4_11.sce @@ -0,0 +1,15 @@ +////Ex 4.11
+clc;
+clear;
+close;
+format('v',5);
+Ri=2;//kohm
+Rf=200;//kohm
+//For 741C
+fo=5;//Hz
+AOL=2*10^5;//unitless
+UGB=1;//MHz
+ACL=-AOL*Rf/(Rf+Ri+AOL*Ri);//unitless(Exact)
+disp(ACL,"Close loop voltage gain");
+fodash=fo*AOL/-ACL;//Hz
+disp(fodash/1000,"Bandwidth, fo_dash(kHz)");
|