diff options
Diffstat (limited to '3669/CH6/EX6.4/4.sce')
-rw-r--r-- | 3669/CH6/EX6.4/4.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/3669/CH6/EX6.4/4.sce b/3669/CH6/EX6.4/4.sce new file mode 100644 index 000000000..0b18a04e8 --- /dev/null +++ b/3669/CH6/EX6.4/4.sce @@ -0,0 +1,13 @@ +
+//Variable declaration
+epsilon0=8.85*10**-12;
+A=650*10**-6; //area(m**2)
+d=4*10**-3; //seperation(m)
+Q=2*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 |