summaryrefslogtreecommitdiff
path: root/2939/CH1/EX1.19/Ex1_19.sce
diff options
context:
space:
mode:
Diffstat (limited to '2939/CH1/EX1.19/Ex1_19.sce')
-rwxr-xr-x2939/CH1/EX1.19/Ex1_19.sce24
1 files changed, 24 insertions, 0 deletions
diff --git a/2939/CH1/EX1.19/Ex1_19.sce b/2939/CH1/EX1.19/Ex1_19.sce
new file mode 100755
index 000000000..32ca6b7a0
--- /dev/null
+++ b/2939/CH1/EX1.19/Ex1_19.sce
@@ -0,0 +1,24 @@
+
+//Ex1_19
+
+clc;
+
+//Given:
+mh=1.007825;
+mn=1.008665;
+mt=3.016049; // atomic mass of Tritium
+mNi=59.93528; // atomic mass of Nickel
+
+//solution:
+
+// part (a)
+
+B1=(1*mh+2*mn-mt)*931; // in MeV
+Bh=B1/mt;
+printf("\n The mean binding energy of tritium atom in MeV is = %f ",Bh)
+
+// part (b)
+
+B2=(28*mh+32*mn-mNi)*931; // in MeV
+Bo=B2/mNi;
+printf("\n The mean binding energy of nickel atom in MeV is = %f ",Bo)