summaryrefslogtreecommitdiff
path: root/3665/CH4/EX4.4
diff options
context:
space:
mode:
Diffstat (limited to '3665/CH4/EX4.4')
-rw-r--r--3665/CH4/EX4.4/Ex4_4.sce17
1 files changed, 17 insertions, 0 deletions
diff --git a/3665/CH4/EX4.4/Ex4_4.sce b/3665/CH4/EX4.4/Ex4_4.sce
new file mode 100644
index 000000000..698226236
--- /dev/null
+++ b/3665/CH4/EX4.4/Ex4_4.sce
@@ -0,0 +1,17 @@
+clc//
+//
+//
+
+//Variable declaration
+T1=273+25; //temperature(K)
+T2=273+350; //temperature(K)
+Ef=1.35; //energy(eV)
+k=8.625*10^-5;
+
+//Calculation
+x=(Ef/k)*((1/(2*T1))-(1/(2*T2)))/2.303;
+r=1/(10^(x)); //ratio of Frenkel defects
+
+
+//Result
+printf("\n ratio of Frenkel defects is %0.3f *10^-6",r*10^6)