Files
2nd/10_Wiki/Topic_Programming/DevOps_and_Security/Digital Thread Integration.md
T
Antigravity Agent 9148c358d0 docs(10_Wiki): 위키 전체 재구성 — Topic_* 폴더를 4개 카테고리로 통합 + 대규모 중복 제거
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 폴더 제거.
2026-07-05 00:33:48 +09:00

4.5 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-thread-integration Digital Thread Integration 10_Wiki/Topics verified self
Digital Thread
Industrial Data Thread
none A 0.9 applied
iiot
digital-thread
manufacturing
plm
2026-05-10 applied
language framework
Python/SQL OPC UA/MQTT/Kafka

Digital Thread Integration

매 한 줄

"매 product lifecycle 의 모든 data 가 single linked thread 로 흐르는 것.". Digital Thread 는 design (CAD) → engineering (PLM) → manufacturing (MES) → operations (IoT) → service (CRM) 까지 매 traceable, queryable 하게 연결하는 매 manufacturing/aerospace 의 backbone. 2026 의 standard: ISA-95 + OPC UA + Asset Administration Shell (AAS) + RAMI 4.0 + IDS data spaces.

매 핵심

매 Digital Thread vs Digital Twin

  • Thread: 매 data lineage — design intent ↔ as-built ↔ as-maintained.
  • Twin: 매 simulation model of a specific asset.
  • 관계: Twin 은 Thread 의 cross-section snapshot.

매 Layer Stack

  1. Edge: PLC, sensor, OPC UA server.
  2. Connectivity: MQTT, OPC UA, MTConnect.
  3. Stream: Kafka / Pulsar — high-throughput.
  4. Storage: time-series (InfluxDB, TimescaleDB), data lake (Iceberg).
  5. Semantic: Asset Administration Shell, ontology (W3C SOSA/SSN).
  6. Application: PLM (Teamcenter, Windchill), MES, ERP.

매 응용

  1. Aerospace — 매 part traceability, certification.
  2. Automotive — 매 EV battery passport (EU 2027 mandate).
  3. Industrial maintenance — 매 predictive + service history.
  4. Pharma — 매 batch genealogy.
  5. EU Digital Product Passport — 매 sustainability.

💻 패턴

OPC UA client (Python)

from asyncua import Client
async def main():
    async with Client(url="opc.tcp://plant.local:4840") as c:
        node = c.get_node("ns=2;s=Line1.Press.Temp")
        async for v in node.subscribe_data_change(callback):
            pass

MQTT Sparkplug B (manufacturing-standard payload)

import paho.mqtt.client as mqtt
import sparkplug_b as sp
payload = sp.getDdataPayload()
sp.addMetric(payload, "Temp", None, sp.MetricDataType.Float, 72.5)
client.publish("spBv1.0/PlantA/DDATA/Edge1/Press1", payload.SerializeToString())

Asset Administration Shell submodel

{
  "idShort": "Nameplate",
  "submodelElements": [
    {"idShort":"ManufacturerName","value":"Acme"},
    {"idShort":"SerialNumber","value":"SN-A1B2"},
    {"idShort":"YearOfConstruction","value":"2026"}
  ]
}

Kafka pipeline edge → lake

from confluent_kafka import Producer
import pyarrow.parquet as pq
p = Producer({'bootstrap.servers':'kafka:9092','compression.type':'zstd'})
p.produce('plant.line1.temp', key=part_id, value=msg.SerializeToString())
# downstream Flink/Spark → Iceberg table

Digital Product Passport (EU 2027)

{
  "productId": "urn:gtin:01234567890128",
  "carbonFootprintKg": 12.4,
  "materials": [{"name":"Li","massGrams":1200}],
  "recycledContentPercent": 18,
  "linkedTwin": "urn:twin:battery:SN-A1B2"
}

매 결정 기준

상황 Approach
Field bus modernization OPC UA
IoT-style telemetry MQTT Sparkplug B
Cross-vendor semantics AAS / IDS
Stream backbone Kafka / Pulsar
Time-series store TimescaleDB / Influx
Lake Iceberg + Trino

기본값: 매 OPC UA + MQTT Sparkplug B → Kafka → Iceberg.

🔗 Graph

🤖 LLM 활용

언제: ontology mapping, anomaly summary, maintenance work-order draft. 언제 X: 매 safety-critical PLC logic — formal verification 만.

안티패턴

  • Polling 오버: 매 OPC UA subscribe 사용 — pub/sub.
  • Untimestamped data: 매 Thread 의 핵심은 시간 lineage.
  • Vendor lock: 매 proprietary protocol — open standards 사용.
  • No identity: 매 GS1, urn 등 stable id 필수.

🧪 검증 / 중복

  • Verified: ISA-95 spec; OPC UA Part 1; Plattform Industrie 4.0 AAS spec; EU DPP regulation 2024.
  • 신뢰도 A.

🕓 Changelog

날짜 변경
2026-05-08 Phase 1
2026-05-10 Manual cleanup — Thread vs Twin + OPC UA/MQTT/AAS