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 /1271/CH14/EX14.41 | |
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 '1271/CH14/EX14.41')
-rwxr-xr-x | 1271/CH14/EX14.41/41.txt | 6 | ||||
-rwxr-xr-x | 1271/CH14/EX14.41/example14_41.sce | 13 |
2 files changed, 19 insertions, 0 deletions
diff --git a/1271/CH14/EX14.41/41.txt b/1271/CH14/EX14.41/41.txt new file mode 100755 index 000000000..9f88a2c61 --- /dev/null +++ b/1271/CH14/EX14.41/41.txt @@ -0,0 +1,6 @@ + # PROBLEM 41 #
+Standard formula used
+ E = 1/2 * m*v^2
+
+ Velocity is 1.384257e+07 m/sec.
+ From the above result it is clear that the velocity of proton is nearly one twentieth of the velocity of light. So the relativistic calculation are not required.
diff --git a/1271/CH14/EX14.41/example14_41.sce b/1271/CH14/EX14.41/example14_41.sce new file mode 100755 index 000000000..4b1542074 --- /dev/null +++ b/1271/CH14/EX14.41/example14_41.sce @@ -0,0 +1,13 @@ +clc +// Given that +E = 1 // kinetic energy of proton in MeV +h = 6.62e-34 // Planck constant in J-sec +e = 1.6e-19 // charge on an electron in C +m = 1.67e-27 // mass of proton in kg +// Sample Problem 41 on page no. 14.37 +printf("\n # PROBLEM 41 # \n") +printf("Standard formula used \n ") +printf(" E = 1/2 * m*v^2 \n") +v = sqrt(2 * E * 1.6e-13 / m) +printf("\n Velocity is %e m/sec.\n From the above result it is clear that the velocity of proton is nearly one twentieth of the velocity of light. So the relativistic calculation are not required.",v) + |