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 /3014/CH4/EX4.13 | |
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 '3014/CH4/EX4.13')
-rwxr-xr-x | 3014/CH4/EX4.13/Ex4_13.sce | 12 | ||||
-rwxr-xr-x | 3014/CH4/EX4.13/Ex4_13.txt | 2 |
2 files changed, 14 insertions, 0 deletions
diff --git a/3014/CH4/EX4.13/Ex4_13.sce b/3014/CH4/EX4.13/Ex4_13.sce new file mode 100755 index 000000000..3f86677a1 --- /dev/null +++ b/3014/CH4/EX4.13/Ex4_13.sce @@ -0,0 +1,12 @@ +
+clc
+//Given that
+alpha_e = 1.5e-40 // Electronic polarizability in Fm^2
+N = 4e28 // density in atoms/m^3
+epsilon_0 = 8.85e-12 // Permittivity of free space
+
+printf("Example 4.13")
+k = N*alpha_e/(3*epsilon_0)
+epsilon_r = (1+ k*2)/(1-k)// Calculation of relative permittivity
+printf("\n Relative permittivity is %f\n\n\n",epsilon_r)
+
diff --git a/3014/CH4/EX4.13/Ex4_13.txt b/3014/CH4/EX4.13/Ex4_13.txt new file mode 100755 index 000000000..93c1c0480 --- /dev/null +++ b/3014/CH4/EX4.13/Ex4_13.txt @@ -0,0 +1,2 @@ +Example 4.13
+ Relative permittivity is 1.875912
\ No newline at end of file |