From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 3456/CH17/EX17.1/Ex17_1.sce | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 3456/CH17/EX17.1/Ex17_1.sce (limited to '3456/CH17/EX17.1/Ex17_1.sce') 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); -- cgit