diff options
Diffstat (limited to '2198/CH2/EX2.9.4/Ex2_9_4.sce')
-rwxr-xr-x | 2198/CH2/EX2.9.4/Ex2_9_4.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/2198/CH2/EX2.9.4/Ex2_9_4.sce b/2198/CH2/EX2.9.4/Ex2_9_4.sce new file mode 100755 index 000000000..cfd7c6f28 --- /dev/null +++ b/2198/CH2/EX2.9.4/Ex2_9_4.sce @@ -0,0 +1,16 @@ +//Ex 2.9.4
+clc;clear;close;
+format('v',8);
+
+//Given :
+T=27+273;//K
+V1=0.4;//V
+V2=0.42;//V
+I1=10;//mA
+I2=20;//mA
+VT=T/11600;//V
+Eta=1/log(I1/I2)*(V1-V2)/VT
+disp(Eta,"Value of Eta : ");
+Io=I1/(exp(V1/Eta/VT)-1)*10^-3;//A
+disp(Io*10^9,"Current, Io in nA : ");
+//Ans in the book is not accurate.
|