summaryrefslogtreecommitdiff
path: root/3755/CH9/EX9.2/Ex9_2.sce
diff options
context:
space:
mode:
Diffstat (limited to '3755/CH9/EX9.2/Ex9_2.sce')
-rw-r--r--3755/CH9/EX9.2/Ex9_2.sce18
1 files changed, 18 insertions, 0 deletions
diff --git a/3755/CH9/EX9.2/Ex9_2.sce b/3755/CH9/EX9.2/Ex9_2.sce
new file mode 100644
index 000000000..14715a062
--- /dev/null
+++ b/3755/CH9/EX9.2/Ex9_2.sce
@@ -0,0 +1,18 @@
+clear
+//
+//
+//
+
+//Variable declaration
+I=10*10^-3; //current(A)
+V=0.75; //voltage(V)
+T=300; //temperature(K)
+eta=2;
+
+//Calculations
+VT=T/11600;
+I0=I*10^9/(exp(V/(eta*VT))-1); //reverse saturation current(nA)
+
+//Result
+printf("\n reverse saturation current is %0.3f nA",I0)
+printf("\n answer in the book is wrong")