From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 2243/CH8/EX8.4/Ex8_4.sce | 10 ++++++++++ 2243/CH8/EX8.4/Res8_4.txt | 1 + 2 files changed, 11 insertions(+) create mode 100755 2243/CH8/EX8.4/Ex8_4.sce create mode 100755 2243/CH8/EX8.4/Res8_4.txt (limited to '2243/CH8/EX8.4') 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 -- cgit