diff options
Diffstat (limited to '3701/CH8/EX8.8/Ex8_8.sce')
-rw-r--r-- | 3701/CH8/EX8.8/Ex8_8.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/3701/CH8/EX8.8/Ex8_8.sce b/3701/CH8/EX8.8/Ex8_8.sce new file mode 100644 index 000000000..0c0803d34 --- /dev/null +++ b/3701/CH8/EX8.8/Ex8_8.sce @@ -0,0 +1,17 @@ +////Given
+E=10*10**6 //ev
+T=2.0*10**-3
+m=6.68*10**-27 //kg
+h=1.054*10**-34 //Js
+e=1.6*10**-19
+v0=30.0*10**6 //ev
+
+//Calculation
+//
+K=(sqrt(2*m*(v0-E)*e))/h
+a=(1/(2.0*K))*(2.303*log10((16/T)*(E/v0)*(1-(E/v0))))
+
+//Result
+printf("\n The width of the barrier is %e m",a)
+printf("\nthe answers vary due to round off error")
+
|