From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 3651/CH5/EX5.3/3.sce | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 3651/CH5/EX5.3/3.sce (limited to '3651/CH5/EX5.3/3.sce') diff --git a/3651/CH5/EX5.3/3.sce b/3651/CH5/EX5.3/3.sce new file mode 100644 index 000000000..69f4defb4 --- /dev/null +++ b/3651/CH5/EX5.3/3.sce @@ -0,0 +1,14 @@ +//Variable declaration +A=360*10**-4; //area(m**2) +V=15; //voltage(V) +C=6*10**-6; //capacitance(farad) +epsilonr=8; +epsilon0=8.84*10**-12; + +//Calculation +E=V*C/(epsilon0*epsilonr*A); //field strength(V/m) +dm=epsilon0*(epsilonr-1)*V*A; //total dipole moment(Cm) + +//Result +printf('field strength is %0.3f *10**7 V/m\n',(E/10**7)) +printf('total dipole moment is %0.3f *10**-12 Cm\n',(dm*10**12)) \ No newline at end of file -- cgit