summaryrefslogtreecommitdiff
path: root/2702/CH5/EX5.22/Ex_5_22.sce
diff options
context:
space:
mode:
Diffstat (limited to '2702/CH5/EX5.22/Ex_5_22.sce')
-rw-r--r--2702/CH5/EX5.22/Ex_5_22.sce17
1 files changed, 17 insertions, 0 deletions
diff --git a/2702/CH5/EX5.22/Ex_5_22.sce b/2702/CH5/EX5.22/Ex_5_22.sce
new file mode 100644
index 000000000..13971823e
--- /dev/null
+++ b/2702/CH5/EX5.22/Ex_5_22.sce
@@ -0,0 +1,17 @@
+// Exa 5.22
+clc;
+clear;
+close;
+// Given data
+S= -20;// sensitivity of closed to open loop gain in dB
+// sensitivity of closed to open loop gain = 1/(1+AB) = S
+// or (1+AB) = -S
+AB= 10^(-S/20) - 1;
+disp(AB,"The loop gain AB for which the sensitivity of closed loop gain to open loop gain is -20 dB, is : ")
+
+// Part (b) when
+S= 1/2;// sensitivity of closed to open loop gain in dB
+//S= 1/(1+AB)
+AB= 1/S-1;
+disp(AB,"The loop gain AB for which the sensitivity of closed loop gain to open loop gain is 1/2 ,is : ")
+