9148c358d0
Topic_Agent/Topic_Blog/Topics/Topics_Biz/Topics_Meeting/Topics_Rag의 마크다운 지식 문서를 Topic_General/Topic_Programming/Topic_Graphic/Topic_Business 4개 카테고리로 재분류. - 중복 제거: frontmatter의 status:duplicate/merged + duplicate_of/redirect_to 필드로 자기 자신을 중복으로 선언한 리다이렉트 stub 1032개 제거, 완전 동일 내용 파일 472개 제거, 동일 파일명·다른 내용 충돌 시 더 큰(완전한) 버전만 유지(162개 제거) — 총 1639개 중복 제거. - 분류: 폴더 단위로 명확한 항목(AI_and_ML/Coding/Architecture 등 → Programming, Comfyui/Visual_Effects → Graphic, Topics_Biz/Topics_Meeting/사업 등 → Business, Poetic_Blog_Writing/창의성/Game_Design 등 → General)은 폴더 우선순위로, 나머지 혼재 폴더(Topic_Agent/Topic_Blog/Topics 루트/Thinking & Reasoning/Other/UI_UX_Assets)는 title/tags 키워드 스코어링으로 파일 단위 분류(불명확한 경우 General로 폴백). 원본 폴더명은 "From_*" 서브폴더로 보존해 추적 가능성 유지. - 최종 배치: Programming 2784 / General 1608 / Graphic 285 / Business 249 = 4926개 문서. - 에이전트 운영 상태(.astra/.agent/.obsidian/sessions/memory/_company/docs/lessons/_shared/src)는 지식 콘텐츠가 아니므로 재분류 대상에서 제외하고 원위치 유지. - Topics/Topic_email(상위 보호 폴더 Topic_email과 파일명 100% 중복) 삭제 — 보호 폴더 자체는 미변경. - 완전히 비게 된 Topic_Agent/Topic_Blog/Topics_Biz/Topics_Rag 폴더 제거.
6.0 KiB
6.0 KiB
id, title, category, status, canonical_id, aliases, duplicate_of, source_trust_level, confidence_score, verification_status, tags, raw_sources, last_reinforced, github_commit, tech_stack
| id | title | category | status | canonical_id | aliases | duplicate_of | source_trust_level | confidence_score | verification_status | tags | raw_sources | last_reinforced | github_commit | tech_stack | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| wiki-2026-0508-digital-twin | Digital Twin | 10_Wiki/Topics | verified | self |
|
none | A | 0.9 | applied |
|
2026-05-10 | pending |
|
Digital Twin
매 한 줄
"매 digital twin 의 매 physical asset 의 living mirror". 매 sensor stream 가 매 simulation model 에 feed → 매 prediction / what-if / control. 2026 의 매 NVIDIA Omniverse + OpenUSD, Azure Digital Twins, AWS IoT TwinMaker 가 매 enterprise standard. 매 LLM-augmented reasoning over twin (Claude Opus 4.7 + DTDL graph query) 의 매 emerging.
매 핵심
매 3-tier
- Digital Model — 매 static representation, 매 sync X.
- Digital Shadow — 매 one-way sync (physical → digital).
- Digital Twin — 매 bidirectional sync (digital → physical control 의 가능).
매 ingredient
- 3D geometry (OpenUSD, glTF).
- Telemetry (MQTT, OPC UA, AVRO over Kafka).
- Physics / behavior (FMU, Modelica, Isaac Sim, Omniverse PhysX).
- Ontology / DTDL (Digital Twins Definition Language).
- AI layer (anomaly detection, forecasting, RL policy).
매 응용
- Manufacturing: BMW iFactory — 매 line 의 reconfigure 의 digital first.
- City — Singapore Virtual Singapore, Helsinki 3D+.
- Energy grid — 매 outage prediction, demand response.
- Healthcare — patient-specific cardiac twin (Dassault Living Heart).
- Robotics fleet — 매 Isaac Sim 의 sim-to-real RL training.
💻 패턴
Azure Digital Twins (DTDL v3)
{
"@context": "dtmi:dtdl:context;3",
"@id": "dtmi:com:factory:Pump;1",
"@type": "Interface",
"contents": [
{ "@type": "Property", "name": "serialNumber", "schema": "string" },
{ "@type": "Telemetry", "name": "rpm", "schema": "double" },
{ "@type": "Telemetry", "name": "temperature", "schema": "double" },
{ "@type": "Command", "name": "shutdown" },
{ "@type": "Relationship", "name": "feedsInto", "target": "dtmi:com:factory:Tank;1" }
]
}
MQTT → twin update (Python)
import paho.mqtt.client as mqtt
from azure.digitaltwins.core import DigitalTwinsClient
dt = DigitalTwinsClient("https://factory.api.weu.digitaltwins.azure.net", credential)
def on_msg(client, _, msg):
payload = json.loads(msg.payload)
patch = [{"op": "replace", "path": "/rpm", "value": payload["rpm"]},
{"op": "replace", "path": "/temperature", "value": payload["temp"]}]
dt.update_digital_twin(payload["twin_id"], patch)
c = mqtt.Client()
c.on_message = on_msg
c.connect("mqtt.factory.local", 1883)
c.subscribe("factory/+/telemetry")
c.loop_forever()
Twin graph query (Cypher-like)
SELECT pump, tank
FROM DIGITALTWINS pump
JOIN tank RELATED pump.feedsInto
WHERE pump.temperature > 85
AND IS_OF_MODEL(pump, 'dtmi:com:factory:Pump;1')
Omniverse + OpenUSD scene composition
from pxr import Usd, UsdGeom, Sdf
stage = Usd.Stage.CreateNew("factory.usda")
factory = UsdGeom.Xform.Define(stage, "/Factory")
pump = stage.OverridePrim("/Factory/Pump_42")
pump.CreateAttribute("custom:rpm", Sdf.ValueTypeNames.Float).Set(1480.0)
pump.CreateAttribute("custom:temperature", Sdf.ValueTypeNames.Float).Set(72.3)
stage.Save()
Anomaly detection on twin stream
from river import anomaly # online learning
detector = anomaly.HalfSpaceTrees(seed=42)
async for event in kafka_consumer("factory.telemetry"):
score = detector.score_one({"rpm": event.rpm, "temp": event.temp})
detector.learn_one({"rpm": event.rpm, "temp": event.temp})
if score > 0.95:
await dt.update_relationships(event.twin_id, "alert_state", "anomaly")
LLM reasoning over twin graph
graph_context = dt.query_twins("SELECT * FROM digitaltwins WHERE temperature > 80")
response = anthropic.messages.create(
model="claude-opus-4-7",
system="You analyze factory digital twin state for root-cause hypotheses.",
messages=[{"role": "user", "content": f"Twins: {graph_context}\nWhy is line 3 throughput dropping?"}],
)
Sim-to-real RL (Isaac Sim)
from omni.isaac.gym.vec_env import VecEnvBase
env = VecEnvBase(headless=True)
# 매 4096 parallel pump sims 의 train, 매 policy 가 real pump 에 deploy.
매 결정 기준
| 상황 | Approach |
|---|---|
| 매 high-fidelity physics | NVIDIA Omniverse + Isaac Sim |
| 매 enterprise IoT graph | Azure Digital Twins (DTDL) |
| 매 AWS-native | AWS IoT TwinMaker |
| 매 city / GIS | CesiumJS + 3D Tiles |
| 매 scientific sim | Modelica + FMU |
기본값: Azure Digital Twins or AWS TwinMaker for graph + telemetry; Omniverse for 3D/physics; OpenUSD for interchange.
🔗 Graph
- 부모: Cyber-Physical-Systems
- 응용: Predictive Maintenance
- Adjacent: Control_Systems_Engineering · MQTT
🤖 LLM 활용
언제: 매 twin graph 의 natural-language query → DTDL/SQL translation, 매 anomaly explanation, 매 maintenance work order generation. 언제 X: 매 hard-realtime control loop (sub-ms). 매 safety-critical actuation (deterministic controller 의 사용).
❌ 안티패턴
- 3D model only: 매 telemetry 가 X — 매 just CAD viewer.
- No bidirectional channel: 매 just shadow, 매 not twin.
- Monolithic schema: 매 DTDL inheritance / interfaces 의 사용.
- Synchronous queries on hot path: 매 read replica / cache.
- No data retention policy: 매 telemetry storage cost 가 explodes — tiered storage (hot Kafka → warm Parquet → cold S3).
🧪 검증 / 중복
- Verified (Microsoft DTDL v3 spec, NVIDIA Omniverse docs, AWS IoT TwinMaker, Gartner 2025 digital twin report).
- 신뢰도 A.
🕓 Changelog
| 날짜 | 변경 |
|---|---|
| 2026-05-08 | Phase 1 |
| 2026-05-10 | Manual cleanup — digital twin tiers, DTDL, Omniverse, sim-to-real |