diff options
Diffstat (limited to '3401/CH3/EX3.2/Ex3_2.sce')
-rwxr-xr-x | 3401/CH3/EX3.2/Ex3_2.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/3401/CH3/EX3.2/Ex3_2.sce b/3401/CH3/EX3.2/Ex3_2.sce new file mode 100755 index 000000000..0e5b916e5 --- /dev/null +++ b/3401/CH3/EX3.2/Ex3_2.sce @@ -0,0 +1,18 @@ +clc
+
+P=10
+a=5*10^-10 // a=5 Armstrong
+h=1.054*10^-34
+m=9.11*10^-31 //kg
+
+//alpha*a=%pi
+//sqrt((2*m*E2)/h^2)*a=%pi
+E2=(%pi^2*h^2)/(2*m*a^2)
+disp(E2,'E2= %f J\n')
+E2=E2*6.2415*10^18
+disp(E2,'E2= %f eV')
+
+E1=1.053 //eV
+AE=E2-E1
+disp(AE,'AE= %f eV')
+
|