summaryrefslogtreecommitdiff
path: root/1535/CH13/EX13.3/Ch13Ex3.sci
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1535/CH13/EX13.3/Ch13Ex3.sci
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '1535/CH13/EX13.3/Ch13Ex3.sci')
-rwxr-xr-x1535/CH13/EX13.3/Ch13Ex3.sci11
1 files changed, 11 insertions, 0 deletions
diff --git a/1535/CH13/EX13.3/Ch13Ex3.sci b/1535/CH13/EX13.3/Ch13Ex3.sci
new file mode 100755
index 000000000..921e43b56
--- /dev/null
+++ b/1535/CH13/EX13.3/Ch13Ex3.sci
@@ -0,0 +1,11 @@
+// Scilab Code Ex13.3: Dielectric displacement of medium: Page-288 (2010)
+epsilon_0 = 8.854e-012; // Absolute electrical permittivity of free space, farad per metre
+epsilon_r = 5.0; // Dielectric constant of the material between the plates of capacitor
+V = 15; // Potential difference applied between the plates of the capacitor, volt
+d = 1.5e-003; // Separation between the plates of the capacitor, m
+// Electric displacement, D = epsilon_0*epsilon_r*E, as E = V/d, so
+D = epsilon_0*epsilon_r*V/d; // Dielectric displacement, coulomb per metre square
+printf("\nThe dielectric displacement = %5.3e coulomb per metre square", D);
+
+// Result
+// The dielectric displacement = 4.427e-007 coulomb per metre square \ No newline at end of file