summaryrefslogtreecommitdiff
path: root/3456/CH17/EX17.1
diff options
context:
space:
mode:
Diffstat (limited to '3456/CH17/EX17.1')
-rw-r--r--3456/CH17/EX17.1/Ex17_1.sce13
1 files changed, 13 insertions, 0 deletions
diff --git a/3456/CH17/EX17.1/Ex17_1.sce b/3456/CH17/EX17.1/Ex17_1.sce
new file mode 100644
index 000000000..2a316728e
--- /dev/null
+++ b/3456/CH17/EX17.1/Ex17_1.sce
@@ -0,0 +1,13 @@
+//Example 17.1
+//Forces in rolling
+//Page No. 596
+clc;clear;close;
+
+mu=0.08; //no unit
+R=12; //in inches
+alpha=atand(mu);
+dh=mu^2*R;
+printf('\nMaximum possible reduction when mu is 0.08 = %g in\n',dh);
+mu=0.5; //no unit
+dh=mu^2*R;
+printf('Maximum possible reduction when mu is 0.5 = %g in',dh);