#1029 Multiple Refs of same type on one entity?

Sean Patrick Mon 23 Jan 2023

Considering a water flow loop where there are multiple paths for water to take - for example, say there are two pumps whose outputs converge into a single mixing valve - what is the correct way to represent the convergence of these inputs?

Is it possible for an entity to have multiple Refs of the same type, e.g.:

id: @example, mixing, chilled, water, equip, chilledWaterRef: @pump1, chilledWaterRef: @pump2

or, is there another way of implementing a mixing entity?

Brian Frank Mon 23 Jan 2023

You can make the ref a list of ids in that case:

chilledWaterRef: [@pump1, @pump2]

See how that works with filters here

Login or Signup to reply.