summaryrefslogtreecommitdiff
path: root/2702/CH5/EX5.8/Ex_5_8.sce
diff options
context:
space:
mode:
Diffstat (limited to '2702/CH5/EX5.8/Ex_5_8.sce')
-rw-r--r--2702/CH5/EX5.8/Ex_5_8.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/2702/CH5/EX5.8/Ex_5_8.sce b/2702/CH5/EX5.8/Ex_5_8.sce
new file mode 100644
index 000000000..3341a6ee0
--- /dev/null
+++ b/2702/CH5/EX5.8/Ex_5_8.sce
@@ -0,0 +1,15 @@
+// Exa 5.8
+clc;
+clear;
+close;
+// Given data
+Ao= 10^4;
+Afo= 50;
+omega_H= 2*%pi*100;// in rad/s
+// Formula Afo= Ao/(1+Ao*Bita)
+Bita= 1/Afo-1/Ao;
+omega_f_H= omega_H*(1+Ao*Bita);
+disp("Closed loop bandwidth in rad/s is : ")
+disp(string(omega_f_H)+" or 2*%pi*20*10^3");
+disp("So the bandwidth increase form 100 Hz to 20 kHz on the gain decreases form 104 to 50")
+