summaryrefslogtreecommitdiff
path: root/213/CH11/EX11.2/11_2.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /213/CH11/EX11.2/11_2.sce
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 '213/CH11/EX11.2/11_2.sce')
-rwxr-xr-x213/CH11/EX11.2/11_2.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/213/CH11/EX11.2/11_2.sce b/213/CH11/EX11.2/11_2.sce
new file mode 100755
index 000000000..338f4ccb5
--- /dev/null
+++ b/213/CH11/EX11.2/11_2.sce
@@ -0,0 +1,15 @@
+//To find speed lost
+clc
+//Given:
+d1=1, d2=2.25 //m
+N1=200 //rpm
+sigma1=1.4*10^6, sigma2=0.5*10^6, E=100*10^6 //N/m^2
+//Solution:
+//Calculating the speed of the driven pulley
+N21=N1*(d1/d2) //rpm
+//Calculating the speed of the shaft considering creep
+N22=N1*(d1/d2)*(E+sqrt(sigma2))/(E+sqrt(sigma1)) //rpm
+//Calculating the speed lost by the driven pulley due to creep
+Nl=N21-N22 //Speed lost by the driven pulley due to creep, rpm
+//Results:
+printf("\n\n Speed lost by the driven pulley due to creep = %.4f rpm.\n\n",Nl) \ No newline at end of file