summaryrefslogtreecommitdiff
path: root/2339/CH13
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /2339/CH13
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 '2339/CH13')
-rwxr-xr-x2339/CH13/EX13.1.1/Ex13_1.sce10
-rwxr-xr-x2339/CH13/EX13.2.1/Ex13_2.sce31
-rwxr-xr-x2339/CH13/EX13.3.1/Ex13_3.sce13
-rwxr-xr-x2339/CH13/EX13.4.1/Ex13_4.sce18
-rwxr-xr-x2339/CH13/EX13.5.1/Ex13_5.sce15
-rwxr-xr-x2339/CH13/EX13.6.1/Ex13_6.sce13
6 files changed, 100 insertions, 0 deletions
diff --git a/2339/CH13/EX13.1.1/Ex13_1.sce b/2339/CH13/EX13.1.1/Ex13_1.sce
new file mode 100755
index 000000000..74da46e46
--- /dev/null
+++ b/2339/CH13/EX13.1.1/Ex13_1.sce
@@ -0,0 +1,10 @@
+clc
+clear
+
+N1=250;
+D1=53;
+D2=32;
+
+N2=N1*(D1/D2);
+printf('Speed of shaft: %2.2f RPM',N2);
+printf('\n');
diff --git a/2339/CH13/EX13.2.1/Ex13_2.sce b/2339/CH13/EX13.2.1/Ex13_2.sce
new file mode 100755
index 000000000..a9ff24b37
--- /dev/null
+++ b/2339/CH13/EX13.2.1/Ex13_2.sce
@@ -0,0 +1,31 @@
+clc
+clear
+
+D1=600;
+D2=300;
+N1=100;
+VR=D1/D2;
+N2=VR*N1;
+
+printf('Case One \n');
+printf('Velocity Ratio= %2.2f',VR);
+printf('\n');
+printf('Speed of driven shaft= %2.2f RPM',N2);
+printf('\n\n');
+
+printf('Case Two \n');
+VR=(D1+5)/(D2+5);
+N2=VR*N1;
+printf('Velocity Ratio= %2.2f',VR);
+printf('\n');
+printf('Speed of driven shaft= %2.2f RPM',N2);
+printf('\n\n');
+
+printf('Case Three \n');
+S=4;
+VR=[(D1+5)/(D2+5)]*[(100-S)/100];
+N2=VR*N1;
+printf('Velocity Ratio= %2.2f',VR);
+printf('\n');
+printf('Speed of driven shaft= %2.2f RPM',N2);
+printf('\n\n');
diff --git a/2339/CH13/EX13.3.1/Ex13_3.sce b/2339/CH13/EX13.3.1/Ex13_3.sce
new file mode 100755
index 000000000..0104a021e
--- /dev/null
+++ b/2339/CH13/EX13.3.1/Ex13_3.sce
@@ -0,0 +1,13 @@
+clc
+clear
+
+D1=0.3;
+D2=0.2;
+C=3;
+
+L1=[(22/7)*(1/2)*(D1+D2)]+[((D1+D2)^2)/(4*C)]+(2*C);
+L2=[(22/7)*(1/2)*(D1+D2)]+[((D1-D2)^2)/(4*C)]+(2*C);
+
+L=L2-L1;
+printf('The belt length is to be reduced by %2.4f mm',(0-L)*1000);
+printf('\n');
diff --git a/2339/CH13/EX13.4.1/Ex13_4.sce b/2339/CH13/EX13.4.1/Ex13_4.sce
new file mode 100755
index 000000000..fc61f49ff
--- /dev/null
+++ b/2339/CH13/EX13.4.1/Ex13_4.sce
@@ -0,0 +1,18 @@
+clc
+clear
+
+D=1;
+P=5000;
+N=250;
+Mew=0.25;
+PP=20;
+Theta=170*(22/7)*(1/180);
+V=((22/7)*D*N)/60;
+
+T12=exp(Mew*Theta)-1;
+T2=(P/(V*T12));
+T1=(T12+1)*T2;
+W=T1/PP;
+
+printf('Width of belt= %2.2f mm',W);
+printf('\n');
diff --git a/2339/CH13/EX13.5.1/Ex13_5.sce b/2339/CH13/EX13.5.1/Ex13_5.sce
new file mode 100755
index 000000000..dec97ea9b
--- /dev/null
+++ b/2339/CH13/EX13.5.1/Ex13_5.sce
@@ -0,0 +1,15 @@
+clc
+clear
+
+N1=1000;
+Z1=30;
+Z2=45;
+Z3=75;
+
+N13=Z3/Z1;
+N3=N1/N13;
+
+printf('Velocity Ratio of gear train= %2.1f ',N13);
+printf('\n');
+printf('N3= %2.1f RPM',N3);
+printf('\n');
diff --git a/2339/CH13/EX13.6.1/Ex13_6.sce b/2339/CH13/EX13.6.1/Ex13_6.sce
new file mode 100755
index 000000000..29af54562
--- /dev/null
+++ b/2339/CH13/EX13.6.1/Ex13_6.sce
@@ -0,0 +1,13 @@
+clc
+clear
+
+Na=600;
+Za=25;
+Zb=50;
+Zc=20;
+Zd=40;
+Nad=(Zb/Za)*(Zd/Zc);
+Nd=Na/Nad;
+
+printf('Speed of Output Shaft= %2.1f RPM',Nd);
+printf('\n');