-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresources.py
More file actions
119 lines (116 loc) · 4.56 KB
/
Copy pathresources.py
File metadata and controls
119 lines (116 loc) · 4.56 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
"""
Curated resources — published articles, methodology docs, and references.
"""
RESOURCES = [
{
"category": "SMILE Methodology",
"items": [
{
"title": "Impact First, Data Last — The SMILE Approach",
"description": "Core principle: start with outcomes, not data. How SMILE reverses the common digital twin failure mode.",
"type": "methodology",
"access": "free",
},
{
"title": "The Six Phases of SMILE",
"description": "From Reality Emulation to Perpetual Wisdom — the complete digital twin implementation journey.",
"type": "methodology",
"access": "free",
},
{
"title": "Minimal Viable Twin (MVT) — Virtual First Validation",
"description": "Apply lean methodology to digital twins. Ship value in weeks, not years.",
"type": "methodology",
"access": "free",
},
],
},
{
"category": "Smart Buildings & Energy",
"items": [
{
"title": "Self-Learning Digital Twins for Municipal Schools",
"description": "How edge-native AI optimized heating in Swedish schools — from radiator to grid level.",
"type": "case-study",
"access": "free",
},
{
"title": "The Greenest Asset Is the One That Already Exists",
"description": "80% of 2050's buildings exist today. How self-learning control systems cut emissions.",
"type": "article",
"access": "free",
},
{
"title": "Democratizing Smart Buildings Through Open Systems",
"description": "Breaking vendor lock-in with open, interoperable building platforms.",
"type": "article",
"access": "free",
},
],
},
{
"category": "Interoperability & Standards",
"items": [
{
"title": "MIMs — 10 Rules That Make Digital Twins Talk to Each Other",
"description": "Minimal Interoperability Mechanisms for cross-domain, cross-vendor digital twin ecosystems.",
"type": "methodology",
"access": "free",
},
{
"title": "Four Layers of Interoperability",
"description": "Technical, semantic, organizational, and legal — why most projects only address one.",
"type": "article",
"access": "free",
},
{
"title": "Omni-Interoperability for Knowledge Transfer",
"description": "Accelerating knowledge transfer between people, systems, and AI.",
"type": "article",
"access": "free",
},
],
},
{
"category": "Edge Computing & AI",
"items": [
{
"title": "Edge-Native Is the Way — Local Control First",
"description": "Why intelligence should be created where data is generated, not shipped to the cloud.",
"type": "article",
"access": "free",
},
{
"title": "Explainable AI Is Easiest When Anchored in Reality",
"description": "The AI Journey from data contextualization to explainable decision making.",
"type": "article",
"access": "free",
},
{
"title": "Ontology Factories as Foundation for AI Factories",
"description": "Why structured knowledge must precede AI deployment.",
"type": "article",
"access": "free",
},
],
},
{
"category": "Biological & Personal Digital Twins",
"items": [
{
"title": "From Buildings to Bodies — The Biological Digital Twin",
"description": "The same sense-model-predict-intervene pattern applied to living beings.",
"type": "article",
"access": "free",
},
{
"title": "Your Body Deserves a Digital Twin",
"description": "Personal digital twins for health, wellness, and longevity — edge-native, WHO-grounded.",
"type": "article",
"access": "free",
},
],
},
]
def get_resources() -> list[dict]:
return RESOURCES