diff options
Diffstat (limited to '767/CH7/EX7.2.1')
-rwxr-xr-x | 767/CH7/EX7.2.1/Ch07Exa7_2_1.sci | 82 |
1 files changed, 82 insertions, 0 deletions
diff --git a/767/CH7/EX7.2.1/Ch07Exa7_2_1.sci b/767/CH7/EX7.2.1/Ch07Exa7_2_1.sci new file mode 100755 index 000000000..24b4b84a9 --- /dev/null +++ b/767/CH7/EX7.2.1/Ch07Exa7_2_1.sci @@ -0,0 +1,82 @@ +// Scilab code Exa7.2.1: To calculate the energy of alpha particle :P.no. 308 (2011)
+ E_p = 30; // Energy required for one pair, eV
+ n = 150000; // Number of pairs
+ E_a = n*E_p/10^6; // Energy of alpha particle, Mev
+ printf("\n The energy of alpha particle : %3.1f Mev", E_a)
+// Result
+// The energy of alpha particle : 4.5 Mev
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
|