blob: b465c13189e6b6de9f9f10b84f65c2fd0edb7e94 (
plain)
1
2
3
4
5
6
7
8
9
10
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.//
|