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/CH8/EX8.10 | |
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/CH8/EX8.10')
-rwxr-xr-x | 1970/CH8/EX8.10/CH08Exa10.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/1970/CH8/EX8.10/CH08Exa10.sce b/1970/CH8/EX8.10/CH08Exa10.sce new file mode 100755 index 000000000..e72836a43 --- /dev/null +++ b/1970/CH8/EX8.10/CH08Exa10.sce @@ -0,0 +1,12 @@ +// Scilab code Exa8.10 : : Page-352 (2011) +clc; clear; +r = 2e-015; // Range of nuclear force, metre +h_kt = 1.0546e-34; // Reduced value of Planck's constant, joule sec +m = 1.674e-27; // Mass of each nucleon, Kg +K = round (2*h_kt^2/(2*m*r^2*1.6023e-13)); // Kinetic energy of each nucleon in centre of mass frame, mega electron volts +K_t = 2*K; // Total kinetic energy, mega electron volts +K_inc = 2*K_t; // Kinetic energy of the incident nucleon, mega electron volts +printf("\nThe kinetic energy of each nucleon = %d MeV\nThe total kinetic energy = %d MeV\nThe kinetic energy of the incident nucleon = %d MeV", K, K_t, K_inc); + +// Result +//
\ No newline at end of file |