From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 2333/CH1/EX1.2/2.sce | 10 ++++++++++ 2333/CH1/EX1.2/2.txt | 3 +++ 2 files changed, 13 insertions(+) create mode 100755 2333/CH1/EX1.2/2.sce create mode 100755 2333/CH1/EX1.2/2.txt (limited to '2333/CH1/EX1.2') 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 -- cgit