summaryrefslogtreecommitdiff
path: root/569/CH8/EX8.1
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /569/CH8/EX8.1
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '569/CH8/EX8.1')
-rwxr-xr-x569/CH8/EX8.1/8_1.sci33
1 files changed, 33 insertions, 0 deletions
diff --git a/569/CH8/EX8.1/8_1.sci b/569/CH8/EX8.1/8_1.sci
new file mode 100755
index 000000000..ffe63563d
--- /dev/null
+++ b/569/CH8/EX8.1/8_1.sci
@@ -0,0 +1,33 @@
+// calculate the arrangement of slip gauges
+clc;
+Dd=52.215;
+disp(Dd,'desired value=')
+Pb=4;
+disp(Pb,'Protected block=')
+R=Dd-Pb;
+disp(R,'Reminder=')
+Tp=1.005;
+disp(Tp,'thousand block=')
+R=R-Tp;
+disp(R,'Reminder=')
+Hp=1.010;
+disp(Hp,'Hunderths block=')
+R=R-Hp;
+disp(R,'Reminder=')
+Ttp=2.20;
+disp(Ttp,'tenths block=')
+R=R-Ttp;
+disp(R,'Reminder=')
+Up=4;
+disp(Up,'unit block=')
+R=R-Up;
+disp(R,'Reminder=')
+Tp=40;
+disp(Tp,'Tens block=')
+R=R-Tp;
+disp(R,'Reminder=')
+
+
+
+
+