Advertisement
Guest User

Untitled

a guest
May 27th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MatLab 1.65 KB | None | 0 0
  1. % Variantas: 353297
  2.  
  3.  
  4. % Values at nominal voltage
  5.  
  6. % Nominal voltage   48 V
  7. % No load speed 3670 rpm
  8. % No load current   289 mA
  9. % Nominal speed 3420 rpm
  10. % Nominal torque (max. continuous torque)   800 mNm
  11. % Nominal current (max. continuous current) 6.8 A
  12. % Stall torque  16100 mNm
  13. % Stall current 131 A
  14. % Max. efficiency   88 %
  15.  
  16. % Characteristics
  17.  
  18. % Terminal resistance   0.365 Ω
  19. % Terminal inductance   0.161 mH
  20. % Torque constant   123 mNm/A
  21. % Speed constant    77.8 rpm/V
  22. % Speed / torque gradient   0.231 rpm/mNm
  23. % Mechanical time constant  3.25 ms
  24. % Rotor inertia 1340 gcm²
  25.  
  26. % Thermal data
  27.  
  28. % Thermal resistance housing-ambient    1.3 K/W
  29. % Thermal resistance winding-housing    1.85 K/W
  30. % Thermal time constant winding 123 s
  31. % Thermal time constant motor   1060 s
  32. % Ambient temperature   -30...+100 °C
  33. % Max. winding temperature  +125 °C
  34.  
  35. % Mechanical data
  36.  
  37. % Bearing type  ball bearings
  38. % Max. speed    5500 rpm
  39. % Axial play    0 - 0.1 mm
  40. % Radial play   0.03 mm
  41. % Max. axial load (dynamic) 70 N
  42. % Max. force for press fits (static)    420 N
  43. % (static, shaft supported) 12000 N
  44. % Max. radial load  350 N, 15 mm from flange
  45.  
  46. % Other specifications
  47.  
  48. % Number of pole pairs  2
  49. % Number of commutator segments 26
  50. % Number of autoclave cycles    0
  51.  
  52. % Product
  53.  
  54. % Weight    2100 g
  55.  
  56. clc;
  57. clear;
  58. Unom=48;
  59. R=0.365;
  60. L=0.161e-3;
  61. km=123e-3;
  62. J=1340e-7;
  63. b=0; %0.0001
  64. ke=1/4.07;
  65.  
  66. % Variklio perdavimo funkcija
  67.  
  68. w_el = tf([1], [L R]);
  69. w_mom = km;
  70. w_mech = tf([1], [J b]);
  71. w_evj = ke;
  72.  
  73. w_el_mom = series(w_el, w_mom);
  74. w_el_mom_mech = series(w_el_mom, w_mech);
  75. w_DC_var = feedback(w_el_mom_mech, w_evj)
  76.  
  77.  
  78. % Griztamasis rysys
  79. k = 0.07;
  80. w_DC_var_k = feedback(w_DC_var, k)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement