summaryrefslogtreecommitdiff
path: root/2333/CH1/EX1.2
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /2333/CH1/EX1.2
downloadScilab-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-x2333/CH1/EX1.2/2.sce10
-rwxr-xr-x2333/CH1/EX1.2/2.txt3
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