diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3717/CH18/EX18.9/Ex18_9.sce | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '3717/CH18/EX18.9/Ex18_9.sce')
-rw-r--r-- | 3717/CH18/EX18.9/Ex18_9.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/3717/CH18/EX18.9/Ex18_9.sce b/3717/CH18/EX18.9/Ex18_9.sce new file mode 100644 index 000000000..98d6e6184 --- /dev/null +++ b/3717/CH18/EX18.9/Ex18_9.sce @@ -0,0 +1,12 @@ +// Ex18_9 Page:360 (2014)
+clc;clear;
+m_N12 = 12.018613; // Mass N-12 nucleus, MeV
+m_C12 = 12; // Mass C-12 nucleus, MeV
+m_e = 0.000549; // Mass of the electron, MeV
+E_gamma = 4.43; // Energy of the emitted gamma ray. MeV
+Q = (m_N12 - m_C12 - 2*m_e)*931.5; // Q value for the reaction, MeV
+E_max = Q - E_gamma; // The maximum kinetic energy of the beta particle, MeV
+printf("\nThe maximum kinetic energy of the beta particle = %5.2f MeV", E_max);
+
+// Result
+// The maximum kinetic energy of the beta particle = 11.89 MeV
\ No newline at end of file |