blob: bfaaeb57db10d537b164d8b6bb28c44718b9bafc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
//Example 4.13.
clc
format(7)
VF=0.6
T=298
Io=10^-5
eta=2
VT=T/11600
disp("The volt-equivalent of the temperature(T) is,")
disp(VT,"VT(V) = T / 11600 = ")
format(6)
I=Io*((%e^((VF/(eta*VT))))-1)
disp(I,"Therefore, the diode current, I(A) = Io*e^((VF/eta*VT)-1) =")
|