diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /608/CH6/EX6.05/6_05.sce | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
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 |