summaryrefslogtreecommitdiff
path: root/2975/CH30/EX30.6w/Ex30_6w.sce
diff options
context:
space:
mode:
Diffstat (limited to '2975/CH30/EX30.6w/Ex30_6w.sce')
-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)");