Система деятельности (диаграмма): различия между версиями

Материал из Поле цифровой дидактики
Новая страница: «{{Diagram |Field_of_knowledge=Управление, Обществознание |Environment=Graphviz, PerplexityAI }} == 1 == <graphviz> digraph activity_system { rankdir=TB; node [shape=ellipse, fontsize=10]; subgraph cluster_subject { label="Subject"; subject [label="Student"]; } subgraph cluster_object { label="Object"; object [label="Learning Material"]; } subgraph cluster_community { label="Community";...»
 
 
(не показано 6 промежуточных версий этого же участника)
Строка 45: Строка 45:
}
}
</graphviz>
</graphviz>
== 2 ==
<graphviz>
digraph activity_system2 {
  rankdir=TB;
size="12,12";
  node [shape=ellipse, fontsize=10];
  subgraph cluster_subject {
    label="Subject";
    subject [label="Student"];
  }
  subgraph cluster_object {
    label="Object";
    object [label="Learning Material"];
  }
  subgraph cluster_community {
    label="Community";
    community [label="Teachers, Peers, Parents"];
  }
  subgraph cluster_tools {
    label="Tools";
    tools [label="Textbooks, Online Learning Platforms, Communication Tools"];
  }
  subgraph cluster_rules {
    label="Rules";
    rules [label="Curriculum, School Policies, Social Norms"];
  }
  subgraph cluster_outcome {
    label="Outcome";
    outcome [label="Knowledge, Skills, Attitudes"];
  }
  subject -> object [arrowhead=vee];
  community -> object [arrowhead=vee];
  tools -> object [arrowhead=vee];
  rules -> object [arrowhead=vee];
  outcome -> object [arrowhead=vee];
  object -> subject [arrowhead=vee];
  subject -> community [arrowhead=vee];
  community -> subject [arrowhead=vee];
  object -> tools [arrowhead=vee];
  tools -> object [arrowhead=vee];
  object -> rules [arrowhead=vee];
  rules -> object [arrowhead=vee];
  object -> outcome [arrowhead=vee];
  outcome -> object [arrowhead=vee];
}
</graphviz>
== 3 ==
<graphviz>
digraph activity_system {
size = "10,10";
  rankdir=TB;
  node [shape=ellipse, fontsize=10];
  subgraph cluster_subject {
    label="Subject";
    subject [label="Student 1"];
    subject1 [label="Student 2"];
  }
  subgraph cluster_object {
    label="Object";
    object [label="Learning Material"];
  }
  subgraph cluster_community {
    label="Community";
    community [label="Teachers, Peers, Parents"];
  }
  subgraph cluster_tools {
    label="Tools";
    tools [label="Textbooks, Online Learning Platforms, Communication Tools"];
  }
  subgraph cluster_rules {
    label="Rules";
    rules [label="Curriculum, School Policies, Social Norms"];
  }
  subgraph cluster_outcome {
    label="Outcome";
    outcome [label="Knowledge, Skills, Attitudes"];
  }
  subject -> object [arrowhead=vee];
  community -> object [arrowhead=vee];
  tools -> object [arrowhead=vee];
  rules -> object [arrowhead=vee];
  outcome -> object [arrowhead=vee];
  object -> subject [arrowhead=vee];
  subject -> community [arrowhead=vee];
  community -> subject [arrowhead=vee];
  object -> tools [arrowhead=vee];
  tools -> object [arrowhead=vee];
  object -> rules [arrowhead=vee];
  rules -> object [arrowhead=vee];
  object -> outcome [arrowhead=vee];
  outcome -> object [arrowhead=vee];
  subject1 -> object [arrowhead=vee];
  object -> subject1 [arrowhead=vee];
  subject1 -> community [arrowhead=vee];
  community -> subject1 [arrowhead=vee];
  object -> tools [arrowhead=vee];
  tools -> object [arrowhead=vee];
  object -> rules [arrowhead=vee];
  rules -> object [arrowhead=vee];
  object -> outcome [arrowhead=vee];
  outcome -> object [arrowhead=vee];
}
</graphviz>
== PlantUML ==
<uml>
@startuml
!define SHADOWGRADIENT 0xf0f0f0 0xd0d0d0
!define SHADOW 0x808080
skinparam monochrome true
class "Subject" as subject {
  + Student 1
  + Student 2
}
class "Object" as object {
  + Learning Material
}
class "Community" as community {
  + Teachers, Peers, Parents
}
class "Tools" as tools {
  + Textbooks, Online Learning Platforms, Communication Tools
}
class "Rules" as rules {
  + Curriculum, School Policies, Social Norms
}
class "Outcome" as outcome {
  + Knowledge, Skills, Attitudes
}
subject -- object
community -- object
tools -- object
rules -- object
outcome -- object
object -- subject
subject -- community
community -- subject
object -- tools
tools -- object
object -- rules
rules -- object
object -- outcome
outcome -- object
object -- object
@enduml
</uml>
== MerMaid ==
{{#mermaid:graph TD
  subgraph Subject
    Student1((Student 1))
    Student2((Student 2))
  end
  subgraph Object
    LearningMaterial
  end
  subgraph Community
    TeachersPeersParents
  end
  subgraph Tools
    TextbooksOnlineLearningPlatformsCommunicationTools
  end
  subgraph Rules
    CurriculumSchoolPoliciesSocialNorms
  end
  subgraph Outcome
    KnowledgeSkillsAttitudes
  end
  Student1 --> LearningMaterial
  Student2 --> LearningMaterial
  LearningMaterial --> Student1
  LearningMaterial --> Student2
  LearningMaterial --> TeachersPeersParents
  TeachersPeersParents --> LearningMaterial
  LearningMaterial --> TextbooksOnlineLearningPlatformsCommunicationTools
  TextbooksOnlineLearningPlatformsCommunicationTools --> LearningMaterial
  LearningMaterial --> CurriculumSchoolPoliciesSocialNorms
  CurriculumSchoolPoliciesSocialNorms --> LearningMaterial
  LearningMaterial --> KnowledgeSkillsAttitudes
  KnowledgeSkillsAttitudes --> LearningMaterial
}}

Текущая версия от 20:51, 14 апреля 2024


Описание
Область знаний Управление, Обществознание
Среды для создания диаграммы: Graphviz, PerplexityAI

1

2

3

PlantUML

MerMaid