diff options
Diffstat (limited to '1664/CH11/EX11.6/Ex11_6.sce')
-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.//
|