summaryrefslogtreecommitdiff
path: root/3665/CH10/EX10.9/Ex10_9.sce
diff options
context:
space:
mode:
Diffstat (limited to '3665/CH10/EX10.9/Ex10_9.sce')
-rw-r--r--3665/CH10/EX10.9/Ex10_9.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/3665/CH10/EX10.9/Ex10_9.sce b/3665/CH10/EX10.9/Ex10_9.sce
new file mode 100644
index 000000000..ec70eab96
--- /dev/null
+++ b/3665/CH10/EX10.9/Ex10_9.sce
@@ -0,0 +1,16 @@
+clc//
+//
+//
+
+//Variable declaration
+d=2*10^-3; //seperation(m)
+epsilon_r=6;
+V=10; //voltage(V)
+epsilon0=8.85*10^-12;
+
+//Calculation
+E=V/d;
+D=epsilon0*epsilon_r*E; //dielectric displacement(C m^-2)
+
+//Result
+printf("\n dielectric displacement is %0.1f *10^-9 C m^-2",D*10^9)