Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

165 строки
13KB

  1. %&tex
  2. \subsection{Initial design}
  3. \label{sec:initialdesign}
  4. The initial design started with a design space exploration.
  5. The goal was to collect possible solutions and ideas for the implementation.
  6. The exploration resulted in a lot of whiteboard writing robots.
  7. These robots can be sorted in four different configurations
  8. Each configuration explained in the following sections.
  9. From the possible configurations, the optimal configuration that fits the specifications is made into an initial design.
  10. \subsubsection{Cable-Driven}
  11. The cable-driven robot is suspended with multiple cables.
  12. The end-effector that contains the marker is moved along a board by changing the length of the cables.
  13. The cable-based positioning systems result in a end-effector with a large range and high velocities.
  14. A basic setup can be seen in \autoref{fig:cablebotdrawing}.
  15. This given setup contains two cables that are motorized.
  16. The big advantage of this system is that it scales good, as the cables can have almost any length.
  17. \begin{figure}
  18. \centering
  19. \includegraphics[width=10.8cm]{graphics/cablebot.pdf}
  20. \caption{Planar view of cable driven robot. This setup contains two motorized pulleys in both top corners. From these two cables a mass is suspended at position $x,y$.
  21. By changing the length of the cables, the mass can be moved over along the whole board.}
  22. \label{fig:cablebotdrawing}
  23. \end{figure}
  24. \begin{marginfigure}
  25. \centering
  26. \includegraphics[width=3.74cm]{graphics/cable_angle.pdf}
  27. \caption{Illustrating the limit for horizontal acceleration $a$, for different angles to compensate for gravitational acceleration $g$.
  28. The red arrow represents the acceleration as a result of the pulling force of the cable, which is vectorized in a vertical acceleration that compensates $g$ and a vertical acceleration $a$.}
  29. \label{fig:cable_angle}
  30. \end{marginfigure}
  31. Although it is possible to achieve high velocities, this system is limited by the gravitational acceleration.
  32. In case of vertical acceleration, the maximum downward acceleration or upward deceleration is limited by \SI{9.81}{\meter\per\second\squared}.
  33. The horizontal acceleration depends on the relative angle of the suspending cable.
  34. The closer the end-effector is below the cable pulley, the lower the vertical acceleration becomes.
  35. \autoref{fig:cable_angle} illustrates the vertical acceleration for different angles.
  36. A possible solution to this is to add one or two additional wires to the system.
  37. These can pull on the system to 'assist' the gravitational force.
  38. Depending on the implementation, the extra cables make the system over-constrained.
  39. Nevertheless, the extra cables allow for higher acceleration limits in vertical and horizontal direction.
  40. \subsubsection{Cartesian-coordinate robot}
  41. This configuration is a very common design for plotters and shown in \autoref{fig:plotter}.
  42. This setup is also known as a gantry robot or linear robot.
  43. It normally consists of two sliders, which behave as a prismatic joint.
  44. Because each slider covers a single X or Y axis, the control and dynamics of this system are rather simple.
  45. A bigger challenge is the construction of the system, as the vertical slider has to stay vertical during operation.
  46. Especially the length of this setup makes twisting of the vertical slider more likely.
  47. \begin{figure}
  48. \centering
  49. \includegraphics[width=8.74cm]{graphics/plotter.pdf}
  50. \caption{This Cartesian plotter consists of two horizontal sliders to provide the $x$-movement and one vertical slider to provide the $y$-movement.}
  51. \label{fig:plotter}
  52. \end{figure}
  53. \subsubsection{Polar-coordinate robot}
  54. This robot is a combination of a prismatic and a revolute joint.
  55. Where the revolute joint can rotate the prismatic joint as seen in \autoref{fig:polar}.
  56. With this it can reach any point within a radius from rotational joint.
  57. This is a little more complex design than the Cartesian robot.
  58. \begin{figure}
  59. \centering
  60. \includegraphics[width=8.74cm]{graphics/polar.pdf}
  61. \caption{A combination of a revolute joint and a prismatic joint, creating a polar-coordinate robot.}
  62. \label{fig:polar}
  63. \end{figure}
  64. \begin{marginfigure}
  65. \centering
  66. \includegraphics[width=3.74cm]{graphics/polar_protrude.pdf}
  67. \caption{The diagonal lined section shows the part of the protruding area that is used by the arm.}
  68. \label{fig:polar_protrude}
  69. \end{marginfigure}
  70. This robot has some disadvantages.
  71. The range of the robot is defined by the length of the prismatic joint.
  72. However, if the prismatic joint is fully retracted, the joint does not get shorter.
  73. In that case the arm still protrudes on the other side.
  74. Therefore the complete radius around the revolute joint cannot have any obstacles.
  75. \autoref{fig:polar_protrude} gives an impression of the required area.
  76. Even with this area, the arm cannot reach the complete board.
  77. This makes required space of the setup very inefficient.
  78. Another disadvantage is that a long arm increases the moment of inertia and the gravitational torque quadratically.
  79. Furthermore, the long arm introduces stiffness problems and it amplifies any inaccuracy in the joint.
  80. \subsubsection{SCARA}
  81. The SCARA robot is a configuration with two linkages that are connected via rotational joints.
  82. It can be compared to a human arm drawing on a table as seen in \autoref{fig:scara}.
  83. Similar to the Polar robot it can reach all points within a radius from the base of the robot.
  84. However, the arm can be configurated to not protrude outside of the board.
  85. If the situation requires the arm to protrude, it is still significantly less than the polar arm (\autoref{fig:polar_protrude}).
  86. Furthermore, depending on the configuration the of the arm the area where it protrudes can be significantly smaller.
  87. However, the additional joint and extra arm length does add to the moment of inertia and gravitational torque similar to the polar robot.
  88. The SCARA is therefore not a robot that is convenient with large working areas.
  89. However, it can be really quick and precise in relative small areas.
  90. \begin{figure}
  91. \centering
  92. \includegraphics[width=8.74cm]{graphics/scara.pdf}
  93. \caption{Schematic example of a SCARA, consisting of two rotation linkages. This setup can be compared to a human arm, where the gray base above the whiteboard represents the shoulder and the connections between both linkages the elbow.}
  94. \label{fig:scara}
  95. \end{figure}
  96. \subsubsection{Choice of system}
  97. The previous sections have shown four different configurations.
  98. These configurations are compared in \autoref{tab:initial_design}.
  99. Each of the systems are scored on range, dimension, speed, scaling and the interesting dynamics.
  100. The range scores the system on the practical dimension of the system, larger is better.
  101. The cable and cartesian configuration scale very well, the cables or slider rails can be made longer without real difficulty.
  102. The SCARA or polar configuration run into problems with the arm lengths, as forces scale quadratically with their length.
  103. The dimension looks at the number of states that require control and is for all systems defined as 2.5D.
  104. The half dimension is the binary state for the marker on or off the board.
  105. Except for the cable bot, all configurations score sufficient on speed.
  106. The cable bot can be quick, but is limited in acceleration, and depends on the type of cable configuration.
  107. The last one, how interesting or challenging are the dynamics.
  108. The cartesian configuration is trivial, both sliders operate completely separate from each other and the position coordinates can be mapped one to one with the sliders.
  109. For the other configuration, some inverse kinematics are required to get from desired position to the control angles of the system.
  110. \begin{table}[]
  111. \caption{Table with comparison of the four proposed configurations and a combined configuration of the cable bot and the SCARA.}
  112. \label{tab:initial_design}
  113. \begin{tabular}{l|l|l|l|l|l|}
  114. \cline{2-6}
  115. & Cable bot & Cartesian & Polar & SCARA & Combined \\ \hline
  116. \multicolumn{1}{|l|}{Range} & + + & + & - - & - & + + \\ \hline
  117. \multicolumn{1}{|l|}{Dimension} & 2.5 & 2.5 & 2.5 & 2.5 & 4.5 \\ \hline
  118. \multicolumn{1}{|l|}{Speed} & - & + & + & + + & + \\ \hline
  119. \multicolumn{1}{|l|}{\begin{tabular}[c]{@{}l@{}}Interesting\\ dynamics\end{tabular}} & + & - - & + & + & + + \\ \hline
  120. \end{tabular}
  121. \end{table}
  122. Based on the dimension, all configurations fail to meet the required four state minimum.
  123. By combining two configurations, it is possible to meet the minimum of four states.
  124. To get the best system, I decided to combine a 'speed' and a 'range' configuration.
  125. This results in a system that has both properties.
  126. Combining anything with the cartesian configurations, creates just a moving base for the other configurations.
  127. Together with the trivial dynamics, this option is discarded.
  128. Suspending the SCARA of the polar configuration with cables creates very interesting dynamics, as moving the end-effector also influences the cables.
  129. From both options, the SCARA is quicker and scales better with range than the polar.
  130. Therefore, the SCARA is chosen above the polar configuration to be combined with the cable bot.
  131. The grading for the combined system is shown in the most right column in \autoref{tab:initial_design}.
  132. \begin{figure}
  133. \centering
  134. \includegraphics[width=10.8cm]{graphics/combined.pdf}
  135. \caption{Combined system that integrates the cable bot together with the SCARA. The SCARA in red is mounted on the carriage in blue. This carriage is then suspended by cables.}
  136. \label{fig:combined}
  137. \end{figure}
  138. In the combined system, the SCARA will only be large enough to write a small number of characters at the time.
  139. This will alternate with the cable bot moving the base of the SCARA to the next position, so that it can write the next set of characters on the whiteboard.
  140. \autoref{fig:combined} shows a simple view of the system.
  141. \subsubsection{Evaluation}
  142. This was the first step that felt really productive in the design process.
  143. It created a enormous amount of information and insight of the design.
  144. In hind sight, it would have been useful to have this information during the specifications step.
  145. However, as the specifications step are mainly on the "what" to solve, and specifically not on "how" to solve it, this information was avoided on purpose during the specifications step.
  146. This step did result in a initial design that can be used in the next steps.
  147. However, I noticed that none of the previous steps gave some implementation threshold.
  148. For the problem description and the specifications steps this was a minimum implementation level.
  149. This step was a optimal implementation level, the minimum was reached rather quick.
  150. But at what level of implementation needs this step to be concluded?
  151. A related question: Would a simple dynamic model of the initial design be a useful insight or a waste of time?