diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /2333/CH1/EX1.2 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '2333/CH1/EX1.2')
-rwxr-xr-x | 2333/CH1/EX1.2/2.sce | 10 | ||||
-rwxr-xr-x | 2333/CH1/EX1.2/2.txt | 3 |
2 files changed, 13 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)
diff --git a/2333/CH1/EX1.2/2.txt b/2333/CH1/EX1.2/2.txt new file mode 100755 index 000000000..dfa2117ca --- /dev/null +++ b/2333/CH1/EX1.2/2.txt @@ -0,0 +1,3 @@ +# Problem 2 #
+Error involved in measurement of position for one minute is 1.692319 cm.
+
\ No newline at end of file |