diff options
Diffstat (limited to '2939/CH1/EX1.11')
-rwxr-xr-x | 2939/CH1/EX1.11/Ex1_11.sce | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/2939/CH1/EX1.11/Ex1_11.sce b/2939/CH1/EX1.11/Ex1_11.sce new file mode 100755 index 000000000..fc5f3418f --- /dev/null +++ b/2939/CH1/EX1.11/Ex1_11.sce @@ -0,0 +1,25 @@ +//Ex1_11
+
+clc;
+
+//Given:
+mh=1.0078;
+mn=1.0087;
+ma=4.0026;
+mo=15.9949;
+Ah=4.0026; // atomic mass of helium
+Ao=15.9949; // atomic mass of oxygen
+
+//solution:
+
+// part (a)
+
+B1=(2*mh+2*mn-ma)*931; // in MeV
+Bh=B1/Ah;
+printf("\n The mean binding energy of helium atom in MeV is = %f ",Bh)
+
+// part (b)
+
+B2=(8*mh+8*mn-mo)*931; // in MeV
+Bo=B2/Ao;
+printf("\n The mean binding energy of oxygen atom in MeV is = %f ",Bo)
|