summaryrefslogtreecommitdiff
path: root/3665/CH5/EX5.4/Ex5_4.sce
diff options
context:
space:
mode:
Diffstat (limited to '3665/CH5/EX5.4/Ex5_4.sce')
-rw-r--r--3665/CH5/EX5.4/Ex5_4.sce17
1 files changed, 17 insertions, 0 deletions
diff --git a/3665/CH5/EX5.4/Ex5_4.sce b/3665/CH5/EX5.4/Ex5_4.sce
new file mode 100644
index 000000000..ef1ab0de1
--- /dev/null
+++ b/3665/CH5/EX5.4/Ex5_4.sce
@@ -0,0 +1,17 @@
+clc//
+//
+//
+
+//Variable declaration
+FE=10/100; //fermi function
+EF=5.5; //energy function(eV)
+e=1.6*10^-19; //charge(c)
+k=1.38*10^-23; //boltzmann constant(J)
+
+//Calculation
+E=EF+(EF/100); //energy(eV)
+x=log((1/FE)-1);
+T=(E-EF)*e/(k*x); //temperature(K)
+
+//Result
+printf("\n temperature is %0.1f K",T)