summaryrefslogtreecommitdiff
path: root/1004/CH2/EX2.15
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.15
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.15')
-rwxr-xr-x1004/CH2/EX2.15/Ch02Ex15.sci15
1 files changed, 15 insertions, 0 deletions
diff --git a/1004/CH2/EX2.15/Ch02Ex15.sci b/1004/CH2/EX2.15/Ch02Ex15.sci
new file mode 100755
index 000000000..7c7de5afe
--- /dev/null
+++ b/1004/CH2/EX2.15/Ch02Ex15.sci
@@ -0,0 +1,15 @@
+// Scilab Code Ex2.15 First Bohr Orbit in hydrogen atom: Pg:56 (2008)s
+n = 1; // Principle quantum number of first orbit in H-atom
+h = 6.624e-034; // Planck's Constant, Js
+c = 3e+08; // Speed of light, m/s
+epsilon_0 = 8.85e-012; // Absolute electrical permittivity of free space, coulomb square per newton per metre square
+Z = 1; // Atomic number of hydrogen
+m = 9.1e-031; // Mass of an electron, kg
+e = 1.6e-019; // Charge on an electron, coulomb
+r = epsilon_0*n^2*h^2/(%pi*m*Z*e^2); // Radius of first Bohr's orbit, m
+v = Z*e^2/(2*8.85e-012*h*n); // Velocity of electron in the first Bohr orbit, m/s
+printf("\nThe radius of first Bohr orbit = %5.3f angstrom", r/1e-010);
+printf("\nThe velocity of electron in first Bohr orbit = (1/%3d)c", 1/v*c);
+// Result
+// The radius of first Bohr orbit = 0.531 angstrom
+// The velocity of electron in first Bohr orbit = (1/137)c \ No newline at end of file