summaryrefslogtreecommitdiff
path: root/3886/CH16/EX16.13/16_13.sce
diff options
context:
space:
mode:
authorprashantsinalkar2018-02-03 11:01:52 +0530
committerprashantsinalkar2018-02-03 11:01:52 +0530
commit7bc77cb1ed33745c720952c92b3b2747c5cbf2df (patch)
tree449d555969bfd7befe906877abab098c6e63a0e8 /3886/CH16/EX16.13/16_13.sce
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/CH16/EX16.13/16_13.sce')
-rw-r--r--3886/CH16/EX16.13/16_13.sce23
1 files changed, 23 insertions, 0 deletions
diff --git a/3886/CH16/EX16.13/16_13.sce b/3886/CH16/EX16.13/16_13.sce
new file mode 100644
index 000000000..541f1bcdf
--- /dev/null
+++ b/3886/CH16/EX16.13/16_13.sce
@@ -0,0 +1,23 @@
+//Wagon strikes bumper post
+//refer fig. 16.19
+W=500
+//Component of weight down the plane Wd
+Wd=W/100 //kN
+//Track resistance Rt
+Rt=2.5 //kN
+//u=0
+s=30 //m
+//Let the velocity of wagon while striking be v m/sec
+//Applying work energy equation
+v=1.716 //m/sec
+//Let spring compresion be x
+k=15000 //kN/m
+//Applying work energy equation and solving quadratic equation
+x=100.2 //mm
+printf("\nThe spring will be compressed by %.1f mm",x)
+
+
+
+
+
+