blob: 2fdd4a31a54608833044242d288e9c128876a4d4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
clc
//Given that
r = 0.055 // Radius of hydrogen atom in nm
n = 9.8e26 // Number of atoms/cc
epsilon_0 = 8.854e-12 // Permittivity of free space
printf("Example 4.6")
alpha_e = 4*%pi*epsilon_0*(r*1e-9)^3 // Calculation of electronic polarisability
epsilon_r = 1+n*alpha_e/epsilon_0 // Calculation of relative permeability
printf("\n Electronic polarisability is %eFm^2 \n Relative permeability is %f \n\n\n",alpha_e,epsilon_r)
|