summaryrefslogtreecommitdiff
path: root/3886/CH12/EX12.6
diff options
context:
space:
mode:
authorprashantsinalkar2018-02-03 11:01:52 +0530
committerprashantsinalkar2018-02-03 11:01:52 +0530
commit7bc77cb1ed33745c720952c92b3b2747c5cbf2df (patch)
tree449d555969bfd7befe906877abab098c6e63a0e8 /3886/CH12/EX12.6
parentd1e070fe2d77c8e7f6ba4b0c57b1b42e26349059 (diff)
downloadScilab-TBC-Uploads-7bc77cb1ed33745c720952c92b3b2747c5cbf2df.tar.gz
Scilab-TBC-Uploads-7bc77cb1ed33745c720952c92b3b2747c5cbf2df.tar.bz2
Scilab-TBC-Uploads-7bc77cb1ed33745c720952c92b3b2747c5cbf2df.zip
Added new codeHEADmaster
Diffstat (limited to '3886/CH12/EX12.6')
-rw-r--r--3886/CH12/EX12.6/12_6.sce19
-rw-r--r--3886/CH12/EX12.6/12_6.txt5
2 files changed, 24 insertions, 0 deletions
diff --git a/3886/CH12/EX12.6/12_6.sce b/3886/CH12/EX12.6/12_6.sce
new file mode 100644
index 000000000..bf9583733
--- /dev/null
+++ b/3886/CH12/EX12.6/12_6.sce
@@ -0,0 +1,19 @@
+//Distance covered
+//refer fig.12.9
+//Let the particle start from A and come to halt at E
+//Let initial velocity be u m/sec
+//consider motion between A and B
+//u+a=10
+//consider motion between A and C
+//70=7*u+7*a
+//solving
+a=-10/17.5 //m/sec^2
+u=10-(a) //m/sec
+//Let distance AD be s1
+s1=10.571*10+(-0.571*10^2)/2 //m
+//Distance covered in the interval 7 sec to 10 sec
+CD=77.16-60 //m
+//Let AE=s
+s=(10.571^2)/(2*0.571) //m
+printf("\nCD=%.2f m\ns=%.2f m",CD,s)
+
diff --git a/3886/CH12/EX12.6/12_6.txt b/3886/CH12/EX12.6/12_6.txt
new file mode 100644
index 000000000..3115d1422
--- /dev/null
+++ b/3886/CH12/EX12.6/12_6.txt
@@ -0,0 +1,5 @@
+
+--> exec('E:\My program EM\12. Linear motion\12.6.sce', -1)
+
+CD=17.16 m
+s=97.85 m \ No newline at end of file