summaryrefslogtreecommitdiff
path: root/3862/CH5/EX5.16
diff options
context:
space:
mode:
authorprashantsinalkar2018-02-03 11:01:52 +0530
committerprashantsinalkar2018-02-03 11:01:52 +0530
commit7bc77cb1ed33745c720952c92b3b2747c5cbf2df (patch)
tree449d555969bfd7befe906877abab098c6e63a0e8 /3862/CH5/EX5.16
parentd1e070fe2d77c8e7f6ba4b0c57b1b42e26349059 (diff)
downloadScilab-TBC-Uploads-master.tar.gz
Scilab-TBC-Uploads-master.tar.bz2
Scilab-TBC-Uploads-master.zip
Added new codeHEADmaster
Diffstat (limited to '3862/CH5/EX5.16')
-rw-r--r--3862/CH5/EX5.16/Ex5_16.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/3862/CH5/EX5.16/Ex5_16.sce b/3862/CH5/EX5.16/Ex5_16.sce
new file mode 100644
index 000000000..f7a55c7a0
--- /dev/null
+++ b/3862/CH5/EX5.16/Ex5_16.sce
@@ -0,0 +1,16 @@
+clear
+//
+d1=500.0 //diameter of a shaft
+d2=100.0 //diameter of a shaft
+D=3000.0 //distance between shafts in mm
+T=1000.0 //Maximum permissible tension in the belt
+U=0.25 //coefficient of friction between the belt and the pulley
+R=220.0 //revlution per minute of larger shaft
+//Length of belt = Arc length DC + Arc length FE + 2BG
+O1=3.14+2*asin((d1+d2)/(2*D))
+L=(d1/2+d2/2)*O1+2*D*cos(asin((d1+d2)/(2*D)))
+printf("\n Length of belt is %0.3f mm",L)
+T1=T/(2.71**(U*O1))
+Velocity_of_the_belt =d1/2*(R*2*3.14/60.0)
+Power_transmitted=(T-T1)*Velocity_of_the_belt
+printf("\n Power Transmitted %0.3f Watt",Power_transmitted)