summaryrefslogtreecommitdiff
path: root/1004/CH2/EX2.14/Ch02Ex14.sci
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1004/CH2/EX2.14/Ch02Ex14.sci
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '1004/CH2/EX2.14/Ch02Ex14.sci')
-rwxr-xr-x1004/CH2/EX2.14/Ch02Ex14.sci7
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