summaryrefslogtreecommitdiff
path: root/2498/CH5/EX5.17/ex5_17.sce
blob: 9dea959699e9d07e351700659a18563b254f15a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Exa 5.17
clc;
clear;
close;
format('v',7)
// Given data
Zo =  12.6;// in k ohm
Zo = Zo * 10^3;// in ohm
A = 60;// in dB
A = 10^(A/20)
Zof = 500;// in ohm
// Zof = Zo/(1+(A*Beta));
Beta = ((Zo/Zof)-1)/A;
disp(Beta,"The value of feed back factor is");
// Part (ii)
dAbyA= 20/100;// change in gain of basic amplifier
dAf_byAf =dAbyA*1/(1+A*Beta)*100;//change in overall gain  in  %
disp(dAf_byAf,"The change in overall gain for 20 % change in gain of the basic amplifier in % is");

// Note: In the book, there is calculation error to find the value of dAf/Af