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 /1664/CH11/EX11.6 | |
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 '1664/CH11/EX11.6')
-rwxr-xr-x | 1664/CH11/EX11.6/Ex11_6.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/1664/CH11/EX11.6/Ex11_6.sce b/1664/CH11/EX11.6/Ex11_6.sce new file mode 100755 index 000000000..b465c1318 --- /dev/null +++ b/1664/CH11/EX11.6/Ex11_6.sce @@ -0,0 +1,11 @@ +
+//Example NO.11.6
+//Page No.337
+clc;clear;
+E0 = (8.854*10^-12);
+P = (4.3*10^-8);//polarization -[C/m^2].
+E = 1000;//Electric field -[V/m].
+Er = ((P/(E0*E))+1);//Relative permittivity of the crystal.
+printf("\nRelative permittivity of the crystal is %.3f",Er);
+
+//Last statement of this numerical is wrong in the textbook.Here we have to find relative permittivity of the crystal and not the dielectric constant.//
|