summaryrefslogtreecommitdiff
path: root/1757/CH6/EX6.10/EX6_10.sce
blob: 2f69e7ff4ce8c5fdf9269a40d70eec430a790d4d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
//Example6.10  // To determine the range of the differential voltage gain
clc;
clear;
close;
//R1 = 1 K ohm to 25 K ohm ;
R2 = 50 ; // K ohm
R3 = 10 ;  // K ohm
R4 = 10 ; // K ohm

// the output of instrumentation amplifier is given by
//Vo = (R4/R3)*(1+(2*R2/R1))*(VI@-VI1);

// the differential voltage gain of the instrumentation amplifier can be written as
//Av = (Vo/(VI2-VI1)) = (R4/R3)*(1+(2R2/R1));

// For R1 = 1 K ohm   the maximum differential voltage gain of the instrumentation amplifier is
R1 = 1 ; // K ohm
Av = (R4/R3)*(1+(2*R2/R1));
disp('the maximum differential voltage gain of the instrumentation amplifier is = '+string(Av)+ ' ');

// For R1 = 25 K ohm   the mminimum differential voltage gain of the instrumentation amplifier is
R1 = 25 ; // K ohm
Av = (R4/R3)*(1+(2*R2/R1));
disp('the minimum differential voltage gain of the instrumentation amplifier is = '+string(Av)+ ' ');

disp(' the range of the differential voltage gain of the instrumentation amplifier is ');
disp('                    5 <= Av <= 101 ');