How to model association pattern using Things
I want to implement the below structure in Thingworx.
Device
- List<Axis> {A1, A2}
- List<Rotor> {R1, R2, R3}
Axis
- Position (Number)
- Temperature (Number)
Rotor
- Speed (Number)
There is an option to provide a ThingName as a property, however List is not supported.
Currently I have modeled the above structure using Infotables.
Device
- AxisPosition Infotable eg: {A1X - 26, A1Y - 67, A2X - 56, A2Y - 0}
- AxisTemperature Infotable eg: {A1 - 156, A2 - 167}
- RotorSpeed Infotable {R1 - 34, R2 - 45, R3 - 50}
Each infotable will have multiple rows of axis/rotor and position/temp/speed values. And the infotable properties are logged to a ValueStream.
However this structure cannot be mapped to a Time series chart, as the ValueStream timestamp is associated with the Device and the chart don't support infotable on any axis.
If List could have been supported, I could have retrieved all the axis/rotor Things of a particular device and then mapped individual properties to the time series chart
Can you please suggest how this structure can be alternatively modeled, so that it can be used in a TimeSeriesChart.

