summaryrefslogtreecommitdiff
path: root/698/CH18/EX18.3/P3_strength_of_gear_pair.sce
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /698/CH18/EX18.3/P3_strength_of_gear_pair.sce
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip
initial commit / add all books
Diffstat (limited to '698/CH18/EX18.3/P3_strength_of_gear_pair.sce')
-rw-r--r--698/CH18/EX18.3/P3_strength_of_gear_pair.sce38
1 files changed, 38 insertions, 0 deletions
diff --git a/698/CH18/EX18.3/P3_strength_of_gear_pair.sce b/698/CH18/EX18.3/P3_strength_of_gear_pair.sce
new file mode 100644
index 000000000..fca93a04d
--- /dev/null
+++ b/698/CH18/EX18.3/P3_strength_of_gear_pair.sce
@@ -0,0 +1,38 @@
+clc
+//Example 18.3
+//Strength of gear pair
+
+P=12e3
+N=1000
+phi=14.5
+m=6
+b=60
+
+Np=30
+Ng=75
+yp=0.101
+
+S_bend_perm=100e6
+surface_endurance=600e6
+E=100e9
+
+printf('Beam Strength:\n\tBoth gears are made of same material, hence the pinion is weaker\n')
+
+Mt = (P*60)/(2*%pi*N)
+Rp=(m*Np)/2
+F=Mt/Rp
+printf('F = s b Pc y = %0.3f N\n',F)
+s=F/(b*1e-3*%pi*0.006*yp)
+printf('Induced stress s=%0.3f MPa\n',s*1e-3)
+printf('Induced stress < Permissible stress\n\tHence it is safe in bending\n\n')
+
+printf('Wear Strength:\n')
+printf('Fw=Dp b K Q\n')
+Dp=2*Rp
+K=(surface_endurance^2 * sind(phi) * ((1/E)+(1/E)))/1.4
+Q=(2*Ng)/(Ng+Np)
+Fw=Dp*1e-3*b*1e-3*K*Q
+printf('\t=%0.3f N\n',Fw)
+printf('The pair is strong in wear as well.')
+
+//End of programme \ No newline at end of file