Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

92 lignes
5.2KB

  1. \chapter{Separation of Concerns}
  2. \label{chap:separation}
  3. We have an initial design and in this step we will define features and subsystems.
  4. To structure this process we will use a tiny bit of the RobMoSys approach.
  5. With that we will define the mission, tasks, skills, functions and subsystems.
  6. The subsystem combines some layers of RobMoSys as they are to specific for the scope of this thesis.
  7. \section{RobMoSys}
  8. The mission is clear and has already been stated before.
  9. The system shall be able to write a tweet on a whiteboard.
  10. \autoref{fig:robmosys} shows how the mission organized.
  11. This separation is not created to be the most optimal as it is based on our initial design.
  12. The three skills of move marker, move wiper and move carriage are redundant as they all have movement in the same plane.
  13. One could say that this overcomplicates the design.
  14. However, we chose for some complexity in the design, which creates dependency between subsystems, such that the design method can be tested.
  15. \begin{figure*}
  16. \centering
  17. \includegraphics[width=0.8\paperwidth]{graphics/robmosys.pdf}
  18. \caption{Separation of the mission into tasks, skills, functions and subsystems based on a simplification of RobMoSys.}
  19. \label{fig:robmosys}
  20. \end{figure*}
  21. RobMoSys creates a top-down approach which results in the different subsystems.
  22. The design method specifies that we want to implement feature by feature.
  23. From \autoref{fig:robmosys} we can conclude that each step in the graph represents a sub-feature.
  24. It might be a piece of hardware, control law or interface, they can all be classified as features of some sort.
  25. Furthermore, it automatically generates the dependency tree as well.
  26. As we cannot write a character somewhere on the board if we cannot move the marker.
  27. \section{Feature Definition and Dependencies}
  28. In the previous section we discussed that we have loads of sub-features.
  29. We could implement all these features one by one.
  30. But as some of them have single dependencies they could be combined.
  31. The function 'Move wiper on board' is directly linked to the skill 'Wipe area' and could easily combined.
  32. Especially as the skill is a direct test case for the function and as test cases are already required this is a valid optimization.
  33. \section{Feature specifications}
  34. The specifications that are listed in the system specifications document have to be distributed among the features.
  35. We have grouped some specifications as they influence the same feature-group.
  36. \subsection{Reach}
  37. The first grouping is for the reach of the robot.
  38. From the specifications document we find three specifications which influence the possible position of the carriage:
  39. \begin{itemize}
  40. \item The Writer shall be able to write at least 50 characters per line.
  41. \item The Writer shall be able to write at least 5 lines of text.
  42. \item If the Writer is not wiping or writing then the Writer shall not obstruct the view of the whiteboard.
  43. \end{itemize}
  44. The first two specify the minimum reach of the carriage.
  45. The third specifies that the carriage has to move out of the way.
  46. \autoref{fig:reach} shows the sub-features that cover the behavior of the carriage.
  47. We have to take these three into account when we will develop these sub-features.
  48. \begin{marginfigure}
  49. \includegraphics[width=0.8\linewidth]{graphics/reach.pdf}
  50. \caption{Sub-features that are responsible for reach related specifications}
  51. \label{fig:reach}
  52. \end{marginfigure}
  53. \subsection{Character Writing}
  54. The sub-systems shown in \autoref{fig:char} are responsible for getting the characters on the board.
  55. The character writing specifications are given as:
  56. \begin{itemize}
  57. \item The Writer shall plot characters with a size that is readable from 4 meters for a person with good eyesight.
  58. \item The Writer shall plot in a regular used font with corresponding character spacing.
  59. \item While writing, the Writer shall have a writing speed of at least 1 character per second.
  60. \end{itemize}
  61. The later one covers the writing speed.
  62. The speed does not only depend on the time required for a single char.
  63. It also depends on moving to the position of the next character.
  64. This is overlaps with the grouping for the reach specification as described in the previous subsection and can be seen in \autoref{fig:reach}
  65. So we will split this into the following sub-specifications:
  66. \begin{itemize}
  67. \item While writing, the SCARA shall have a writing speed of at least 1.5 characters per second.
  68. \item When the Carriage/base of the SCARA is at a static position, the SCARA shall be able to write at least 3 characters at that position.
  69. \item When the SCARA finished writing at their current position, the Carriage shall move the SCARA to it's next position where it can write the subsequent characters.
  70. \item When the SCARA has to be moved to a new position, the Carriage shall perform this movement within 1 second.
  71. \end{itemize}
  72. \begin{marginfigure}
  73. \includegraphics[width=0.8\linewidth]{graphics/char.pdf}
  74. \caption{Sub-features that are responisible for character writing specifications}
  75. \label{fig:char}
  76. \end{marginfigure}
  77. \subsection{Tooling}
  78. For the system to be able to switch from writing to wiping, there must be some toolchanging.
  79. The general idea is that the end-effector can hold a tool and for a marker it shall be able to press it on the board.