diff options
Diffstat (limited to '608/CH6/EX6.05/6_05.sce')
-rwxr-xr-x | 608/CH6/EX6.05/6_05.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/608/CH6/EX6.05/6_05.sce b/608/CH6/EX6.05/6_05.sce new file mode 100755 index 000000000..c0744941f --- /dev/null +++ b/608/CH6/EX6.05/6_05.sce @@ -0,0 +1,12 @@ +//Problem 6.05: The flux density between two plates separated by mica of relative permittivity 5 is 2 μC/m2. Find the voltage gradient between the plates.
+
+//initializing the variables:
+D = 2E-6; // in μC/m2
+e0 = 8.85E-12; // in F/m
+er = 5;
+
+//calculation:
+E = D/(e0*er)
+
+printf("\n\nResult\n\n")
+printf("\n Electric field strength E %.2E V/m\n",E)
\ No newline at end of file |