"매 물리 자산의 live mirror". 공장 / 빌딩 / 차량을 3D로 render + 실시간 sensor stream 으로 동기화. 2026 stack: React Three Fiber + WebSocket / WebTransport + WebGPU compute + Cesium (geo).
매 핵심
매 디지털 트윈이란
물리 system 의 software replica — sensor 로 state sync, simulation 으로 future predict.
functionSensorOverlay() {constsensors=useSensors(s=>s.sensors);return(<>{Object.entries(sensors).map(([id,sensor])=>(<meshkey={id}position={sensor.position}><sphereGeometryargs={[0.2,16,16]}/><meshStandardMaterialcolor={tempToColor(sensor.value)}emissive={tempToColor(sensor.value)}emissiveIntensity={0.5}/></mesh>))}</>);}functiontempToColor(t: number){// 매 cold blue → hot red
consth=(1-Math.min(t/100,1))*240;return`hsl(${h}, 100%, 50%)`;}
functiondetectAnomaly(values: number[]):boolean{constmean=values.reduce((a,b)=>a+b)/values.length;conststd=Math.sqrt(values.reduce((s,v)=>s+(v-mean)**2,0)/values.length);constlast=values[values.length-1];returnMath.abs(last-mean)>3*std;// 매 3-sigma
}
매 결정 기준
상황
Approach
Indoor (factory/building)
React Three Fiber + glTF.
Outdoor / geo-scale
Cesium / MapLibre 3D.
< 1k sensors
WebSocket + zustand.
100k+ data points
WebGPU compute + instanced mesh.
Forecasting
server-side (TimeGPT / Prophet) → push results.
Safety-critical
unidirectional viz only — control via separate verified channel.