diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /767/CH1/EX1.3.1 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '767/CH1/EX1.3.1')
-rwxr-xr-x | 767/CH1/EX1.3.1/Ch1Exa1_3_1.sci | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/767/CH1/EX1.3.1/Ch1Exa1_3_1.sci b/767/CH1/EX1.3.1/Ch1Exa1_3_1.sci new file mode 100755 index 000000000..e8390dbd9 --- /dev/null +++ b/767/CH1/EX1.3.1/Ch1Exa1_3_1.sci @@ -0,0 +1,10 @@ +// Scilab code Exa1.3.1 Momentum determination for a neutron using de-Broglie relation : Page 31 (2011)
+h = 6.626e-034; // Planck's constant, Js
+e = 1.602e-019; // Charge on an electron, C
+red_h = h/(2*%pi*e*1e+06); // Reduced Planck's constant, MeV
+lambda = 5.0e-015; // de_Broglie wavelength of neutron, m
+p = red_h/lambda; // Momentum of the neutron, MeV-s/m
+printf("\nThe momentum of the neutron from de-Broglie relation : %5.3e MeV-s/m", p);
+
+// Result
+// The momentum of the neutron from de-Broglie relation : 1.317e-007 MeV-s/m
\ No newline at end of file |