summaryrefslogtreecommitdiff
path: root/2498/CH5/EX5.19/ex5_19.sce
blob: f3f9957ed8b6f8483d74440bb646dbffd946f5f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Exa 5.19
clc;
clear;
close;
format('v',6)
// Given data
dAf_byAf = 10/100;
dAbyA = 10;
A = 1000;
// dAf_byAf = dAbyA*(1/(1+(A*Beta)));
// The required feed back 
Beta = ((dAbyA/dAf_byAf)-1)/A;
disp(Beta,"The required feed back is");
Af = A/(1+(A*Beta));// closed loop voltage gain 
disp(Af,"The closed loop voltage gain is");