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 /1026/CH13/EX13.1/Example13_1.sce | |
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 '1026/CH13/EX13.1/Example13_1.sce')
-rwxr-xr-x | 1026/CH13/EX13.1/Example13_1.sce | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/1026/CH13/EX13.1/Example13_1.sce b/1026/CH13/EX13.1/Example13_1.sce new file mode 100755 index 000000000..010ef312c --- /dev/null +++ b/1026/CH13/EX13.1/Example13_1.sce @@ -0,0 +1,23 @@ +//chapter13,Example13_1,pg 391
+
+//xMy -> x-mass no., M-element, y-atomic no.
+
+M7Li3=7.018232//mass of 7li3 (amu)
+
+Malpha=4.003874//mass of alpha particle (amu)
+
+Mpr=1.008145//mass of proton (amu)
+
+//reaction:- 7li3 + 1H1-> 4He2 + 4He2
+
+delM=M7Li3+Mpr-2*Malpha//mass defect
+
+Q=delM*931//1 amu= 931 Mev
+
+Ey=9.15//K.E energy of product nucleus
+
+Ex=2*Ey-Q//K.E of incident particle
+
+printf("kinetic energy of incident proton\n")
+
+printf("Ex=%.2f Mev",Ex)
\ No newline at end of file |