summaryrefslogtreecommitdiff
path: root/2243/CH8/EX8.4
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /2243/CH8/EX8.4
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '2243/CH8/EX8.4')
-rwxr-xr-x2243/CH8/EX8.4/Ex8_4.sce10
-rwxr-xr-x2243/CH8/EX8.4/Res8_4.txt1
2 files changed, 11 insertions, 0 deletions
diff --git a/2243/CH8/EX8.4/Ex8_4.sce b/2243/CH8/EX8.4/Ex8_4.sce
new file mode 100755
index 000000000..174a4fafd
--- /dev/null
+++ b/2243/CH8/EX8.4/Ex8_4.sce
@@ -0,0 +1,10 @@
+clc();
+clear;
+//Given :
+m_alpha = 4.001506106; // mass of an alpha particle in u
+mp = 1.007276470 ; // proton mass in u
+mn = 1.008665012; // neutron mass in u
+//E = ( 2*mp + 2*mn - m_alpha)*c^2
+// 1 u * c^2 = 931.5 MeV , where 1 u = 1.66*10^-27 kg and c = 3*10^8 m/s
+E = (2*mp + 2*mn - m_alpha)*931.5; // Binding energy in MeV
+printf("Average binding energy per nucleon : %.3f MeV",E/4);
diff --git a/2243/CH8/EX8.4/Res8_4.txt b/2243/CH8/EX8.4/Res8_4.txt
new file mode 100755
index 000000000..f6e957770
--- /dev/null
+++ b/2243/CH8/EX8.4/Res8_4.txt
@@ -0,0 +1 @@
+Average binding energy per nucleon : 7.074 MeV \ No newline at end of file