diff options
Diffstat (limited to '2795/CH14/EX14.2/Ex14_02.sce')
-rwxr-xr-x | 2795/CH14/EX14.2/Ex14_02.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/2795/CH14/EX14.2/Ex14_02.sce b/2795/CH14/EX14.2/Ex14_02.sce new file mode 100755 index 000000000..427c8e888 --- /dev/null +++ b/2795/CH14/EX14.2/Ex14_02.sce @@ -0,0 +1,15 @@ +// Scilab Code Ex14.2: Page-525(2014)
+clc; clear;
+e = 1.6e-019; // Energy equivalent of 1 eV, J
+h = 6.62e-034; // Planck's oconstant, Js
+c = 3.00e+008; // For simplicity assume speed of light to be unity
+h_bar = h/(2*%pi); // Reduced Planck's constant, Js
+m_W = 80.4; // Energy equivalent of mass of W- particle, MeV
+R_W = h_bar*c/(2*m_W*e*1e+009); // Range of W- particle, m
+delta_t = h_bar/(2*m_W*e*1e+009); // Time during which the energy conservation is violated, s
+printf("\nThe range of W- particle = %3.1e m", R_W);
+printf("\nThe time during which the energy conservation is violated = %1.0e s", delta_t);
+
+// Result
+// The range of W- particle = 1.2e-018 m
+// The time during which the energy conservation is violated = 4e-027 s
|