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