summaryrefslogtreecommitdiff
path: root/1664/CH11
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1664/CH11
downloadScilab-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')
-rwxr-xr-x1664/CH11/EX11.1/Ex11_1.sce11
-rwxr-xr-x1664/CH11/EX11.2/Ex11_2.sce12
-rwxr-xr-x1664/CH11/EX11.3/Ex11_3.sce10
-rwxr-xr-x1664/CH11/EX11.4/Ex11_4.sce9
-rwxr-xr-x1664/CH11/EX11.5/Ex11_5.sce10
-rwxr-xr-x1664/CH11/EX11.6/Ex11_6.sce11
-rwxr-xr-x1664/CH11/EX11.7/Ex11_7.sce9
7 files changed, 72 insertions, 0 deletions
diff --git a/1664/CH11/EX11.1/Ex11_1.sce b/1664/CH11/EX11.1/Ex11_1.sce
new file mode 100755
index 000000000..772446c63
--- /dev/null
+++ b/1664/CH11/EX11.1/Ex11_1.sce
@@ -0,0 +1,11 @@
+
+//Example NO.11.1
+//Page No.335
+//To find dielectric constant of the material
+clc;clear;
+C = (10^-9);//Capacitance -[F].
+d = (2*10^-3);//Distance of separation -[m].
+E0 = (8.854*10^-12);
+A = (10^-4);//Area of capacitor -[m^2]
+Er = ((C*d)/(E0*A));//Dielectric constant.
+printf("\nThe dielectric constant of the material is %.2f",Er);
diff --git a/1664/CH11/EX11.2/Ex11_2.sce b/1664/CH11/EX11.2/Ex11_2.sce
new file mode 100755
index 000000000..cdf9bb0cf
--- /dev/null
+++ b/1664/CH11/EX11.2/Ex11_2.sce
@@ -0,0 +1,12 @@
+
+//Example NO.11.2
+//Page No.335
+//To find electronic polarizability of He gas.
+clc;clear;
+E0 = (8.854*10^-12);
+Er = (1.0000684);//Dielectric constant of He-gas
+N = (2.7*10^25);//Concentration of dipoles -[per m^3].
+P = (E0*(Er-1));
+a = (P/(N));
+a = (P/(2.7*10^25));//Electronic polarizability.
+printf("\nElectronic polarizability of He gas is %3.3e F m^2",a);
diff --git a/1664/CH11/EX11.3/Ex11_3.sce b/1664/CH11/EX11.3/Ex11_3.sce
new file mode 100755
index 000000000..74e8123f8
--- /dev/null
+++ b/1664/CH11/EX11.3/Ex11_3.sce
@@ -0,0 +1,10 @@
+
+
+//Example NO.11.3
+//Page No.336
+clc;clear;
+E0 = (8.854*10^-12);
+Er = (6);//Dielectric constant.
+E = 100;//Electric field intensity -[V/m].
+P = (E0*(Er-1)*E);//Polarization.
+printf("\nPolarization produced in a dielectric medium is %3.3e C/m^2",P);
diff --git a/1664/CH11/EX11.4/Ex11_4.sce b/1664/CH11/EX11.4/Ex11_4.sce
new file mode 100755
index 000000000..9cd1c42cb
--- /dev/null
+++ b/1664/CH11/EX11.4/Ex11_4.sce
@@ -0,0 +1,9 @@
+
+
+//Example NO.11.4
+//Page No.336
+clc;clear;
+E0 = (8.854*10^-12);
+R = (0.158*10^-9);//Radius of neon -[m].
+a = (4*%pi*E0*R^3);//Electronic polarizability.
+printf("\nElectronic polarizability of neon is %3.3e F m^2",a);
diff --git a/1664/CH11/EX11.5/Ex11_5.sce b/1664/CH11/EX11.5/Ex11_5.sce
new file mode 100755
index 000000000..8534fac63
--- /dev/null
+++ b/1664/CH11/EX11.5/Ex11_5.sce
@@ -0,0 +1,10 @@
+
+//Example NO.11.5
+//Page No.336
+clc;clear;
+E0 = (8.854*10^-12);// [C^2/N.m^2].
+Er = 6;//Dielectric constant.
+C = (0.02*10^-6);//Capacitance -[F].
+d = (0.002*10^-2);//Thickness of mica -[m].
+A = ((C*d)/(E0*Er));//Area of the metal sheet.
+printf("\nArea of the metal sheet required is %3.3e m^2",A);
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.//
diff --git a/1664/CH11/EX11.7/Ex11_7.sce b/1664/CH11/EX11.7/Ex11_7.sce
new file mode 100755
index 000000000..25dda52b5
--- /dev/null
+++ b/1664/CH11/EX11.7/Ex11_7.sce
@@ -0,0 +1,9 @@
+
+//Example NO.11.7
+//Page No.337
+clc;clear;
+E0 = (8.854*10^-12);
+x = (4.94);//Relative suceptibility.
+N = (10^28);//Number of dipoles per unit volume [per m^3].
+a = ((E0*x)/N);//Polarizability of the material
+printf("\nPolarizability of the material is %3.3e F m^-2",a);