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 /1970/CH10/EX10.3 | |
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 '1970/CH10/EX10.3')
-rwxr-xr-x | 1970/CH10/EX10.3/CH10Exa3.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/1970/CH10/EX10.3/CH10Exa3.sce b/1970/CH10/EX10.3/CH10Exa3.sce new file mode 100755 index 000000000..b1c9acb36 --- /dev/null +++ b/1970/CH10/EX10.3/CH10Exa3.sce @@ -0,0 +1,16 @@ +// Scilab code Exa10.3 : : Page-455 (2011)
+clc; clear;
+m_p = 1.007276; // Atomic mass of the proton, u
+m_H = 3.016049; // Atomic mass of the tritium, u
+m_He = 3.016029; // Atomic mass of the He ion, u
+m_n = 1.008665; // Atomic mass of the emitted neutron, u
+Q = (m_p+m_H-m_He-m_n)*931.5; // Q-value in MeV
+E_p = 3; // Kinetic energy of the proton, MeV
+theta = 30*3.14/180; // angle, radian
+u = sqrt(m_p*m_n*E_p)/(m_He+m_n)*cos(theta); //
+v = ((m_He*Q)+E_p*(m_He-m_p))/(m_He+m_n); //
+E_n = (u+sqrt(u^2+v))^2; // Kinetic energy of the emitted neutron,MeV
+printf("\nThe kinetic energy of the emitted neutron = %5.3f MeV", E_n);
+
+// Result
+// The kinetic energy of the emitted neutron = 1.445 MeV
\ No newline at end of file |