diff options
Diffstat (limited to '2939/CH4/EX4.11/Ex4_11.sce')
-rwxr-xr-x | 2939/CH4/EX4.11/Ex4_11.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/2939/CH4/EX4.11/Ex4_11.sce b/2939/CH4/EX4.11/Ex4_11.sce new file mode 100755 index 000000000..9695efcf3 --- /dev/null +++ b/2939/CH4/EX4.11/Ex4_11.sce @@ -0,0 +1,17 @@ +
+// Ex4_11
+clc;
+
+// Given:
+Ma=4;//mass of alpha particle
+Mr=228;// mass of Th
+Ea=4; //in MeV
+
+
+// Solution:
+Er=(Ma/Mr)*Ea;// energy of recoil
+Et=Ea+Er;// total energy of transition
+
+dM=Et/931;// net mass loss in u
+
+printf("The net mass loss is = %f u",dM)
|