summaryrefslogtreecommitdiff
path: root/2702/CH5/EX5.22/Ex_5_22.sce
blob: 13971823ec9b2aab47fa6c8f7aecb263eb100a44 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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 : ")