diff options
Diffstat (limited to '3669/CH6/EX6.9/9.sce')
-rw-r--r-- | 3669/CH6/EX6.9/9.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/3669/CH6/EX6.9/9.sce b/3669/CH6/EX6.9/9.sce new file mode 100644 index 000000000..bc4102984 --- /dev/null +++ b/3669/CH6/EX6.9/9.sce @@ -0,0 +1,13 @@ +
+//Variable declaration
+epsilon0=8.85*10**-12;
+A=750*10**-6; //area(m**2)
+d=5*10**-3; //seperation(m)
+Q=2.5*10**-10; //charge(C)
+epsilonr=3.5;
+
+//Calculation
+V=Q*d/(epsilon0*epsilonr*A); //voltage(V)
+
+//Result
+printf('voltage is %0.3f V \n',(V))
\ No newline at end of file |