diff options
Diffstat (limited to '2333/CH1/EX1.2/2.sce')
-rwxr-xr-x | 2333/CH1/EX1.2/2.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/2333/CH1/EX1.2/2.sce b/2333/CH1/EX1.2/2.sce new file mode 100755 index 000000000..8035f773e --- /dev/null +++ b/2333/CH1/EX1.2/2.sce @@ -0,0 +1,10 @@ +clc
+// given that
+R = 6.4e8 // radius of earth in cm
+T = 24*60*60 // time period of one revolution of earth around its own axis
+t = 1 // time of 1 sec
+printf("\n # Problem 2 # \n")
+omega = (2*%pi/T)// angular velocity of earth in theta/sec
+alpha = omega^2 *R // Radial acceleration of earth in cm/sec^2
+S = 1/2 * alpha*t^2 // altered distance of particle in one sec
+printf("Error involved in measurement of position for one minute is %f cm.",S)
|