summaryrefslogtreecommitdiff
path: root/3755/CH6/EX6.4/Ex6_4.sce
diff options
context:
space:
mode:
Diffstat (limited to '3755/CH6/EX6.4/Ex6_4.sce')
-rw-r--r--3755/CH6/EX6.4/Ex6_4.sce17
1 files changed, 17 insertions, 0 deletions
diff --git a/3755/CH6/EX6.4/Ex6_4.sce b/3755/CH6/EX6.4/Ex6_4.sce
new file mode 100644
index 000000000..4f272ba9a
--- /dev/null
+++ b/3755/CH6/EX6.4/Ex6_4.sce
@@ -0,0 +1,17 @@
+clear
+//
+//
+//
+
+//Variable declaration
+h=6.60*10^-34; //planck's constant(J-sec)
+m=1.674*10^-27; //mass of proton(kg)
+lamda=10^-10; //de-broglie wavelength(m)
+e=1.6*10^-19; //charge of electron(c)
+
+//Calculations
+E=h^2/(2*m*lamda^2); //energy of neutron(J)
+E=E/e; //energy of neutron(eV)
+
+//Result
+printf("\n energy of neutron is %0.2f *10^-2 eV",E*10^2)