summaryrefslogtreecommitdiff
path: root/2102/CH3/EX3.7/exa_3_7.sce
diff options
context:
space:
mode:
Diffstat (limited to '2102/CH3/EX3.7/exa_3_7.sce')
-rwxr-xr-x2102/CH3/EX3.7/exa_3_7.sce18
1 files changed, 18 insertions, 0 deletions
diff --git a/2102/CH3/EX3.7/exa_3_7.sce b/2102/CH3/EX3.7/exa_3_7.sce
new file mode 100755
index 000000000..481180beb
--- /dev/null
+++ b/2102/CH3/EX3.7/exa_3_7.sce
@@ -0,0 +1,18 @@
+// Exa 3.7
+clc;
+clear;
+close;
+// Given data
+n=2;
+V_T=26;// in mV
+Io= 30;// in mA
+// (i) when
+I_D= 0.1;// in mA
+V_D= n*V_T*log(I_D/Io);// in mV
+disp(V_D,"(i) When I_D is 0.1 mA, The junction forward-bias voltage in mV is : ")
+// (ii) when
+I_D= 10;// in mA
+V_D= n*V_T*log(I_D/Io);// in mV
+disp(V_D,"(ii) When I_D is 10 mA, The junction forward-bias voltage in mV is : ")
+
+// Note: There is calculation error in the book so answer in the book is wrong.