summaryrefslogtreecommitdiff
path: root/3886/CH16/EX16.2/16_2.sce
diff options
context:
space:
mode:
Diffstat (limited to '3886/CH16/EX16.2/16_2.sce')
-rw-r--r--3886/CH16/EX16.2/16_2.sce28
1 files changed, 28 insertions, 0 deletions
diff --git a/3886/CH16/EX16.2/16_2.sce b/3886/CH16/EX16.2/16_2.sce
new file mode 100644
index 000000000..fac3e4695
--- /dev/null
+++ b/3886/CH16/EX16.2/16_2.sce
@@ -0,0 +1,28 @@
+//Man and his wish
+//refer fig. 16.4 (a),(b)
+//Work done in sliding
+N=1 //kN
+W=N //kN
+mu=0.3
+F=mu*N //kN
+//Applied force
+P=F //kN
+//Work to be done in sliding to a distance of 5 m (W1)
+W1=0.3*5 //kJ
+//Work to be done in tipping
+//Height (h)
+h=(1/sqrt(2))-0.5 //m
+//Work done in one tipping (W2)
+W2=W*h //kJ
+//To move a distance of 5m, Five tippings are required
+//Hence
+W3=5*W2 //kJ
+printf("\nThe man needs to spend only %.2f kJ while tipping and it is less than %.2f kJ spent in sliding\nHe should move the box by tipping",W3,W1)
+
+
+
+
+
+
+
+