diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /635/CH14/EX14.4 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '635/CH14/EX14.4')
-rwxr-xr-x | 635/CH14/EX14.4/Ch14Ex4.sci | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/635/CH14/EX14.4/Ch14Ex4.sci b/635/CH14/EX14.4/Ch14Ex4.sci new file mode 100755 index 000000000..1f1313369 --- /dev/null +++ b/635/CH14/EX14.4/Ch14Ex4.sci @@ -0,0 +1,16 @@ +// Scilab Code Ex14.4 Calculating electric polarizability of Oxygen atom: Page-465 (2010)
+e = 1.602e-019; // Charge on an electron, coulomb
+p = 0.5e-022; // Dipole moment of oxygen atom, C-m
+d = 4e-017; // Distnace of the centre of negative charge cloud from the nucleus, m
+epsilon_0 = 8.85e-012; // Electrical permittivity of free space, coulomb square per newton per metre
+// In equilibrium, Coulomb interaction = Lorentz force
+// i.e. 8*e*E = (8*e)*(8*e)/(4*%pi*epsilon_0*d^2)
+// Solving for E
+E = 8*e/(4*%pi*epsilon_0*d^2); // The strength of local electric field, volt per metre
+// As p = alpha*E, solving for alpha
+disp(E);
+alpha = p/E; // Atomic polarizability of oxygen, farad-metre square
+printf("\nThe atomic polarizability of oxygen = %3.1e farad-metre square", alpha);
+// Result
+// The atomic polarizability of oxygen = 6.9e-048 farad-metre square
+
|