You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
2.1 KiB

1 month ago
  1. We use the following states:
  2. %ground floor, basement,second floor, passing ground floor
  3. \begin{itemize}
  4. \item $s_g$ indicates that the elevator is on the ground floor.
  5. \item $s_b$ indicates that the elevator is in the basement.
  6. \item $s_s$ indicates that the elevator is on the second floor.
  7. \item $s_f$ indicates that the elevator is passing the first floor.
  8. \end{itemize}
  9. The transition system is then given by: $\mathcal{T}$ = ($S$, $S_0$, $R$) with $S$ = $\{s_g, s_b, s_s, s_f\}$, $S_0$ = $\{s_g\}$, $R$ = $\{(s_g, s_g), (s_g, s_b), (s_b, s_b), (s_b, s_g), (s_g, s_f), (s_f, s_s), (s_s, s_s), (s_s, s_f), (s_f, s_g)\}$\\
  10. \begin{center}
  11. \begin{tikzpicture}[scale=0.2]
  12. \tikzstyle{every node}+=[inner sep=0pt]
  13. \draw [black] (13.9,-26) circle (3);
  14. \draw (13.9,-26) node {$s_g$};
  15. \draw [black] (27.8,-35.6) circle (3);
  16. \draw (27.8,-35.6) node {$s_b$};
  17. \draw [black] (27.8,-26) circle (3);
  18. \draw (27.8,-26) node {$s_f$};
  19. \draw [black] (27.8,-15.8) circle (3);
  20. \draw (27.8,-15.8) node {$s_s$};
  21. \draw [black] (4.8,-26) -- (10.9,-26);
  22. \fill [black] (10.9,-26) -- (10.1,-25.5) -- (10.1,-26.5);
  23. \draw [black] (11.501,-24.218) arc (261.13116:-26.86884:2.25);
  24. \fill [black] (13.85,-23.01) -- (14.47,-22.3) -- (13.48,-22.14);
  25. \draw [black] (16.37,-27.7) -- (25.33,-33.9);
  26. \fill [black] (25.33,-33.9) -- (24.96,-33.03) -- (24.39,-33.85);
  27. \draw [black] (26.957,-38.467) arc (11.34364:-276.65636:2.25);
  28. \fill [black] (25.01,-36.67) -- (24.13,-36.34) -- (24.33,-37.32);
  29. \draw [black] (25.33,-33.9) -- (16.37,-27.7);
  30. \fill [black] (16.37,-27.7) -- (16.74,-28.57) -- (17.31,-27.75);
  31. \draw [black] (16.9,-26) -- (24.8,-26);
  32. \fill [black] (24.8,-26) -- (24,-25.5) -- (24,-26.5);
  33. \draw [black] (27.8,-23) -- (27.8,-18.8);
  34. \fill [black] (27.8,-18.8) -- (27.3,-19.6) -- (28.3,-19.6);
  35. \draw [black] (28.483,-12.891) arc (194.52895:-93.47105:2.25);
  36. \fill [black] (30.52,-14.57) -- (31.42,-14.86) -- (31.17,-13.89);
  37. \draw [black] (27.8,-18.8) -- (27.8,-23);
  38. \fill [black] (27.8,-23) -- (28.3,-22.2) -- (27.3,-22.2);
  39. \draw [black] (24.8,-26) -- (16.9,-26);
  40. \fill [black] (16.9,-26) -- (17.7,-26.5) -- (17.7,-25.5);
  41. \end{tikzpicture}
  42. \end{center}