summaryrefslogtreecommitdiff
path: root/3755/CH9/EX9.2/Ex9_2.sce
blob: 14715a062db139931fa3a458fd2e6b67d6f90274 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
clear
//
//
//

//Variable declaration    
I=10*10^-3;     //current(A)
V=0.75;      //voltage(V)
T=300;    //temperature(K)
eta=2;

//Calculations
VT=T/11600;
I0=I*10^9/(exp(V/(eta*VT))-1);      //reverse saturation current(nA)

//Result
printf("\n reverse saturation current is %0.3f nA",I0)
printf("\n answer in the book is wrong")