diff options
Diffstat (limited to '3523/CH19/EX19.18.1/Ex19_1.sce')
-rw-r--r-- | 3523/CH19/EX19.18.1/Ex19_1.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/3523/CH19/EX19.18.1/Ex19_1.sce b/3523/CH19/EX19.18.1/Ex19_1.sce new file mode 100644 index 000000000..9d0424ca9 --- /dev/null +++ b/3523/CH19/EX19.18.1/Ex19_1.sce @@ -0,0 +1,14 @@ +clear all
+clc
+close
+
+qm=10*1e-6;//q/m ratio in C/kg
+E=8*1e5;//Electric field in V/m
+g=9.8;//Universal gravitational constant
+
+y=-1;//in meters
+t=sqrt(-2*y/g);
+
+//Calculation of separation distance between particles
+x=(qm*E*t^2)/2;
+printf('Distance of separation between particles in %f m',2*x)
|