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 /446/CH13/EX13.4 | |
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 '446/CH13/EX13.4')
-rwxr-xr-x | 446/CH13/EX13.4/13_4.sce | 12 | ||||
-rwxr-xr-x | 446/CH13/EX13.4/13_4.txt | 6 |
2 files changed, 18 insertions, 0 deletions
diff --git a/446/CH13/EX13.4/13_4.sce b/446/CH13/EX13.4/13_4.sce new file mode 100755 index 000000000..e8ad319b9 --- /dev/null +++ b/446/CH13/EX13.4/13_4.sce @@ -0,0 +1,12 @@ +clear
+clc
+disp('Exa-13.4(a)');
+m2H=2.014102; //mass of various particles
+mn=1.008665;m63Cu=62.929599;
+m64Zn=63.929145;c2=931.5; //c^2=931.5 MeV
+Q=(m2H+m63Cu-mn-m64Zn)*c2; //Q of the reaction
+printf('The value of Q is %f MeV\n',Q);
+disp('Exa-13.4(b)');
+Kx=12.00;Ky=16.85;
+Ky=Q+Kx-Ky //kinetic energy of 64Zn
+printf('The value of Ky was found out to be %.2f MeV',Ky);
\ No newline at end of file diff --git a/446/CH13/EX13.4/13_4.txt b/446/CH13/EX13.4/13_4.txt new file mode 100755 index 000000000..dbfb76186 --- /dev/null +++ b/446/CH13/EX13.4/13_4.txt @@ -0,0 +1,6 @@ +
+ Exa-13.4(a)
+The value of Q is 5.487467 MeV
+
+ Exa-13.4(b)
+The value of Ky was found out to be 0.64 MeV
\ No newline at end of file |