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 --- 3669/CH6/EX6.4/4.sce | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 3669/CH6/EX6.4/4.sce (limited to '3669/CH6/EX6.4') diff --git a/3669/CH6/EX6.4/4.sce b/3669/CH6/EX6.4/4.sce new file mode 100644 index 000000000..0b18a04e8 --- /dev/null +++ b/3669/CH6/EX6.4/4.sce @@ -0,0 +1,13 @@ + +//Variable declaration +epsilon0=8.85*10**-12; +A=650*10**-6; //area(m**2) +d=4*10**-3; //seperation(m) +Q=2*10**-10; //charge(C) +epsilonr=3.5; + +//Calculation +V=Q*d/(epsilon0*epsilonr*A); //voltage(V) + +//Result +printf('voltage is %0.3f V \n',(V)) \ No newline at end of file -- cgit