summaryrefslogtreecommitdiff
path: root/3886/CH14/EX14.6
diff options
context:
space:
mode:
authorprashantsinalkar2018-02-03 11:01:52 +0530
committerprashantsinalkar2018-02-03 11:01:52 +0530
commit7bc77cb1ed33745c720952c92b3b2747c5cbf2df (patch)
tree449d555969bfd7befe906877abab098c6e63a0e8 /3886/CH14/EX14.6
parentd1e070fe2d77c8e7f6ba4b0c57b1b42e26349059 (diff)
downloadScilab-TBC-Uploads-master.tar.gz
Scilab-TBC-Uploads-master.tar.bz2
Scilab-TBC-Uploads-master.zip
Added new codeHEADmaster
Diffstat (limited to '3886/CH14/EX14.6')
-rw-r--r--3886/CH14/EX14.6/14_6.sce16
-rw-r--r--3886/CH14/EX14.6/14_6.txt4
2 files changed, 20 insertions, 0 deletions
diff --git a/3886/CH14/EX14.6/14_6.sce b/3886/CH14/EX14.6/14_6.sce
new file mode 100644
index 000000000..fed361c26
--- /dev/null
+++ b/3886/CH14/EX14.6/14_6.sce
@@ -0,0 +1,16 @@
+//Motor boat crossing river
+//refer fig. 14.11 and 14.12
+//let the motor boat start from A and reaches C
+vrx=15 //kmph
+//distance to be moved in x direction=1 km
+//time required t is
+t=4 //min
+//boat will move down the stream
+vy=5 //kmph
+//Distance moved in downstream direction (d)
+d=333.33 //m
+//Let the direction of boat be set at theta to x-direction
+theta=asind(1/3) //degree
+printf("The boat should be set in the direction theta=%.2f degree and time required is t=%.2f min\nDistance moved in downstream direction=%.2f m",theta,t,d)
+
+
diff --git a/3886/CH14/EX14.6/14_6.txt b/3886/CH14/EX14.6/14_6.txt
new file mode 100644
index 000000000..12c71bd1f
--- /dev/null
+++ b/3886/CH14/EX14.6/14_6.txt
@@ -0,0 +1,4 @@
+
+--> exec('E:\My program EM\14.Relative velocity\14.6.sce', -1)
+The boat should be set in the direction theta=19.47 degree and time required is t=4.00 min
+Distance moved in downstream direction=333.33 m \ No newline at end of file