summaryrefslogtreecommitdiff
path: root/3717/CH19/EX19.2/Ex19_2.sce
diff options
context:
space:
mode:
Diffstat (limited to '3717/CH19/EX19.2/Ex19_2.sce')
-rw-r--r--3717/CH19/EX19.2/Ex19_2.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/3717/CH19/EX19.2/Ex19_2.sce b/3717/CH19/EX19.2/Ex19_2.sce
new file mode 100644
index 000000000..7f16f7ca9
--- /dev/null
+++ b/3717/CH19/EX19.2/Ex19_2.sce
@@ -0,0 +1,14 @@
+// Ex19_2 Page:368 (2014)
+clc;clear;
+m_x = 1.008665; // Mass of a proton, u
+m_y = 1.007825; // Mass of a neutron, u
+M_X = 18.998404; // Atomic mass of F-19, u
+M_Y = 19.003577; // Atomic mass of O-19, u
+Q = (M_X + m_x - m_y - M_Y)*931.5; // Q-value of the reaction, MeV
+K_x_min = (1 + m_x/M_X)*abs(Q); // The threshold energy for the reaction, MeV
+printf("\nThe Q-value of the reaction = %6.4f MeV", Q);
+printf("\nThe threshold energy for the reaction = %4.2f MeV", K_x_min);
+
+// Result
+// The Q-value of the reaction = -4.0362 MeV
+// The threshold energy for the reaction = 4.25 MeV \ No newline at end of file