diff options
Diffstat (limited to '2243/CH8/EX8.5')
-rwxr-xr-x | 2243/CH8/EX8.5/Ex8_5.sce | 11 | ||||
-rwxr-xr-x | 2243/CH8/EX8.5/Res8_5.txt | 1 |
2 files changed, 12 insertions, 0 deletions
diff --git a/2243/CH8/EX8.5/Ex8_5.sce b/2243/CH8/EX8.5/Ex8_5.sce new file mode 100755 index 000000000..2dfd28c67 --- /dev/null +++ b/2243/CH8/EX8.5/Ex8_5.sce @@ -0,0 +1,11 @@ +clc();
+clear;
+//Given :
+Mn = 14.00753; //mass of Nitrogen 14 in u
+Mo = 17.0045; // mass of Oxygen 17 in u
+m_alpha = 4.00387; // mass of alpha particle in u
+mp = 1.00184; // mass of proton in u
+//Q = (m_alpha + Mn - Mo - mp)*c^2
+//// 1 u * c^2 = 931.5 MeV , where 1 u = 1.66*10^-27 kg and c = 3*10^8 m/s
+Q = (m_alpha + Mn - Mo - mp)*931.5 ;// Q value in MeV
+printf("Q value is %.1f MeV",Q);
diff --git a/2243/CH8/EX8.5/Res8_5.txt b/2243/CH8/EX8.5/Res8_5.txt new file mode 100755 index 000000000..4b07a7745 --- /dev/null +++ b/2243/CH8/EX8.5/Res8_5.txt @@ -0,0 +1 @@ + Q value is 4.7 MeV
\ No newline at end of file |