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 /3204/CH14/EX14.12 | |
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 '3204/CH14/EX14.12')
-rw-r--r-- | 3204/CH14/EX14.12/Ex14_12.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/3204/CH14/EX14.12/Ex14_12.sce b/3204/CH14/EX14.12/Ex14_12.sce new file mode 100644 index 000000000..fdf68968f --- /dev/null +++ b/3204/CH14/EX14.12/Ex14_12.sce @@ -0,0 +1,13 @@ +// Calculations
+// From eq'n 2 it is clear that velocity of the particle becomes zero at t=3 sec
+t=3 // sec .. from eq'n 2
+// Position of particle at t=3 sec
+x=(t^3)-(3*t^2)-(9*t)+12 // m // from eq'n 1
+// Acc of particle at t=3 sec
+a=6*(t-1) // m/s^2 // from eq'n 3
+// Results
+clc
+printf('The time at which the velocity of the particle becomes zero is %f sec \n',t)
+printf('The position of the partice at t=3 sec is %f m \n',x)
+printf('The acceleration of the particle is %f m/s^2 \n',a)
+// Ref textbook for the graphs
|