summaryrefslogtreecommitdiff
path: root/196/CH3/EX3.11/example_3_11.sce
blob: 60030607bb3b025a6fe59d3f153e1c47abb961fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//Chapter 3
//Example 3-11
//ProbonThreeChannelInvertingAmplifier 
//Page 56
clear;clc;
//Channel 1
Ri= 10*10^3;//Choosing Input resistance
Acl = -10 ;
Rf1 = - (Acl * Ri);
printf("\n\n Value of Rf1 =  %.4f ohm \n\n",Rf1)
//Channel 2
Acl1 = -5;
Rf2 = - (Acl1 * Ri);
printf("\n\n Value of Rf2 =  %.4f ohm \n\n",Rf2)
//channel 3
Acl2 = -2;
Rf3 = - (Acl2 * Ri);
printf("\n\n Value of Rf3 =  %.4f ohm \n\n",Rf3)