diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /3456/CH17/EX17.1/Ex17_1.sce | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '3456/CH17/EX17.1/Ex17_1.sce')
-rw-r--r-- | 3456/CH17/EX17.1/Ex17_1.sce | 13 |
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);
|