diff options
Diffstat (limited to '2975/CH29/EX29.7w/Ex29_7w.sce')
-rw-r--r-- | 2975/CH29/EX29.7w/Ex29_7w.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/2975/CH29/EX29.7w/Ex29_7w.sce b/2975/CH29/EX29.7w/Ex29_7w.sce new file mode 100644 index 000000000..3b67e2224 --- /dev/null +++ b/2975/CH29/EX29.7w/Ex29_7w.sce @@ -0,0 +1,16 @@ +//developed in windows 8 operating system 64bit
+//platform Scilab 5.4.1
+//example 29_7w
+
+clc;clear;
+//Given Data
+
+elec_field=4*10^5; //Value of Electric field (Unit:N/C)
+mass=1*10^-4; //Mass of the water droplet (Unit:kg)
+gravity=9.8; //Value of gravity (Unit:m/s^2)
+
+//Calculation
+
+charge=mass*gravity/elec_field; //Calculation of the charge (Unit:C)
+
+disp(charge,"The charge on the droplet is (Unit: C)");
|