diff options
Diffstat (limited to '3776/CH4/EX4.4/Ex4_4.sce')
-rw-r--r-- | 3776/CH4/EX4.4/Ex4_4.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/3776/CH4/EX4.4/Ex4_4.sce b/3776/CH4/EX4.4/Ex4_4.sce new file mode 100644 index 000000000..105784f04 --- /dev/null +++ b/3776/CH4/EX4.4/Ex4_4.sce @@ -0,0 +1,16 @@ +clear +//Given +hp = 10 // horse power of motor +f = 30 // given +shear_T = 55 //MPa - The maximum shearing in the shaft +//caliculations + +T = 119*hp/f // N.m The torsion in the shaft +//j/c=T/shear_T=K +k = T*(10**3)/shear_T //mm3 +//c3=2K/3.14 +c = ((2*k/3)**0.33) //mm - The radius of the shaft +diamter = 2*c //mm - The diameter of the shaft +printf("\n The Diameter of the shaft used is %0.2f mm",diamter) +printf("\n For practical purposes, a 16-mm shaft would probably be selected") + |