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 /683/CH4/EX4.4 | |
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 '683/CH4/EX4.4')
-rwxr-xr-x | 683/CH4/EX4.4/MF_4.sce | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/683/CH4/EX4.4/MF_4.sce b/683/CH4/EX4.4/MF_4.sce new file mode 100755 index 000000000..1a4360086 --- /dev/null +++ b/683/CH4/EX4.4/MF_4.sce @@ -0,0 +1,30 @@ +// sum 4-3
+clc;
+clear;
+d=30;
+Es=0.025;
+Ei=0;
+es=11*10^-3;
+ei=-5*10^-3;
+//Shaft dia is D
+D=d+es;
+//Lower limit for hole is LLH
+//Upper limit for hole is ULH
+//Upper limit for shaft is ULS
+//Lower limit for shaft is LLS
+ULH=d+Es;
+LLH=d+Ei;
+ULS=d+es;
+LLS=d+ei;
+//Maximum interference is Cmax
+//minimum interference is Cmin
+Cmax=ULH-LLS;
+Cmin=ULS-LLH;;
+
+ // printing data in scilab o/p window
+ printf("ULH is %0.3f mm ",ULH);
+ printf("\n LLH is %0.3f mm ",LLH);
+ printf("\n ULS is %0.3f mm ",ULS);
+ printf("\n LLS is %0.3f mm ",LLS);
+ printf("\n Cmax is %0.3f mm ",Cmax);
+ printf("\n Cmin is %0.3f mm ",Cmin);
\ No newline at end of file |