diff options
Diffstat (limited to '2975/CH29/EX29.6w/Ex29_6w.sce')
-rw-r--r-- | 2975/CH29/EX29.6w/Ex29_6w.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/2975/CH29/EX29.6w/Ex29_6w.sce b/2975/CH29/EX29.6w/Ex29_6w.sce new file mode 100644 index 000000000..dd6ff9994 --- /dev/null +++ b/2975/CH29/EX29.6w/Ex29_6w.sce @@ -0,0 +1,19 @@ +//developed in windows 8 operating system 64bit
+//platform Scilab 5.4.1
+//example 29_6w
+
+clc;clear;
+//Given Data
+
+mass=5*10^-3; //Mass of the particle (Unit: kg)
+charge=1*10^-7; //Charge of the particle (Unit: C)
+dis=10*10^-2; //Distance between particle (Unit: m)
+k=9*10^9; //Value of the coulomb constant (Unit: N m^2/C^2)
+gravity=9.8; //Value of gravity (Unit: m/s^2)
+
+//calculation
+
+force=charge^2*k/dis^2; //Calculation of the force (Unit: Newton)
+coefficient=force/(mass*gravity); //Calculation of the coefficient of friction (Unit:unitless)
+
+disp(coefficient,"The value of the coefficient of friction between each particle and the table is (Unit: unitless)");
|