diff options
Diffstat (limited to '3845/CH18/EX18.5/Ex18_5.sce')
-rw-r--r-- | 3845/CH18/EX18.5/Ex18_5.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/3845/CH18/EX18.5/Ex18_5.sce b/3845/CH18/EX18.5/Ex18_5.sce new file mode 100644 index 000000000..90f626e10 --- /dev/null +++ b/3845/CH18/EX18.5/Ex18_5.sce @@ -0,0 +1,14 @@ +//Example 18.5
+m=4*10^-15;//Mass of gasoline drop (kg)
+g=9.80;//Acceleration due to gravity (m/s^2)
+w=m*g;//Weight of the drop (N)
+printf('a.Weight of the drop = %0.2e N',w)
+q=3.20*10^-19;//Charge (C)
+E=3*10^5;//Electric field strength (N/C)
+F=q*E;//Electric force (N)
+printf('\nb.Electric force on the drop = %0.2e N',F)
+F_net=F-w;//Net Force (N)
+a=F_net/m;//Acceleration (m/s^2)
+printf('\nc.Acceleration of the drop = %0.1f m/s^2',a)
+//Openstax - College Physics
+//Download for free at http://cnx.org/content/col11406/latest
|