summaryrefslogtreecommitdiff
path: root/377/CH9/EX9.8/9_8.sce
blob: 6f4d3b9adc64940135e6aceae42742603cd54239 (plain)
1
2
3
4
5
6
7
8
9
10
disp("I=Is*(exp(e*Va/(K*T)-1))");
Is=1*10^-6;
a=0.025875;  //say a=K*T/q
Va=0.2;
I=Is*(exp(Va/a)-1);
printf('\n The value of I is %f A',I);
rdc=Va/I;
printf('\n The value of rdc is %f ohm',rdc);
rac=a/I;
printf('\n The value of rac is %f ohm',rac);