aboutsummaryrefslogtreecommitdiff
path: root/rdf/learning_tentacular.sdm
diff options
context:
space:
mode:
authorJonas Smedegaard <dr@jones.dk>2024-05-13 16:17:09 +0200
committerJonas Smedegaard <dr@jones.dk>2024-06-04 17:35:41 +0200
commitb5d86b926b83868ac793fa3426ba4d5dc3181a34 (patch)
tree8744011a8172115a99c655516e7bdf6feac890d0 /rdf/learning_tentacular.sdm
parent0d66c80325616131921f654280a7095111939483 (diff)
refine learning ontology: separate general learning from tentacular learning
Diffstat (limited to 'rdf/learning_tentacular.sdm')
-rw-r--r--rdf/learning_tentacular.sdm81
1 files changed, 81 insertions, 0 deletions
diff --git a/rdf/learning_tentacular.sdm b/rdf/learning_tentacular.sdm
new file mode 100644
index 0000000..cf1eebb
--- /dev/null
+++ b/rdf/learning_tentacular.sdm
@@ -0,0 +1,81 @@
+module learning tentacular <https://thoughtroam.abcdefghijklmnopqrstuvxyzæøå.dk/rdf/> is
+
+ import [ dc skos xsd ]
+
+ @skos:prefLabel = "Tentacular Learning Ontology"@en
+ @dc:description = "Domain-specific ontology for Tentacular Learning as defined by Ernst Schraube"@en
+ @dc:created = @xsd:date(2024-04-26)
+ @dc:creator = <https://dr.jones.dk/me/#me>
+ @dc:license = <https://spdx.org/licenses/AGPL-3.0-or-later>
+
+ ;; Illeris
+ entity Learner is
+ identity id -> unknown
+
+ receives -> Teaching
+ establishes -> Learning
+ end
+
+ entity Teacher is
+ identity id -> unknown
+
+ facilitates -> Learning
+ teaches -> Teaching
+ end
+
+ entity Material
+
+ structure Learning is
+ strengthenedBy -> Motivation
+ weakenedBy -> Distraction
+ end
+
+ structure Teaching is
+ differentFrom -> Learning
+ end
+
+ entity School
+
+ ;; the "what"
+ entity Goal
+
+ ;; the "why"
+ structure Motivation is
+ type -> MotivationType
+ motivatedBy -> Motivator
+ end
+
+ enum MotivationType of
+ Defensive
+ Expansive
+ end
+
+ ;; the "how"
+ structure Movement is
+ type -> MovementType
+ end
+
+ enum MovementType of
+ Affinitive
+ Definitive
+ end
+
+ ;; the "evaluation"
+ entity Evaluation
+
+ entity Motivator
+; affectsMotivation
+
+ entity Method
+
+ entity Expectation
+
+ entity Prelearned
+
+; entity World
+
+ entity
+
+ entity
+
+end