summaryrefslogtreecommitdiff
path: root/1664/CH11/EX11.2/Ex11_2.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1664/CH11/EX11.2/Ex11_2.sce
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/EX11.2/Ex11_2.sce')
-rwxr-xr-x1664/CH11/EX11.2/Ex11_2.sce12
1 files changed, 12 insertions, 0 deletions
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);