diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3875/CH10/EX10.31 | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '3875/CH10/EX10.31')
-rw-r--r-- | 3875/CH10/EX10.31/10_31.sce | 11 | ||||
-rw-r--r-- | 3875/CH10/EX10.31/10_31.txt | 1 |
2 files changed, 12 insertions, 0 deletions
diff --git a/3875/CH10/EX10.31/10_31.sce b/3875/CH10/EX10.31/10_31.sce new file mode 100644 index 000000000..cfeff01cb --- /dev/null +++ b/3875/CH10/EX10.31/10_31.sce @@ -0,0 +1,11 @@ +clc;
+clear;
+delta_x=5*10^-14 //diameter of nucleus in m
+h=6.63*10^-34 //plancks constant
+m=1.675*10^-27 //mass in kg
+
+//calculation
+p_min=h/(4*%pi*delta_x) //minimum momentum in kg-m/s
+E_min=((p_min)^2/(2*m))
+
+mprintf("The minimum kinetic energy of the nucleon is = %1.2e J or 0.33*10^-15 J",E_min)
diff --git a/3875/CH10/EX10.31/10_31.txt b/3875/CH10/EX10.31/10_31.txt new file mode 100644 index 000000000..ecefdf467 --- /dev/null +++ b/3875/CH10/EX10.31/10_31.txt @@ -0,0 +1 @@ +The minimum kinetic energy of the nucleon is = 3.32e-16 J or 0.33*10^-15 J
\ No newline at end of file |