Building Digital Twins for Real-Time Analytics and Simulation with Many Data Sources
scaleout
0 views
103 slides
Oct 05, 2025
Slide 1 of 103
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
About This Presentation
This workshop explores how to design and implement digital twins for real-time analytics and large-scale simulation. It covers the principles of using digital twins to monitor complex systems, aggregate data across thousands of sources, and predict emerging issues using in-memory computing. Particip...
This workshop explores how to design and implement digital twins for real-time analytics and large-scale simulation. It covers the principles of using digital twins to monitor complex systems, aggregate data across thousands of sources, and predict emerging issues using in-memory computing. Participants learn to build, test, and deploy models that integrate with live or simulated data streams for applications such as logistics, transportation, and security monitoring.
Size: 9.71 MB
Language: en
Added: Oct 05, 2025
Slides: 103 pages
Slide Content
Building Digital Twins for Real-Time Analytics and
Simulation with Many Data Sources
DTC Workshop
March 18, 2024
Dr. William Bain, Founder & CEO [email protected]
Oleg Shmytov, VP Engineering [email protected]
Challenge: Power
Grid Security &
Disaster Response
How track a geographically
distributed power grid with
thousands of nodes for
intrusion or disruption?
•Where are the threats?
•How significant are they?
•How are they moving?
•How should we react?
6
Challenge:
Logistics &
Telematics
How track the safe distribution
and delivery of millions of
time-critical items?
•Where is each item/vehicle
right now?
•How are delays or issues
(e.g. temperature) affecting
its safety?
•Which vehicles are most in
need of assistance?
•Is there an emerging
widescale problem that
needs a strategic response?
7
The Solution: Real-Time Digital Twins
A new in-memory technique
for streaming analytics:
•Separately analyzes telemetry
for each data source.
•Maintains dynamic state for
each data source.
Another Simulation Use Case
38
Build system simulations with interacting
digital twins exchanging messages for
predictive modeling and decision-making.
61
Key Takeaways
•Digital twins aren’t just for PLM.
•They offer a powerful software architecture for
real-time streaming analytics and simulation of
large systems.
•Numerous applications in diverse verticals can
benefit:
•Transportation
•Logistics
•Disaster Recovery
•Many more
•In-memory computing provides a key enabling
technology:
•Fast responses
•Transparent scaling
•Aggregate analytics
•Real-time visualization
Test the Model with the Workbench
Write and run a test program:
•Create a “real-time” workbench and add the model’s message processor:
using RealTimeWorkbench wb = new RealTimeWorkbench();
var endpoint = wb.AddRealTimeModel(“GasSensorTwin", new GasMsgProcessor());
•Send message(s) to the workbench:
var msg = new GasMessage
{
Ppm = 20,
Timestamp = DateTimeOffset.Now
};
endpoint.Send(“Sensor1", msg);