summaryrefslogtreecommitdiff
path: root/3768/CH7/EX7.4/Ex7_4.sce
diff options
context:
space:
mode:
Diffstat (limited to '3768/CH7/EX7.4/Ex7_4.sce')
-rw-r--r--3768/CH7/EX7.4/Ex7_4.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/3768/CH7/EX7.4/Ex7_4.sce b/3768/CH7/EX7.4/Ex7_4.sce
new file mode 100644
index 000000000..1a8cc08c9
--- /dev/null
+++ b/3768/CH7/EX7.4/Ex7_4.sce
@@ -0,0 +1,15 @@
+//Example number 7.4, Page number 147
+
+clc;clear;
+close;
+
+//Variable declaration
+alpha_e=10**-40; //polarisability(Fm**2)
+N=3*10**28; //density of atoms
+epsilon0=8.85*10**-12;
+//Calculation
+x=N*alpha_e/epsilon0;
+epsilonr=(1+(2*x))/(1-x); //dielectric constant(F/m)
+//Result
+printf("dielectric constant is %.3f F/m",epsilonr)
+//answer in the book is wrong