Обсуждение:Социотехническая система: различия между версиями

Материал из Поле цифровой дидактики
Нет описания правки
 
(не показано 7 промежуточных версий этого же участника)
Строка 1: Строка 1:
== T1 ==
<graphviz>
digraph G {
    // Node settings
        node [style=filled, fillcolor=black, shape=square, label=""]; A;
    node [style=filled, fillcolor=white, shape=circle, label=""]; B; C;
    // Edge settings
    edge [color=black]; // Default edge color
      edge [dir=both];
    A -> B [color=red]; // Red edge from A to B
    B -> C [color=black]; // Black edge from B to C
}
</graphviz>
== T2 ==
<graphviz>
<graphviz>
digraph HM {
digraph HM {
rankdir = LR ;
rankdir = LR ;
edge [fontname="Helvetica,Arial,sans-serif"]
edge [fontname="Helvetica,Arial,sans-serif"] ;
node [shape=box, style=filled, color=black];  M1;  
      edge [dir=both];
node [shape=circle, style=filled, color=white, label=""]; H1 ;
node [shape=square, style=filled, color=black];  M1;  
node [shape=circle, style=filled, fillcolor=white, label=""]; H1 ;
H1 -> M1 [label="H-M-interaction"];
H1 -> M1 [label="H-M-interaction"];
}
</graphviz>
== T3 ==
<graphviz>
digraph HM {
    layout=neato;
edge [dir=both];
node [shape=square, style=filled, color=black];  M1;
node [shape=circle, style=filled, fillcolor=white,  label=""]; H1 ; H2;
H1 -> M1 ;
H2  -> M1 ;
H1 -> H2 ;
}
</graphviz>
== T4 ==
<graphviz>
digraph HM {
    layout=neato;
edge [dir=both];
node [shape=square, style=filled, color=black];  M1; M2; M3; M4; M5;
node [shape=circle, style=filled, fillcolor=white,  label=""]; H1 ; H2; H3; H4; H5;
H1 -> H3 [label="This is link"] ;
H3 -> M1 ;


}
}
</graphviz>
</graphviz>

Текущая версия от 09:23, 6 декабря 2024

T1

T2

T3


T4