summaryrefslogtreecommitdiff
path: root/2258/CH6/EX6.3/6_3.sce
diff options
context:
space:
mode:
Diffstat (limited to '2258/CH6/EX6.3/6_3.sce')
-rwxr-xr-x2258/CH6/EX6.3/6_3.sce8
1 files changed, 8 insertions, 0 deletions
diff --git a/2258/CH6/EX6.3/6_3.sce b/2258/CH6/EX6.3/6_3.sce
new file mode 100755
index 000000000..aa6431c7e
--- /dev/null
+++ b/2258/CH6/EX6.3/6_3.sce
@@ -0,0 +1,8 @@
+clc();
+clear;
+// To calculate the dielectric constant of the material
+N=3*10^28; //atoms per m^3
+alpha_e=10^-40; //farad m^2
+epsilon_0=8.854*10^-12; //f/m
+epsilon_r=1+(N*alpha_e/epsilon_0);
+printf("dielectric constant of the material is %f",epsilon_r);