summaryrefslogtreecommitdiff
path: root/3830/CH2/EX2.6/Ex2_6.sce
blob: d06bcf648add7107a4b7cb31d2d0f9160b1513fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Exa 2.6

clc;
clear;

// Given

// An Amilifier under consideration
Av = 40; // Voltage gain
Vi = 0.1; // Input voltage without feedback(V)
Vi_fb = 2.4; // Input voltage with feedback(V)

// Solution

A = Av*Vi_fb/Vi;

// Av = A/(1-B*A) ; therefore,
B = (1-A/Av)/A;

printf(' The value of feedback ratio = %.6f \n ',B);