Specific Examples

These queries show specific examples of some real-world possible queries, based on our Blast Furnace Demo located at http://demo.optrix.com.au/s/bf


Show All Valves

Get all Valves on Stove #1

'Stove #1' ASSET 'Location' RELATIONSHIP 'down' RELATED 'Valve' TYPE ISTYPE

Run Live


Show all of the properties on sensor TE101

Get a list of all of the open analogue valves

'Valve' TYPE ISTYPE ('Position') PROPERTY POINTS '50' GREATER

Run Live


Get a list of all of the open on/off valves

'Valve' TYPE ISTYPE THAT ARE('Open')

Run Live


Get the currently active stove

'Stove' TYPE ISTYPE THAT ARE('Active')

Run Live


Find out how many Staves are over 650 degrees

'Stave' TYPE ISTYPE 'Temperature - Stave' PROPERTY POINTS '650' GREATER COUNT

Run Live


Find the hottest stave(s)

'Stave' TYPE ISTYPE 'Temperature - Stave' PROPERTY POINTS MAXIMUM

Run Live


Get a heatmap of the stove temperatures over time

'TE101' ASSET 'Profile' RELATIONSHIP 'downi' RELATED 'Temperature - Stove' PROPERTY POINTS { “start”: “2020-01-01 00:00:00”, “end”: “2020-01-02 00:00:00” } GETHISTORY

Run Live


Get a heatmap of the stave temperatures horizontally and vertically

'TE501' ASSET 'Vertical Profile' RELATIONSHIP 'downi' RELATED [ 'Profile' RELATIONSHIP 'downi' RELATED ] EACH [ 'Temperature' PROPERTY POINTS ] FOR

Run Live