Model.reviewreferencegeometry#

Model.reviewreferencegeometry(collection, name)#

Reviews reference geometry control volume.

Parameters:
  • collection (Collection) – The collection containing the node entities to review reference geometry, elected by the user.

  • name (hwString) – Name of the reference geometry.

Example#

Review reference geometry (called “airbag”) use nodes selected by user#
import hm
import hm.entities as ent

model = hm.Model()

model.reviewreferencegeometry(
    collection=hm.CollectionByInteractiveSelection(model, ent.Node), name="airbag"
)