Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

71 Zeilen
5.2KB

  1. %&tex
  2. \subsection{Feature Definition}
  3. \label{sec:case_featuredefinition}
  4. This step divides the specifications and initial design into features.
  5. These features will be implemented one by one during the development cycle, later in the process.
  6. As described in \autoref{sec:featuredefinition}, the functionality of the system is split over four different levels of abstraction.
  7. The result of this split is shown \autoref{fig:robmosys}.
  8. \begin{figure*}
  9. \centering
  10. \includegraphics[width=136mm]{graphics/robmosys.pdf}
  11. \caption{Hierarchical tree of different functions and components.}
  12. \label{fig:robmosys}
  13. \end{figure*}
  14. \subsubsection{Evaluation}
  15. \label{sec:case_featuredefinition_evaluation}
  16. The mission and task features are easy to define.
  17. The skill and service features become a bit more vague, often features fit in both categories.
  18. Sometimes it is difficult to split a skill into a service, as they are already very specific.
  19. Additionally, I attempted to keep the feature tree a bit compact, to keep in scope with this thesis.
  20. If each feature would have been split methodically, the amount of features would be immense.
  21. The components could also use a similar approach as the functions, resulting in a hierarchical structure of sub-components.
  22. Where the \ac{scara} would have motors and electronics as sub-components.
  23. % Even though there is a feature definition that can be used in the next step, there remain a couple of difficulties.
  24. % There is still a clear separation between features and components.
  25. % And the single level of components makes it impossible to depict the dependencies between components.
  26. % Developing larger and complex systems will have sub-components in the system, introducing even more dependencies.
  27. % Therefore, this is not a valid solution for feature definition.
  28. % Fortunately the current solution suffices to continue the case study.
  29. %%%%%%%%%%%%%%%%%%%%%%%
  30. % It was however not possible to describe the all aspects of the design with features.
  31. % I found that the design method did not take components into account.
  32. %
  33. %
  34. %
  35. % However, the initial set of features did not meet the expected set of features.
  36. % This led me to review how the features are defined.
  37. % The following sections explain what the problem caused and how it is solved.
  38. %
  39. % \subsubsection{Splitting the features}
  40. % The first issue was the lack of a clear border between features.
  41. % Thus, depending on where the developer places that border, the set of features changed significantly.
  42. % For example, the main functionality is \emph{writing a tweet on a white-board.}
  43. % A clear feature of this functionality is \emph{writing}.
  44. % However, must the \emph{writing} be split in a feature for writing a line, a word, or single character?
  45. % Moreover, it is also possible to argue that \emph{writing one character} a sub-feature of \emph{writing a word}, which in itself is a sub-feature of \emph{writing a line} etcetera.
  46. %
  47. % \subsubsection{Missing features}
  48. % The second issue was that the resulting set of features did not contain any of the expected features.
  49. % From the initial design it was expected that the features must include a SCARA and a cable driven carriage, because they make the system and have to be implemented somewhere in the process.
  50. % However, independent of how the functionality was split into features, no SCARA nor cable driven carriage was included in the set of features.
  51. % Which is not surprising as the SCARA and carriage do not define any functionality and can therefore not be a result from the current approach.
  52. % This mismatch between results and expectation together with the ambiguity of splitting features called for a review the design method regarding the current step.
  53. %
  54. % \subsubsection{Feature and Component Hierarchy}
  55. % The solution for both issues is a hierarchical structure for the features.
  56. % The structure is based on the RobMoSys principle for separation of levels \autocite{noauthor_robmosys_2017}.
  57. % The top-level of the structure is the mission, which represents the higher level goal of the system.
  58. % Each mission consists of a number of tasks, where each task consists of a number of skills.
  59. % The levels cascade down towards the bottom-level for RobMoSys, which is the hardware layer.
  60. % Although not all the different levels from the RobMoSys principle were applicable to the design method in this study, it enabled me to create the feature definition as shown in \autoref{fig:robmosys}.
  61. % In this feature definition, the levels from mission to function are used to describe the different features of the system.
  62. % The mission describes the holistic functionality of the system.
  63. % The subsequent levels all split off in more detailed behavior.
  64. % The bottom level is used to describe the hardware components which are responsible for performing the functions of the system.
  65. % This hierarchy allows to implement features or components one by one, starting from the bottom and combining this into a system towards the top.