summaryrefslogtreecommitdiff
path: root/281/CH3/EX3.1/example3_1.sce
blob: eb140a16d4f7ab9afea636512e93681d19e3a7b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
disp('chapter 3 ex3.1')
disp('given')
disp('resistor connected R1=Rs=47kohms')
R1=47000
Rs=47000
disp('IB(max)=500nA and Ii(offset)=20nA')
IBmax=500*10^(-9)
Iioffset=20*10^(-9)
disp('V(max)=IB(max)*Rs')
Vmax=IBmax*Rs
disp('volt',Vmax)
disp('Vioffset=Ii(offset)*Rs')
Vioffset=Iioffset*Rs
disp('volt',Vioffset)