diff options
Diffstat (limited to '3651/CH3/EX3.6/6.sce')
-rw-r--r-- | 3651/CH3/EX3.6/6.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/3651/CH3/EX3.6/6.sce b/3651/CH3/EX3.6/6.sce new file mode 100644 index 000000000..e6cca4249 --- /dev/null +++ b/3651/CH3/EX3.6/6.sce @@ -0,0 +1,13 @@ +
+//Variable declaration
+E=2*1000*1.6*10**-19 //in joules
+m=9.1*10**-31
+h=6.6*10*10**-34
+
+//Calculations
+p=sqrt(2*m*E)
+lamda= h/p
+
+//Result
+printf('Momentum%0.3f \n ',(p*10**23))
+printf('de Brolie wavelength =%0.3f *10**-11 m \n ',(lamda*10**10))
\ No newline at end of file |