diff options
Diffstat (limited to '3665/CH8/EX8.10/Ex8_10.sce')
-rw-r--r-- | 3665/CH8/EX8.10/Ex8_10.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/3665/CH8/EX8.10/Ex8_10.sce b/3665/CH8/EX8.10/Ex8_10.sce new file mode 100644 index 000000000..65fc52b12 --- /dev/null +++ b/3665/CH8/EX8.10/Ex8_10.sce @@ -0,0 +1,16 @@ +clc//
+//
+//
+
+//Variable declaration
+k=1.38*10^-23; //boltzmann constant
+EF=0.18; //fermi shift(eV)
+E=1.2; //energy gap(eV)
+e=1.6*10^-19;
+r=5;
+
+//Calculation
+T=EF*e*4/(3*k*log(r)); //temperature(K)
+
+//Result
+printf("\n temperature is %0.0f K",T)
|