Model.CE_Realize#

Model.CE_Realize(collection)#

FE realize all the defined connectors on collection (creates FE).

Parameters:

collection (Collection) – The collection containing the connector entities that needs to be updated.

Example#

FE realize the connectors with IDs 1 and 2 on collection#
import hm
import hm.entities as ent

model = hm.Model()

connectors = hm.Collection(model, ent.Connector, [1, 2])

model.CE_Realize(collection=connectors)