Advertisement
Guest User

Untitled

a guest
Apr 3rd, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Octave 1.16 KB | None | 0 0
  1. disp("Gear Speeds");
  2.  
  3.  
  4. %Initial Paramaters (Gear radii in inches)
  5. Nb=5.3256;
  6. Na=0.66703;
  7. Nc=0.55586;
  8. Nd=1.9685;
  9. in_speed= 4500; %[rpm]
  10.  
  11. %calculated prameters
  12. g_ratio2= Nb/Na %ratio between gear A and B
  13. g_ratio1= Nd/Nc %ratio betwen gear B and C
  14.  
  15. %RPM calculations for gear ratios
  16. g_speed_A= in_speed
  17. g_speed_B= g_speed_A/g_ratio2
  18. g_speed_C= g_speed_B
  19. g_speed_D= g_speed_C/g_ratio1
  20.  
  21. %Calculations to convert from RPM speed to Feet per minute
  22. g_speed_A_fm= (g_speed_A*0.001885)*(2*Na*2.54) *54.681
  23. g_speed_B_fm= (g_speed_B*0.001885)*(2*Nb*2.54) *54.681
  24. g_speed_C_fm= (g_speed_C*0.001885)*(2*Nc*2.54) *54.681
  25. g_speed_D_fm= (g_speed_D*0.001885)*(2*Nd*2.54) *54.681
  26.  
  27. %Gear quality equation specified in report.
  28. Qv = "quality number"
  29. %SOLVED WITH WOLFRAM
  30. A.Qv = 1.92996;
  31. C.Qv = -3.4;
  32. %thus, gear quality number must be greater than max(A.Qv, B.Qv);
  33.  
  34. %Qv chosen value as 7
  35. Qv=7
  36. BC= 0.25*(12-Qv)^(2/3)
  37. AC= 50 + 56*(1-BC)
  38.  
  39. %Dynamic Factor calculations given individual gear speeds and quality factor
  40. Kv_a=((AC+sqrt(g_speed_A_fm))/AC)^BC
  41. Kv_b=((AC+sqrt(g_speed_B_fm))/AC)^BC
  42. Kv_c=((AC+sqrt(g_speed_C_fm))/AC)^BC
  43. Kv_d=((AC+sqrt(g_speed_D_fm))/AC)^BC
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement