blob: 2adfd7f2696e36423074051a9d9aec86e2fc3d6c (
plain)
1
2
3
4
5
6
7
8
9
10
|
//Example 4.16.
clc
format(6)
I=5*10^-3
T=300
disp("Forward resistance of a PN junction diode, rf = (eta*VT)/I where VT = T/11600 and eta = 2 for silicon")
disp("Therefore, rf = 2*(T/11600) / 5*10^-3")
eta=2 //for silicon
rf=600/(11600*5*10^-3)
disp(rf," rf(ohm) = ")
|