summaryrefslogtreecommitdiff
path: root/3665/CH10/EX10.4/Ex10_4.sce
diff options
context:
space:
mode:
Diffstat (limited to '3665/CH10/EX10.4/Ex10_4.sce')
-rw-r--r--3665/CH10/EX10.4/Ex10_4.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/3665/CH10/EX10.4/Ex10_4.sce b/3665/CH10/EX10.4/Ex10_4.sce
new file mode 100644
index 000000000..371d670fc
--- /dev/null
+++ b/3665/CH10/EX10.4/Ex10_4.sce
@@ -0,0 +1,14 @@
+clc//
+//
+//
+
+//Variable declaration
+N=3*10^28; //number of atoms(per m^3)
+alphae=10^-40;
+epsilon0=8.854*10^-12;
+
+//Calculation
+epsilon_r=1+(N*alphae/epsilon0); //dielectric constant of material
+
+//Result
+printf("\n dielectric constant of material is %0.3f ",epsilon_r)