diff options
Diffstat (limited to '3014/CH4/EX4.6/Ex4_6.sce')
-rwxr-xr-x | 3014/CH4/EX4.6/Ex4_6.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/3014/CH4/EX4.6/Ex4_6.sce b/3014/CH4/EX4.6/Ex4_6.sce new file mode 100755 index 000000000..2fdd4a31a --- /dev/null +++ b/3014/CH4/EX4.6/Ex4_6.sce @@ -0,0 +1,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)
+
+
+
|