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 /569/CH8/EX8.1 | |
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 '569/CH8/EX8.1')
-rwxr-xr-x | 569/CH8/EX8.1/8_1.sci | 33 |
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=')
+
+
+
+
+
|