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 /1970/CH1/EX1.14 | |
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 '1970/CH1/EX1.14')
-rwxr-xr-x | 1970/CH1/EX1.14/Ch01Exa14.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/1970/CH1/EX1.14/Ch01Exa14.sce b/1970/CH1/EX1.14/Ch01Exa14.sce new file mode 100755 index 000000000..0eabf5b42 --- /dev/null +++ b/1970/CH1/EX1.14/Ch01Exa14.sce @@ -0,0 +1,13 @@ +// Scilab code Exa1.14 : : P.no. 56(2011)
+clc; clear;
+A = 50; // Mass number
+M_Sc = 49.951730; // Mass of scandium, atomic mass unit
+M_Ti = 49.944786; // Mass of titanium, atomic mass unit
+M_V = 49.947167; // Mass of vanadium, atomic mass unit
+M_Cr = 49.946055; // Mass of chromium, atomic mass unit
+M_Mn = 49.954215; // Mass of manganese, atomic mass unit
+a_p = (M_Mn-M_Cr+M_V-M_Ti)/(8*A^(-3/4))*931.5; // Pairing energy temr, mega electron volts
+printf("\nPairing energy term : %5.2f MeV", a_p);
+
+// Result
+// Pairing energy term : 23.08 MeV
|