summaryrefslogtreecommitdiff
path: root/2459/CH16/EX16.9/Ex16_9.sce
blob: 1f6fd1870586c015fd04419dc5a169c65d15aea0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//chapter16
//example16.9
//page351

Av=10000
R1=10 // kilo ohm
R2=90 // kilo ohm
Zin=10 // kilo ohm
Zout=100d-3 // kilo ohm

mv=R1/(R1+R2)
Avf=Av/(1+Av*mv)
Zin_dash=(1+Av*mv)*Zin
Zout_dash=Zout/(1+Av*mv)

printf("feedbackfraction  = %.1f \n",mv)

printf("voltage gain with negative feedback = %.1f \n",Avf)

printf("input impedence with feedback = %.3f kilo ohm or %.3f mega ohm \n",Zin_dash,Zin_dash/1000)

printf("output impedence with feedback = %f kilo ohm or %.3f ohm \n",Zout_dash,Zout_dash*1000)