summaryrefslogtreecommitdiff
path: root/2975/CH30/EX30.6w
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /2975/CH30/EX30.6w
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip
initial commit / add all books
Diffstat (limited to '2975/CH30/EX30.6w')
-rw-r--r--2975/CH30/EX30.6w/Ex30_6w.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/2975/CH30/EX30.6w/Ex30_6w.sce b/2975/CH30/EX30.6w/Ex30_6w.sce
new file mode 100644
index 000000000..c75449660
--- /dev/null
+++ b/2975/CH30/EX30.6w/Ex30_6w.sce
@@ -0,0 +1,16 @@
+//developed in windows 8 operating system 64bit
+//platform Scilab 5.4.1
+//example 30_6w
+
+clc;clear;
+//Given Data
+
+k=9*10^9; //Value of the coulomb constant (Unit: N-m^2/C^2)
+A=100; //Value of A (Unit:V/m^2)
+a=20*10^-2; //Value of the radius of sphere (Unit: m)
+
+//Calculation
+
+charge=A*a^3/k; //Calculation of charge contained in the sphere (Unit:C)
+
+disp(charge,"The charge contained in a sphere is (Unit:C)");