diff options
author | prashantsinalkar | 2018-02-03 11:01:52 +0530 |
---|---|---|
committer | prashantsinalkar | 2018-02-03 11:01:52 +0530 |
commit | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df (patch) | |
tree | 449d555969bfd7befe906877abab098c6e63a0e8 /3863/CH16/EX16.11/Ex16_11.sce | |
parent | d1e070fe2d77c8e7f6ba4b0c57b1b42e26349059 (diff) | |
download | Scilab-TBC-Uploads-master.tar.gz Scilab-TBC-Uploads-master.tar.bz2 Scilab-TBC-Uploads-master.zip |
Diffstat (limited to '3863/CH16/EX16.11/Ex16_11.sce')
-rw-r--r-- | 3863/CH16/EX16.11/Ex16_11.sce | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/3863/CH16/EX16.11/Ex16_11.sce b/3863/CH16/EX16.11/Ex16_11.sce new file mode 100644 index 000000000..cf8ac4757 --- /dev/null +++ b/3863/CH16/EX16.11/Ex16_11.sce @@ -0,0 +1,22 @@ +clear +// +//Given +//Variable declaration +P=300e3 //Power transmitted in W +N=80 //speed of the shaft in r.p.m +tau=60 //Maximum shear stress in N/sq.mm + +//Calculation +T=P*60/(%pi*2*N)*1e3 //Mean Torque transmitted in Nmm +Tmax=1.4*T //Maximum Torque transmitted in Nmm +D=((16*Tmax/(%pi*tau))**(1/3)) //Suitable diameter of the shaft in mm + +Do=(((Tmax*16)/(%pi*tau*(1-0.6**4)))**(1/3)) //External diameter of hollow shaft in mm + +Di=0.6*Do //Internal diameter of hollow shaft in mm + +//Result +printf("\n External diameter of hollow shaft = %d mm",Do) + +printf("\n Internal diameter of hollow shaft = %d mm",Di) + |