summaryrefslogtreecommitdiff
path: root/3755/CH9/EX9.5/Ex9_5.sce
diff options
context:
space:
mode:
Diffstat (limited to '3755/CH9/EX9.5/Ex9_5.sce')
-rw-r--r--3755/CH9/EX9.5/Ex9_5.sce18
1 files changed, 18 insertions, 0 deletions
diff --git a/3755/CH9/EX9.5/Ex9_5.sce b/3755/CH9/EX9.5/Ex9_5.sce
new file mode 100644
index 000000000..f22442c59
--- /dev/null
+++ b/3755/CH9/EX9.5/Ex9_5.sce
@@ -0,0 +1,18 @@
+clear
+//
+//
+//
+
+//Variable declaration
+T=300; //temperature(K)
+eta=1;
+I0=1;
+I=-0.9*I0; //saturation current density(A/m^2)
+
+//Calculations
+VT=T/11600;
+x=(I/I0)+1;
+V=log(x)*VT; //voltage applied(V)
+
+//Result
+printf("\n voltage applied is %0.2f Volt",V)