diff options
Diffstat (limited to '3014/CH4/EX4.9/Ex4_9.sce')
-rwxr-xr-x | 3014/CH4/EX4.9/Ex4_9.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/3014/CH4/EX4.9/Ex4_9.sce b/3014/CH4/EX4.9/Ex4_9.sce new file mode 100755 index 000000000..103e6bd00 --- /dev/null +++ b/3014/CH4/EX4.9/Ex4_9.sce @@ -0,0 +1,13 @@ +
+clc
+//Given that
+alpha_e = 2e-40 // Electronic polarisability in Fm^2
+N = 4e28 // density in atoms/m^3
+epsilon_0 = 8.85e-12 // Permittivity of free space
+
+printf("Example 4.9")
+epsilon_r = 1+ N*alpha_e/(epsilon_0) // Calculation of relative permittivity
+printf("\n Relative permittivity is %f\n\n\n",epsilon_r)
+
+
+
|