From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 1970/CH8/EX8.10/CH08Exa10.sce | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100755 1970/CH8/EX8.10/CH08Exa10.sce (limited to '1970/CH8/EX8.10') 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 -- cgit