From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 1535/CH13/EX13.3/Ch13Ex3.sci | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100755 1535/CH13/EX13.3/Ch13Ex3.sci (limited to '1535/CH13/EX13.3') 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 -- cgit