diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /2243/CH8/EX8.3 | |
download | Scilab-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.3')
-rwxr-xr-x | 2243/CH8/EX8.3/Ex8_3.sce | 10 | ||||
-rwxr-xr-x | 2243/CH8/EX8.3/Res8_3.txt | 1 |
2 files changed, 11 insertions, 0 deletions
diff --git a/2243/CH8/EX8.3/Ex8_3.sce b/2243/CH8/EX8.3/Ex8_3.sce new file mode 100755 index 000000000..dfcb20c8f --- /dev/null +++ b/2243/CH8/EX8.3/Ex8_3.sce @@ -0,0 +1,10 @@ +clc();
+clear;
+//Given :
+mp = 1.007276470 ; // proton mass in u
+mn = 1.008665012; // neutron mass in u
+md = 2.013553215; // deuteron mass in u
+//E = ( mp + mn - md)*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 = (mp + mn - md)*931.5; // Binding energy in MeV
+printf("Binding energy : %.3f MeV",E);
diff --git a/2243/CH8/EX8.3/Res8_3.txt b/2243/CH8/EX8.3/Res8_3.txt new file mode 100755 index 000000000..81ffc17e4 --- /dev/null +++ b/2243/CH8/EX8.3/Res8_3.txt @@ -0,0 +1 @@ + Binding energy : 2.225 MeV
\ No newline at end of file |