What are your thoughts on this? At UMH, we are "thinking through" features before we implement them. We are now thinking about how to progress for data modeling, and we have identified two types of data modeling:
First: Device/Machine specific modeling.
Where you model it into a physical location or sensor, e.g., _pump_v1 or something like this. You could also say modeling from "Bronze" to "Silver". The current pattern is using a bridge for this.
And we ould improve our product here by allowing better integration fo this in the bridgecreation process, so that e.g., the conditions are precreated based on the model selected. So one selects a model, and then it autoamtically creates ffor you the "If tag_name == xxx, then data_contract=_pump_v1 and virtual_path="pump.pressure" and tagname="current".
This is usual time-series.
Second: Use-Case specific modeling
Where you then take "Silver" data, so device/machine specific data, from the UNS, and apply a use-case specific transformation on it to convert it to "orders" or "maintenance requests". We do this at the moment using stream processors.
We feel we are already strong for this on the time-series front, but need to develop somethign to convert time-series into relational.
This is usually relational data.
What are your thoughts on this?