選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

109 行
7.2KB

  1. \chapter{Introduction}
  2. This document will describe the feature and test specification step.
  3. The original plan was to specify features and give these features there own specifications.
  4. Together these feature specifications have to ensure that the system specifications are met.
  5. And eventually for each feature a set of tests is designed so that the feature specifications can be monitored.
  6. However, during this step it became clear that this method was not feasible in the limited amount of time.
  7. Spending more time on this step would not result in a better test of the method.
  8. It might even have a negative effect as other steps would be overshadowed by this step.
  9. Eventhough the step has not been finished we still managed to learn some valuable lessons.
  10. One of the lessons was to use RobMoSys for the feature specifications.
  11. This will be explained in \autoref{chap:robmosys}.
  12. The feature specifications were very difficult as it turned out that a lot of this depended on the level of detail in the system specifications.
  13. We will explain this part in \autoref{chap:specifications}.
  14. \chapter{RobMoSys}
  15. \label{chap:robmosys}
  16. The original method was to just look at the features of the system and describe them.
  17. This turned out to be impossible as there are a lot of features at different levels with different dependencies.
  18. For example \textcite{broenink_variable_2018} defines three features on his segway.
  19. However, the hardware already exist.
  20. Therefore, features like wheels, motors, sensors, powerpack, etc. do not have to be considered.
  21. We underestimated the amount of features if you do not have pre-existing hardware.
  22. A problem was that, for example, a motor did not fit in our original idea of feature.
  23. However, taking a high-level feature defeated the purpose of this method with multiple steps of implementation.
  24. As this high-level feature would then include motors, control, sensors etc.
  25. Eventually we used RobMoSys to separate the features in a way that made sense.
  26. We started with a mission, which is in this case the 'tweet on a whiteboard' and broke it up in to tasks.
  27. So what tasks are required to fulfill the mission.
  28. These tasks required certain skills, which required then functions.
  29. \autoref{fig:robmosys} shows the resulting graph of the separation into different levels.
  30. The figure also shows our fifth layer as subsystem.
  31. A full Robmosys would even separate this in to 4 additional layers but we decided on keeping it simpler.
  32. The simplification was done as this was mainly in middle- and software which was not the focus of this thesis.
  33. Furthermore, because we did not see any additional value but it would cost a lot of extra time.
  34. \begin{figure*}
  35. \centering
  36. \includegraphics[width=0.8\paperwidth]{graphics/robmosys.pdf}
  37. \caption{Separation of the mission into tasks, skills, functions and subsystems based on a simplification of RobMoSys.}
  38. \label{fig:robmosys}
  39. \end{figure*}
  40. In the end the graph gives us a lot of sub-features.
  41. We will not implement every single node as a feature because 15 small features would only create loads of overhead.
  42. But what we can do is group sub-features.
  43. This also brings another advantage because we include a higher-level feature that can be used as test.
  44. For example, the SCARA can be tested by successfully moving the marker on the board.
  45. In the later step where we will select one of the features we will use this graph as a basis.
  46. We can group features from this graph such that they can be implemented in about a week.
  47. This way we reduce the overhead of implementation and keep an eye on the progress.
  48. \chapter{Specifications}
  49. \label{chap:specifications}
  50. The following step was to distribute the system specifications between the features.
  51. The problem we ran in to is that neither the system specification nor the RobMoSys was implemented with enough detail that they could work together.
  52. Parts of the specifications lacked in detail, even with the use the EARS-method \autocite{mavin_easy_2009}.
  53. This resulted that some specification where valid for all sub-features as the specifications where to broad.
  54. However, improving the specifications would sometimes result in that it did not fit on one of the sub-features.
  55. This is because the RobMoSys misses sub-features which would specifically implement the control system.
  56. While we were working on this step we updated the system specifications.
  57. This was done because we found that some of the specification did not make any sense in for this research.
  58. While others were really easy to expand.
  59. Therefore, these following list represents the updated specifications:
  60. \begin{itemize}
  61. \item The Writer shall be able to write at least 50 characters per line.
  62. \item The Writer shall be able to write at least 5 lines of text.
  63. \item The Writer shall plot characters with a size that is readable from 4 meters for a person with good eyesight.
  64. \item The Writer shall plot in a regular used font with corresponding character spacing.
  65. \item When a new tweet is send to the Writer, the Writer, shall wipe the existing tweet and write down a new tweet.
  66. \item If the Writer is not wiping or writing then the Writer shall not obstruct the view of the whiteboard.
  67. \item While writing, the Writer shall have a writing speed of at least 1 character per second.
  68. \item If the Writer is tasked to wipe the tweet, the Writer shall wipe the tweet within 60 seconds
  69. \item When a reset-signal is send to the Writer, the Writer shall re-calibrate its position on the board.
  70. \item When a wipe-signal is send to the Writer, the Writer shall wipe the board clean.
  71. \item The Writer shall not damage itself.
  72. \item While writing, the SCARA shall have a writing speed of at least 1.5 characters per second.
  73. \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.
  74. \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.
  75. \item When the SCARA has to be moved to a new position, the Carriage shall perform this movement within 1 second.
  76. \end{itemize}
  77. \chapter{Decision}
  78. In the end we decided that a it was better to stop the current step.
  79. We have some specific points that require improvement in a follow up.
  80. The steps system specifications, initial design, feature separation and feature specifications have to be merged in to a kind of spiral model.
  81. Where the process would start with a global description of the system and some initial designs.
  82. This initial design can then be expanded with some course system specifications.
  83. This would be followed by a RobMoSys-type of analysis.
  84. The RobMoSys gives a brief interpretation of the different subsystems required.
  85. For each subsystems we have to assign specifications, if it seems that this is difficult we can choose to review the specifications.
  86. We can add more detail to the specifications for example, or split them in to multiple separate specifications.
  87. For now, we have enough information to test the next steps.
  88. At the beginning of each feature-implementation we will write the test specifications.
  89. And during the selection we have to keep the list of specifications in mind.
  90. We think that this is possible as the list of specifications and the set of systems is manageable.