summaryrefslogtreecommitdiff
path: root/3651/CH3/EX3.5/5.sce
diff options
context:
space:
mode:
Diffstat (limited to '3651/CH3/EX3.5/5.sce')
-rw-r--r--3651/CH3/EX3.5/5.sce11
1 files changed, 11 insertions, 0 deletions
diff --git a/3651/CH3/EX3.5/5.sce b/3651/CH3/EX3.5/5.sce
new file mode 100644
index 000000000..e0ff96ccb
--- /dev/null
+++ b/3651/CH3/EX3.5/5.sce
@@ -0,0 +1,11 @@
+//Variable declaration
+KE=10 //Kinetic Energy of neutron in keV
+m=1.675*10**-27
+h=6.625*10**-34
+//Calculations
+KE=10**4*1.6*10**-19 //in joule
+v=((2*KE)/m)**(1/2) //derived from KE=1/2*m*v**2
+lamda=h/(m*v)
+//Results
+printf('Velocity =%0.3f *10**6 m/s \n ',(v/10**6))
+printf('Wavelength =%0.3f Angstorm \n ',(lamda*10**10))