diff options
author | prashantsinalkar | 2018-02-03 11:01:52 +0530 |
---|---|---|
committer | prashantsinalkar | 2018-02-03 11:01:52 +0530 |
commit | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df (patch) | |
tree | 449d555969bfd7befe906877abab098c6e63a0e8 /3886/CH12/EX12.15 | |
parent | d1e070fe2d77c8e7f6ba4b0c57b1b42e26349059 (diff) | |
download | Scilab-TBC-Uploads-master.tar.gz Scilab-TBC-Uploads-master.tar.bz2 Scilab-TBC-Uploads-master.zip |
Diffstat (limited to '3886/CH12/EX12.15')
-rw-r--r-- | 3886/CH12/EX12.15/12_15.sce | 16 | ||||
-rw-r--r-- | 3886/CH12/EX12.15/12_15.txt | 4 |
2 files changed, 20 insertions, 0 deletions
diff --git a/3886/CH12/EX12.15/12_15.sce b/3886/CH12/EX12.15/12_15.sce new file mode 100644 index 000000000..96c055e8a --- /dev/null +++ b/3886/CH12/EX12.15/12_15.sce @@ -0,0 +1,16 @@ +//particle in motion
+//v=t^3-t^2-2*t+2
+//a=3*t^2-2*t-2
+//acceleration after 4 seconds
+a=3*4^2-2*4-2 //m/sec^2
+//s=(t^4)/4-(t^3)/3-(t^2)+2*t+C
+//c is constant of acceleration
+//applying given condition
+C=4/3
+s=(4^4)/4-(4^3)/3-(4^2)+2*4+(4/3) //m
+//using maxima and minima principle
+//minimum value of acceleration (amin)
+amin=3*((1/3)^2)-2*(1/3)-2 //m/sec^2
+printf("\nMinimum value of acceleration=%.2f m/sec^2",amin)
+
+
diff --git a/3886/CH12/EX12.15/12_15.txt b/3886/CH12/EX12.15/12_15.txt new file mode 100644 index 000000000..d76f99291 --- /dev/null +++ b/3886/CH12/EX12.15/12_15.txt @@ -0,0 +1,4 @@ +
+--> exec('E:\My program EM\12. Linear motion\12.15.sce', -1)
+
+Minimum value of acceleration=-2.33 m/sec^2
\ No newline at end of file |