summaryrefslogtreecommitdiff
path: root/2102/CH2/EX2.37
diff options
context:
space:
mode:
Diffstat (limited to '2102/CH2/EX2.37')
-rwxr-xr-x2102/CH2/EX2.37/exa_2_37.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/2102/CH2/EX2.37/exa_2_37.sce b/2102/CH2/EX2.37/exa_2_37.sce
new file mode 100755
index 000000000..273e63f7b
--- /dev/null
+++ b/2102/CH2/EX2.37/exa_2_37.sce
@@ -0,0 +1,14 @@
+// Exa 2.37
+clc;
+clear;
+close;
+// Given data
+format('v',11)
+Io= 1;// in nA
+Io= Io*10^-9;// in A
+T= 27+273;//in K
+V_T= T/11600;// in V
+V_F= 0.3;// in V
+n=1;
+I_F= Io*[%e^(V_F/(n*V_T))-1];// in A
+disp(I_F,"The forward current of diode in ampere is : ")