diff options
Diffstat (limited to '1004/CH2/EX2.14/Ch02Ex14.sci')
-rwxr-xr-x | 1004/CH2/EX2.14/Ch02Ex14.sci | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/1004/CH2/EX2.14/Ch02Ex14.sci b/1004/CH2/EX2.14/Ch02Ex14.sci new file mode 100755 index 000000000..2eed699c1 --- /dev/null +++ b/1004/CH2/EX2.14/Ch02Ex14.sci @@ -0,0 +1,7 @@ +// Scilab Code Ex2.14 Ratio of masses of a proton and an electron: Pg:54 (2008)
+RH = 1.09678e+07; // Rydberg constant for hydrogen, per metre
+RHe = 1.09722e+07; // Rydberg constant for helium, per metre
+MH_m_ratio = (RH - 1/4*RHe)/(RHe - RH); // Ratio of mass of a proton to that of an electron
+printf("\nThe ratio of mass of a proton to that of an electron = %4d", MH_m_ratio);
+// Result
+// The ratio of mass of a proton to that of an electron = 1869
\ No newline at end of file |