hm.entities Module#

The hm.entities module provides access to all HyperMesh entity classes.

Most of the entity attributes follow the same naming convention as the data names used by the template files and Tcl commands. The full list of data names can be found in the Data Names help topic.

Accelerometer Class#

class Accelerometer(amodel: Model, *args, **kwargs)#

Class representing Accelerometer entity type.

Parameters:
  • amodel (Model) – HyperMesh model object.

  • args (dict) – User can specify internal entity ID to create a Python object for an existing entity.

  • kwargs (dict) – Optional name-value pair arguments defining attributes of a new entity.

The same applies to all hm.entities module classes except Part class.

Examples#

Create a new Accelerometer entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Accelerometer(model)
Get an existing Accelerometer entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Accelerometer(model, 1)

Airbag Class#

class Airbag(amodel: Model, *args, **kwargs)#

Class representing Airbag entity type.

Examples#

Create a new Airbag entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Airbag(model)
Get an existing Airbag entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Airbag(model, 1)

Airbagfold Class#

class Airbagfold(amodel: Model, *args, **kwargs)#

Class representing Airbagfold entity type.

Examples#

Create a new Airbagfold entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Airbagfold(model)
Get an existing Airbagfold entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Airbagfold(model, 1)

Airbagfoldingsequence Class#

class Airbagfoldingsequence(amodel: Model, *args, **kwargs)#

Class representing Airbagfoldingsequence entity type.

Examples#

Create a new Airbagfoldingsequence entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Airbagfoldingsequence(model)
Get an existing Airbagfoldingsequence entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Airbagfoldingsequence(model, 1)

Alefsiprojection Class#

class Alefsiprojection(amodel: Model, *args, **kwargs)#

Class representing Alefsiprojection entity type.

Examples#

Create a new Alefsiprojection entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Alefsiprojection(model)
Get an existing Alefsiprojection entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Alefsiprojection(model, 1)

Alereferencesystemcurve Class#

class Alereferencesystemcurve(amodel: Model, *args, **kwargs)#

Class representing Alereferencesystemcurve entity type.

Examples#

Create a new Alereferencesystemcurve entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Alereferencesystemcurve(model)
Get an existing Alereferencesystemcurve entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Alereferencesystemcurve(model, 1)

Alereferencesystemgroup Class#

class Alereferencesystemgroup(amodel: Model, *args, **kwargs)#

Class representing Alereferencesystemgroup entity type.

Examples#

Create a new Alereferencesystemgroup entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Alereferencesystemgroup(model)
Get an existing Alereferencesystemgroup entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Alereferencesystemgroup(model, 1)

Alereferencesystemnode Class#

class Alereferencesystemnode(amodel: Model, *args, **kwargs)#

Class representing Alereferencesystemnode entity type.

Examples#

Create a new Alereferencesystemnode entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Alereferencesystemnode(model)
Get an existing Alereferencesystemnode entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Alereferencesystemnode(model, 1)

Alereferencesystemswitch Class#

class Alereferencesystemswitch(amodel: Model, *args, **kwargs)#

Class representing Alereferencesystemswitch entity type.

Examples#

Create a new Alereferencesystemswitch entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Alereferencesystemswitch(model)
Get an existing Alereferencesystemswitch entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Alereferencesystemswitch(model, 1)

Ale Class#

class Ale(amodel: Model, *args, **kwargs)#

Class representing Ale entity type.

Examples#

Create a new Ale entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Ale(model)
Get an existing Ale entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Ale(model, 1)

Alesmoothing Class#

class Alesmoothing(amodel: Model, *args, **kwargs)#

Class representing Alesmoothing entity type.

Examples#

Create a new Alesmoothing entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Alesmoothing(model)
Get an existing Alesmoothing entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Alesmoothing(model, 1)

Aletanktest Class#

class Aletanktest(amodel: Model, *args, **kwargs)#

Class representing Aletanktest entity type.

Examples#

Create a new Aletanktest entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Aletanktest(model)
Get an existing Aletanktest entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Aletanktest(model, 1)

Analysis Class#

class Analysis(amodel: Model, *args, **kwargs)#

Class representing Analysis entity type.

Examples#

Create a new Analysis entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Analysis(model)
Get an existing Analysis entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Analysis(model, 1)

Analysisparameter Class#

class Analysisparameter(amodel: Model, *args, **kwargs)#

Class representing Analysisparameter entity type.

Examples#

Create a new Analysisparameter entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Analysisparameter(model)
Get an existing Analysisparameter entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Analysisparameter(model, 1)

Assembly Class#

class Assembly(amodel: Model, *args, **kwargs)#

Class representing Assembly entity type.

Examples#

Create a new Assembly entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Assembly(model)
Get an existing Assembly entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Assembly(model, 1)

Attachment Class#

class Attachment(amodel: Model, *args, **kwargs)#

Class representing Attachment entity type.

Examples#

Create a new Attachment entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Attachment(model)
Get an existing Attachment entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Attachment(model, 1)

Attachmentcontrol Class#

class Attachmentcontrol(amodel: Model, *args, **kwargs)#

Class representing Attachmentcontrol entity type.

Examples#

Create a new Attachmentcontrol entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Attachmentcontrol(model)
Get an existing Attachmentcontrol entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Attachmentcontrol(model, 1)

Attachmentcontroldefault Class#

class Attachmentcontroldefault(amodel: Model, *args, **kwargs)#

Class representing Attachmentcontroldefault entity type.

Examples#

Create a new Attachmentcontroldefault entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Attachmentcontroldefault(model)
Get an existing Attachmentcontroldefault entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Attachmentcontroldefault(model, 1)

Axisymmetry Class#

class Axisymmetry(amodel: Model, *args, **kwargs)#

Class representing Axisymmetry entity type.

Examples#

Create a new Axisymmetry entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Axisymmetry(model)
Get an existing Axisymmetry entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Axisymmetry(model, 1)

Bag Class#

class Bag(amodel: Model, *args, **kwargs)#

Class representing Bag entity type.

Examples#

Create a new Bag entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Bag(model)
Get an existing Bag entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Bag(model, 1)

Beamsectcol Class#

class Beamsectcol(amodel: Model, *args, **kwargs)#

Class representing Beamsectcol entity type.

Examples#

Create a new Beamsectcol entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Beamsectcol(model)
Get an existing Beamsectcol entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Beamsectcol(model, 1)

Beamsection Class#

class Beamsection(amodel: Model, *args, **kwargs)#

Class representing Beamsection entity type.

Examples#

Create a new Beamsection entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Beamsection(model)
Get an existing Beamsection entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Beamsection(model, 1)

Behavior Class#

class Behavior(amodel: Model, *args, **kwargs)#

Class representing Behavior entity type.

Examples#

Create a new Behavior entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Behavior(model)
Get an existing Behavior entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Behavior(model, 1)

Block Class#

class Block(amodel: Model, *args, **kwargs)#

Class representing Block entity type.

Examples#

Create a new Block entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Block(model)
Get an existing Block entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Block(model, 1)

Body Class#

class Body(amodel: Model, *args, **kwargs)#

Class representing Body entity type.

Examples#

Create a new Body entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Body(model)
Get an existing Body entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Body(model, 1)

Box Class#

class Box(amodel: Model, *args, **kwargs)#

Class representing Box entity type.

Examples#

Create a new Box entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Box(model)
Get an existing Box entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Box(model, 1)

Card Class#

class Card(amodel: Model, *args, **kwargs)#

Class representing Card entity type.

Note

Card class constructor requires mandatory argument name.

Examples#

Create a new Optistruct solver card “PARAM”#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Card(model, name="PARAM")
Get an existing Card entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Card(model, 1)

Chart Class#

class Chart(amodel: Model, *args, **kwargs)#

Class representing Chart entity type.

Examples#

Create a new Chart entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Chart(model)
Get an existing Chart entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Chart(model, 1)

Clearance Class#

class Clearance(amodel: Model, *args, **kwargs)#

Class representing Clearance entity type.

Examples#

Create a new Clearance entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Clearance(model)
Get an existing Clearance entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Clearance(model, 1)

Collection Class#

class Collection(amodel: Model, *args, **kwargs)#

Class representing Collection entity type.

Examples#

Create a new Collection entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Collection(model)
Get an existing Collection entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Collection(model, 1)

Collision Class#

class Collision(amodel: Model, *args, **kwargs)#

Class representing Collision entity type.

Note

Collision entity is not supported for creation using class constructor.

Example#

Get an existing Collision entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Collision(model, 1)

Comment Class#

class Comment(amodel: Model, *args, **kwargs)#

Class representing Comment entity type.

Examples#

Create a new Comment entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Comment(model)
Get an existing Comment entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Comment(model, 1)

Component Class#

class Component(amodel: Model, *args, **kwargs)#

Class representing Component entity type.

Examples#

Create a new Component entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Component(model)
Get an existing Component entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Component(model, 1)

Configuration Class#

class Configuration(amodel: Model, *args, **kwargs)#

Class representing Configuration entity type.

Examples#

Create a new Configuration entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Configuration(model)
Get an existing Configuration entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Configuration(model, 1)

Connector Class#

class Connector(amodel: Model, *args, **kwargs)#

Class representing Connector entity type.

Note

Connector entity is not supported for creation using class constructor.

Example#

Get an existing Connector entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Connector(model, 1)

Connectorcontrol Class#

class Connectorcontrol(amodel: Model, *args, **kwargs)#

Class representing Connectorcontrol entity type.

Examples#

Create a new Connectorcontrol entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Connectorcontrol(model)
Get an existing Connectorcontrol entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Connectorcontrol(model, 1)

Connectorcontroldefault Class#

class Connectorcontroldefault(amodel: Model, *args, **kwargs)#

Class representing Connectorcontroldefault entity type.

Examples#

Create a new Connectorcontroldefault entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Connectorcontroldefault(model)
Get an existing Connectorcontroldefault entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Connectorcontroldefault(model, 1)

Connectorset Class#

class Connectorset(amodel: Model, *args, **kwargs)#

Class representing Connectorset entity type.

Examples#

Create a new Connectorset entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Connectorset(model)
Get an existing Connectorset entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Connectorset(model, 1)

Constrainedextranode Class#

class Constrainedextranode(amodel: Model, *args, **kwargs)#

Class representing Constrainedextranode entity type.

Examples#

Create a new Constrainedextranode entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Constrainedextranode(model)
Get an existing Constrainedextranode entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Constrainedextranode(model, 1)

Constrainedrigidbody Class#

class Constrainedrigidbody(amodel: Model, *args, **kwargs)#

Class representing Constrainedrigidbody entity type.

Examples#

Create a new Constrainedrigidbody entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Constrainedrigidbody(model)
Get an existing Constrainedrigidbody entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Constrainedrigidbody(model, 1)

Constraint Class#

class Constraint(amodel: Model, *args, **kwargs)#

Class representing Constraint entity type.

Examples#

Create a new Constraint entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Constraint(model)
Get an existing Constraint entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Constraint(model, 1)

Contactbehavior Class#

class Contactbehavior(amodel: Model, *args, **kwargs)#

Class representing Contactbehavior entity type.

Examples#

Create a new Contactbehavior entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Contactbehavior(model)
Get an existing Contactbehavior entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Contactbehavior(model, 1)

Contactgroup Class#

class Contactgroup(amodel: Model, *args, **kwargs)#

Class representing Contactgroup entity type.

Examples#

Create a new Contactgroup entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Contactgroup(model)
Get an existing Contactgroup entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Contactgroup(model, 1)

Contactsurf Class#

class Contactsurf(amodel: Model, *args, **kwargs)#

Class representing Contactsurf entity type.

Examples#

Create a new Contactsurf entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Contactsurf(model)
Get an existing Contactsurf entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Contactsurf(model, 1)

Controlvol Class#

class Controlvol(amodel: Model, *args, **kwargs)#

Class representing Controlvol entity type.

Examples#

Create a new Controlvol entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Controlvol(model)
Get an existing Controlvol entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Controlvol(model, 1)

Crosssection Class#

class Crosssection(amodel: Model, *args, **kwargs)#

Class representing Crosssection entity type.

Examples#

Create a new Crosssection entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Crosssection(model)
Get an existing Crosssection entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Crosssection(model, 1)

Curve Class#

class Curve(amodel: Model, *args, **kwargs)#

Class representing Curve entity type.

Examples#

Create a new Curve entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Curve(model)
Get an existing Curve entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Curve(model, 1)

Damping Class#

class Damping(amodel: Model, *args, **kwargs)#

Class representing Damping entity type.

Examples#

Create a new Damping entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Damping(model)
Get an existing Damping entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Damping(model, 1)

Ddval Class#

class Ddval(amodel: Model, *args, **kwargs)#

Class representing Ddval entity type.

Examples#

Create a new Ddval entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Ddval(model)
Get an existing Ddval entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Ddval(model, 1)

Dequation Class#

class Dequation(amodel: Model, *args, **kwargs)#

Class representing Dequation entity type.

Examples#

Create a new Dequation entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Dequation(model)
Get an existing Dequation entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Dequation(model, 1)

DesignpointImpactPoint Class#

class DesignpointImpactPoint(amodel: Model, *args, **kwargs)#

Class representing DesignpointImpactPoint entity type.

Examples#

Create a new DesignpointImpactPoint entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.DesignpointImpactPoint(model)
Get an existing DesignpointImpactPoint entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.DesignpointImpactPoint(model, 1)

DesignpointTargetPoint Class#

class DesignpointTargetPoint(amodel: Model, *args, **kwargs)#

Class representing DesignpointTargetPoint entity type.

Examples#

Create a new DesignpointTargetPoint entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.DesignpointTargetPoint(model)
Get an existing DesignpointTargetPoint entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.DesignpointTargetPoint(model, 1)

DesignpointUndefined Class#

class DesignpointUndefined(amodel: Model, *args, **kwargs)#

Class representing DesignpointUndefined entity type.

Examples#

Create a new DesignpointUndefined entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.DesignpointUndefined(model)
Get an existing DesignpointUndefined entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.DesignpointUndefined(model, 1)

DesignpointmethodESAComp Class#

class DesignpointmethodESAComp(amodel: Model, *args, **kwargs)#

Class representing DesignpointmethodESAComp entity type.

Examples#

Create a new DesignpointmethodESAComp entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.DesignpointmethodESAComp(model)
Get an existing DesignpointmethodESAComp entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.DesignpointmethodESAComp(model, 1)

DesignpointmethodUndefined Class#

class DesignpointmethodUndefined(amodel: Model, *args, **kwargs)#

Class representing DesignpointmethodUndefined entity type.

Examples#

Create a new DesignpointmethodUndefined entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.DesignpointmethodUndefined(model)
Get an existing DesignpointmethodUndefined entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.DesignpointmethodUndefined(model, 1)

DesignpointsetBeam Class#

class DesignpointsetBeam(amodel: Model, *args, **kwargs)#

Class representing DesignpointsetBeam entity type.

Examples#

Create a new DesignpointsetBeam entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.DesignpointsetBeam(model)
Get an existing DesignpointsetBeam entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.DesignpointsetBeam(model, 1)

DesignpointsetBeamJoint Class#

class DesignpointsetBeamJoint(amodel: Model, *args, **kwargs)#

Class representing DesignpointsetBeamJoint entity type.

Examples#

Create a new DesignpointsetBeamJoint entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.DesignpointsetBeamJoint(model)
Get an existing DesignpointsetBeamJoint entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.DesignpointsetBeamJoint(model, 1)

DesignpointsetBeamMember Class#

class DesignpointsetBeamMember(amodel: Model, *args, **kwargs)#

Class representing DesignpointsetBeamMember entity type.

Examples#

Create a new DesignpointsetBeamMember entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.DesignpointsetBeamMember(model)
Get an existing DesignpointsetBeamMember entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.DesignpointsetBeamMember(model, 1)

DesignpointsetBeamShell Class#

class DesignpointsetBeamShell(amodel: Model, *args, **kwargs)#

Class representing DesignpointsetBeamShell entity type.

Examples#

Create a new DesignpointsetBeamShell entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.DesignpointsetBeamShell(model)
Get an existing DesignpointsetBeamShell entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.DesignpointsetBeamShell(model, 1)

DesignpointsetBeamShellMember Class#

class DesignpointsetBeamShellMember(amodel: Model, *args, **kwargs)#

Class representing DesignpointsetBeamShellMember entity type.

Examples#

Create a new DesignpointsetBeamShellMember entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.DesignpointsetBeamShellMember(model)
Get an existing DesignpointsetBeamShellMember entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.DesignpointsetBeamShellMember(model, 1)

DesignpointsetBeamShellSingle Class#

class DesignpointsetBeamShellSingle(amodel: Model, *args, **kwargs)#

Class representing DesignpointsetBeamShellSingle entity type.

Examples#

Create a new DesignpointsetBeamShellSingle entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.DesignpointsetBeamShellSingle(model)
Get an existing DesignpointsetBeamShellSingle entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.DesignpointsetBeamShellSingle(model, 1)

DesignpointsetDummy Class#

class DesignpointsetDummy(amodel: Model, *args, **kwargs)#

Class representing DesignpointsetDummy entity type.

Examples#

Create a new DesignpointsetDummy entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.DesignpointsetDummy(model)
Get an existing DesignpointsetDummy entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.DesignpointsetDummy(model, 1)

DesignpointsetGeneric Class#

class DesignpointsetGeneric(amodel: Model, *args, **kwargs)#

Class representing DesignpointsetGeneric entity type.

Examples#

Create a new DesignpointsetGeneric entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.DesignpointsetGeneric(model)
Get an existing DesignpointsetGeneric entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.DesignpointsetGeneric(model, 1)

DesignpointsetInstrumentPanelImpactPoint Class#

class DesignpointsetInstrumentPanelImpactPoint(amodel: Model, *args, **kwargs)#

Class representing DesignpointsetInstrumentPanelImpactPoint entity type.

Examples#

Create a new DesignpointsetInstrumentPanelImpactPoint entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.DesignpointsetInstrumentPanelImpactPoint(model)
Get an existing DesignpointsetInstrumentPanelImpactPoint entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.DesignpointsetInstrumentPanelImpactPoint(model, 1)

DesignpointsetPanelComposite Class#

class DesignpointsetPanelComposite(amodel: Model, *args, **kwargs)#

Class representing DesignpointsetPanelComposite entity type.

Examples#

Create a new DesignpointsetPanelComposite entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.DesignpointsetPanelComposite(model)
Get an existing DesignpointsetPanelComposite entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.DesignpointsetPanelComposite(model, 1)

DesignpointsetPanelMetallic Class#

class DesignpointsetPanelMetallic(amodel: Model, *args, **kwargs)#

Class representing DesignpointsetPanelMetallic entity type.

Examples#

Create a new DesignpointsetPanelMetallic entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.DesignpointsetPanelMetallic(model)
Get an existing DesignpointsetPanelMetallic entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.DesignpointsetPanelMetallic(model, 1)

DesignpointsetPanelStiffened Class#

class DesignpointsetPanelStiffened(amodel: Model, *args, **kwargs)#

Class representing DesignpointsetPanelStiffened entity type.

Examples#

Create a new DesignpointsetPanelStiffened entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.DesignpointsetPanelStiffened(model)
Get an existing DesignpointsetPanelStiffened entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.DesignpointsetPanelStiffened(model, 1)

DesignpointsetPedestrian Class#

class DesignpointsetPedestrian(amodel: Model, *args, **kwargs)#

Class representing DesignpointsetPedestrian entity type.

Examples#

Create a new DesignpointsetPedestrian entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.DesignpointsetPedestrian(model)
Get an existing DesignpointsetPedestrian entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.DesignpointsetPedestrian(model, 1)

DesignpointsetRivets Class#

class DesignpointsetRivets(amodel: Model, *args, **kwargs)#

Class representing DesignpointsetRivets entity type.

Examples#

Create a new DesignpointsetRivets entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.DesignpointsetRivets(model)
Get an existing DesignpointsetRivets entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.DesignpointsetRivets(model, 1)

DesignpointsetSprings Class#

class DesignpointsetSprings(amodel: Model, *args, **kwargs)#

Class representing DesignpointsetSprings entity type.

Examples#

Create a new DesignpointsetSprings entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.DesignpointsetSprings(model)
Get an existing DesignpointsetSprings entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.DesignpointsetSprings(model, 1)

Designvar Class#

class Designvar(amodel: Model, *args, **kwargs)#

Class representing Designvar entity type.

Examples#

Create a new Designvar entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Designvar(model)
Get an existing Designvar entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Designvar(model, 1)

Directmatrixinput Class#

class Directmatrixinput(amodel: Model, *args, **kwargs)#

Class representing Directmatrixinput entity type.

Examples#

Create a new Directmatrixinput entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Directmatrixinput(model)
Get an existing Directmatrixinput entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Directmatrixinput(model, 1)

Dobjref Class#

class Dobjref(amodel: Model, *args, **kwargs)#

Class representing Dobjref entity type.

Examples#

Create a new Dobjref entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Dobjref(model)
Get an existing Dobjref entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Dobjref(model, 1)

Domain Class#

class Domain(amodel: Model, *args, **kwargs)#

Class representing Domain entity type.

Note

Domain entity is not supported for creation using class constructor.

Example#

Get an existing Domain entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Domain(model, 1)

Dvprel Class#

class Dvprel(amodel: Model, *args, **kwargs)#

Class representing Dvprel entity type.

Examples#

Create a new Dvprel entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Dvprel(model)
Get an existing Dvprel entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Dvprel(model, 1)

Element Class#

class Element(amodel: Model, *args, **kwargs)#

Class representing Element entity type.

Note

Element class constructor requires mandatory argument config.

Examples#

Create a new quad (config 104) Element entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Element(model, config=104)
Get an existing Element entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Element(model, 1)

Elementbehavior Class#

class Elementbehavior(amodel: Model, *args, **kwargs)#

Class representing Elementbehavior entity type.

Examples#

Create a new Elementbehavior entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Elementbehavior(model)
Get an existing Elementbehavior entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Elementbehavior(model, 1)

Elementcluster Class#

class Elementcluster(amodel: Model, *args, **kwargs)#

Class representing Elementcluster entity type.

Examples#

Create a new Elementcluster entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Elementcluster(model)
Get an existing Elementcluster entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Elementcluster(model, 1)

Encryption Class#

class Encryption(amodel: Model, *args, **kwargs)#

Class representing Encryption entity type.

Examples#

Create a new Encryption entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Encryption(model)
Get an existing Encryption entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Encryption(model, 1)

Enginefile Class#

class Enginefile(amodel: Model, *args, **kwargs)#

Class representing Enginefile entity type.

Examples#

Create a new Enginefile entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Enginefile(model)
Get an existing Enginefile entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Enginefile(model, 1)

Equation Class#

class Equation(amodel: Model, *args, **kwargs)#

Class representing Equation entity type.

Note

Equation entity is not supported for creation using class constructor.

Example#

Get an existing Equation entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Equation(model, 1)

Exploration Class#

class Exploration(amodel: Model, *args, **kwargs)#

Class representing Exploration entity type.

Examples#

Create a new Exploration entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Exploration(model)
Get an existing Exploration entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Exploration(model, 1)

Failure Class#

class Failure(amodel: Model, *args, **kwargs)#

Class representing Failure entity type.

Examples#

Create a new Failure entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Failure(model)
Get an existing Failure entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Failure(model, 1)

Feature Class#

class Feature(amodel: Model, *args, **kwargs)#

Class representing Feature entity type.

Note

Feature class constructor requires mandatory argument config.

Examples#

Create a new Holes2D (config 4) Feature entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Element(model, config=4)
Get an existing Feature entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Feature(model, 1)

Field Class#

class Field(amodel: Model, *args, **kwargs)#

Class representing Field entity type.

Examples#

Create a new Field entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Field(model)
Get an existing Field entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Field(model, 1)

Freebodygroup Class#

class Freebodygroup(amodel: Model, *args, **kwargs)#

Class representing Freebodygroup entity type.

Examples#

Create a new Freebodygroup entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Freebodygroup(model)
Get an existing Freebodygroup entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Freebodygroup(model, 1)

Freebodysection Class#

class Freebodysection(amodel: Model, *args, **kwargs)#

Class representing Freebodysection entity type.

Examples#

Create a new Freebodysection entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Freebodysection(model)
Get an existing Freebodysection entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Freebodysection(model, 1)

Frequency Class#

class Frequency(amodel: Model, *args, **kwargs)#

Class representing Frequency entity type.

Examples#

Create a new Frequency entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Frequency(model)
Get an existing Frequency entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Frequency(model, 1)

Frequencyset Class#

class Frequencyset(amodel: Model, *args, **kwargs)#

Class representing Frequencyset entity type.

Examples#

Create a new Frequencyset entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Frequencyset(model)
Get an existing Frequencyset entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Frequencyset(model, 1)

Friction Class#

class Friction(amodel: Model, *args, **kwargs)#

Class representing Friction entity type.

Examples#

Create a new Friction entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Friction(model)
Get an existing Friction entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Friction(model, 1)

Geometricrepresentation Class#

class Geometricrepresentation(amodel: Model, *args, **kwargs)#

Class representing Geometricrepresentation entity type.

Examples#

Create a new Geometricrepresentation entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Geometricrepresentation(model)
Get an existing Geometricrepresentation entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Geometricrepresentation(model, 1)

Group Class#

class Group(amodel: Model, *args, **kwargs)#

Class representing Group entity type.

Examples#

Create a new Group entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Group(model)
Get an existing Group entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Group(model, 1)

Handle Class#

class Handle(amodel: Model, *args, **kwargs)#

Class representing Handle entity type.

Note

Handle entity is not supported for creation using class constructor.

Example#

Get an existing Handle entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Handle(model, 1)

Hourglass Class#

class Hourglass(amodel: Model, *args, **kwargs)#

Class representing Hourglass entity type.

Examples#

Create a new Hourglass entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Hourglass(model)
Get an existing Hourglass entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Hourglass(model, 1)

Initialstate Class#

class Initialstate(amodel: Model, *args, **kwargs)#

Class representing Initialstate entity type.

Examples#

Create a new Initialstate entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Initialstate(model)
Get an existing Initialstate entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Initialstate(model, 1)

Integrationrule Class#

class Integrationrule(amodel: Model, *args, **kwargs)#

Class representing Integrationrule entity type.

Examples#

Create a new Integrationrule entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Integrationrule(model)
Get an existing Integrationrule entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Integrationrule(model, 1)

Interfacecomponent Class#

class Interfacecomponent(amodel: Model, *args, **kwargs)#

Class representing Interfacecomponent entity type.

Examples#

Create a new Interfacecomponent entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Interfacecomponent(model)
Get an existing Interfacecomponent entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Interfacecomponent(model, 1)

Interfacelinking Class#

class Interfacelinking(amodel: Model, *args, **kwargs)#

Class representing Interfacelinking entity type.

Examples#

Create a new Interfacelinking entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Interfacelinking(model)
Get an existing Interfacelinking entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Interfacelinking(model, 1)

Joint Class#

class Joint(amodel: Model, *args, **kwargs)#

Class representing Joint entity type.

Examples#

Create a new Joint entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Joint(model)
Get an existing Joint entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Joint(model, 1)

Laminate Class#

class Laminate(amodel: Model, *args, **kwargs)#

Class representing Laminate entity type.

Examples#

Create a new Laminate entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Laminate(model)
Get an existing Laminate entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Laminate(model, 1)

Legend Class#

class Legend(amodel: Model, *args, **kwargs)#

Class representing Legend entity type.

Examples#

Create a new Legend entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Legend(model)
Get an existing Legend entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Legend(model, 1)

Line Class#

class Line(amodel: Model, *args, **kwargs)#

Class representing Line entity type.

Note

Line entity is not supported for creation using class constructor.

Example#

Get an existing Line entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Line(model, 1)

List Class#

class List(amodel: Model, *args, **kwargs)#

Class representing List entity type.

Examples#

Create a new List entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.List(model)
Get an existing List entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.List(model, 1)

LoadAcceleration Class#

class LoadAcceleration(amodel: Model, *args, **kwargs)#

Class representing LoadAcceleration entity type.

Examples#

Create a new LoadAcceleration entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.LoadAcceleration(model)
Get the existing LoadAcceleration entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.LoadAcceleration(model, 1)

LoadConstraint Class#

class LoadConstraint(amodel: Model, *args, **kwargs)#

Class representing LoadConstraint entity type.

Examples#

Create a new LoadConstraint entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.LoadConstraint(model)
Get the existing LoadConstraint entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.LoadConstraint(model, 1)

LoadFlux Class#

class LoadFlux(amodel: Model, *args, **kwargs)#

Class representing LoadFlux entity type.

Examples#

Create a new LoadFlux entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.LoadFlux(model)
Get the existing LoadFlux entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.LoadFlux(model, 1)

LoadForce Class#

class LoadForce(amodel: Model, *args, **kwargs)#

Class representing LoadForce entity type.

Examples#

Create a new LoadForce entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.LoadForce(model)
Get the existing LoadForce entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.LoadForce(model, 1)

LoadMoment Class#

class LoadMoment(amodel: Model, *args, **kwargs)#

Class representing LoadMoment entity type.

Examples#

Create a new LoadMoment entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.LoadMoment(model)
Get the existing LoadMoment entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.LoadMoment(model, 1)

LoadPressure Class#

class LoadPressure(amodel: Model, *args, **kwargs)#

Class representing LoadPressure entity type.

Examples#

Create a new LoadPressure entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.LoadPressure(model)
Get the existing LoadPressure entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.LoadPressure(model, 1)

LoadTemperature Class#

class LoadTemperature(amodel: Model, *args, **kwargs)#

Class representing LoadTemperature entity type.

Examples#

Create a new LoadTemperature entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.LoadTemperature(model)
Get the existing LoadTemperature entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.LoadTemperature(model, 1)

LoadVelocity Class#

class LoadVelocity(amodel: Model, *args, **kwargs)#

Class representing LoadVelocity entity type.

Examples#

Create a new LoadVelocity entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.LoadVelocity(model)
Get the existing LoadVelocity entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.LoadVelocity(model, 1)

Loadcol Class#

class Loadcol(amodel: Model, *args, **kwargs)#

Class representing Loadcol entity type.

Examples#

Create a new Loadcol entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Loadcol(model)
Get the existing Loadcol entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Loadcol(model, 1)

Loadstep Class#

class Loadstep(amodel: Model, *args, **kwargs)#

Class representing Loadstep entity type.

Examples#

Create a new Loadstep entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Loadstep(model)
Get the existing Loadstep entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Loadstep(model, 1)

Material Class#

class Material(amodel: Model, *args, **kwargs)#

Class representing Material entity type.

Examples#

Create a new Material entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Material(model)
Get an existing Material entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Material(model, 1)

Materialbehavior Class#

class Materialbehavior(amodel: Model, *args, **kwargs)#

Class representing Materialbehavior entity type.

Examples#

Create a new Materialbehavior entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Materialbehavior(model)
Get an existing Materialbehavior entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Materialbehavior(model, 1)

Mechanism Class#

class Mechanism(amodel: Model, *args, **kwargs)#

Class representing Mechanism entity type.

Examples#

Create a new Mechanism entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Mechanism(model)
Get an existing Mechanism entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Mechanism(model, 1)

Mechanismconstraint Class#

class Mechanismconstraint(amodel: Model, *args, **kwargs)#

Class representing Mechanismconstraint entity type.

Examples#

Create a new Mechanismconstraint entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Mechanismconstraint(model)
Get an existing Mechanismconstraint entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Mechanismconstraint(model, 1)

Member Class#

class Member(amodel: Model, *args, **kwargs)#

Class representing Member entity type.

Examples#

Create a new Member entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Member(model)
Get an existing Member entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Member(model, 1)

Memberjoint Class#

class Memberjoint(amodel: Model, *args, **kwargs)#

Class representing Memberjoint entity type.

Examples#

Create a new Memberjoint entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Memberjoint(model)
Get an existing Memberjoint entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Memberjoint(model, 1)

Memberpanel Class#

class Memberpanel(amodel: Model, *args, **kwargs)#

Class representing Memberpanel entity type.

Examples#

Create a new Memberpanel entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Memberpanel(model)
Get an existing Memberpanel entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Memberpanel(model, 1)

Membersection Class#

class Membersection(amodel: Model, *args, **kwargs)#

Class representing Membersection entity type.

Examples#

Create a new Membersection entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Membersection(model)
Get an existing Membersection entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Membersection(model, 1)

Membersegment Class#

class Membersegment(amodel: Model, *args, **kwargs)#

Class representing Membersegment entity type.

Examples#

Create a new Membersegment entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Membersegment(model)
Get an existing Membersegment entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Membersegment(model, 1)

Meshcontrol Class#

class Meshcontrol(amodel: Model, *args, **kwargs)#

Class representing Meshcontrol entity type.

Examples#

Create a new Meshcontrol entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Meshcontrol(model)
Get an existing Meshcontrol entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Meshcontrol(model, 1)

Modelcheckcheck Class#

class Modelcheckcheck(amodel: Model, *args, **kwargs)#

Class representing Modelcheckcheck entity type.

Examples#

Create a new Modelcheckcheck entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Modelcheckcheck(model)
Get an existing Modelcheckcheck entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Modelcheckcheck(model, 1)

Modelcheckcorrection Class#

class Modelcheckcorrection(amodel: Model, *args, **kwargs)#

Class representing Modelcheckcorrection entity type.

Examples#

Create a new Modelcheckcorrection entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Modelcheckcorrection(model)
Get an existing Modelcheckcorrection entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Modelcheckcorrection(model, 1)

Morphconstraint Class#

class Morphconstraint(amodel: Model, *args, **kwargs)#

Class representing Morphconstraint entity type.

Note

Morphconstraint entity is not supported for creation using class constructor.

Example#

Get an existing Morphconstraint entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Morphconstraint(model, 1)

Morphvolume Class#

class Morphvolume(amodel: Model, *args, **kwargs)#

Class representing Morphvolume entity type.

Note

Morphvolume entity is not supported for creation using class constructor.

Example#

Get an existing Morphvolume entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Morphvolume(model, 1)

Nctlayer Class#

class Nctlayer(amodel: Model, *args, **kwargs)#

Class representing Nctlayer entity type.

Examples#

Create a new Nctlayer entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Nctlayer(model)
Get an existing Nctlayer entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Nctlayer(model, 1)

Node Class#

class Node(amodel: Model, *args, **kwargs)#

Class representing Node entity type.

Examples#

Create a new Node entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Node(model)
Get an existing Node entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Node(model, 1)

Noisecontroltreatment Class#

class Noisecontroltreatment(amodel: Model, *args, **kwargs)#

Class representing Noisecontroltreatment entity type.

Examples#

Create a new Noisecontroltreatment entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Noisecontroltreatment(model)
Get an existing Noisecontroltreatment entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Noisecontroltreatment(model, 1)

Objective Class#

class Objective(amodel: Model, *args, **kwargs)#

Class representing Objective entity type.

Examples#

Create a new Objective entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Objective(model)
Get an existing Objective entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Objective(model, 1)

Opticonstraint Class#

class Opticonstraint(amodel: Model, *args, **kwargs)#

Class representing Opticonstraint entity type.

Examples#

Create a new Opticonstraint entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Opticonstraint(model)
Get an existing Opticonstraint entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Opticonstraint(model, 1)

Opticontrol Class#

class Opticontrol(amodel: Model, *args, **kwargs)#

Class representing Opticontrol entity type.

Examples#

Create a new Opticontrol entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Opticontrol(model)
Get an existing Opticontrol entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Opticontrol(model, 1)

Optidscreen Class#

class Optidscreen(amodel: Model, *args, **kwargs)#

Class representing Optidscreen entity type.

Examples#

Create a new Optidscreen entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Optidscreen(model)
Get an existing Optidscreen entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Optidscreen(model, 1)

Optiresponse Class#

class Optiresponse(amodel: Model, *args, **kwargs)#

Class representing Optiresponse entity type.

Examples#

Create a new Optiresponse entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Optiresponse(model)
Get an existing Optiresponse entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Optiresponse(model, 1)

Outputblock Class#

class Outputblock(amodel: Model, *args, **kwargs)#

Class representing Outputblock entity type.

Examples#

Create a new Outputblock entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Outputblock(model)
Get an existing Outputblock entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Outputblock(model, 1)

Outputrequest Class#

class Outputrequest(amodel: Model, *args, **kwargs)#

Class representing Outputrequest entity type.

Examples#

Create a new Outputrequest entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Outputrequest(model)
Get an existing Outputrequest entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Outputrequest(model, 1)

Panel Class#

class Panel(amodel: Model, *args, **kwargs)#

Class representing Panel entity type.

Examples#

Create a new Panel entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Panel(model)
Get an existing Panel entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Panel(model, 1)

Parameter Class#

class Parameter(amodel: Model, *args, **kwargs)#

Class representing Parameter entity type.

Examples#

Create a new Parameter entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Parameter(model)
Get an existing Parameter entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Parameter(model, 1)

Part Class#

class Part(amodel: Model, *args, **kwargs)#

Class representing Part entity type.

Note

Part entity is not supported for creation using class constructor.

Example#

Get an existing Part entity with name “part_1”#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Part(model, "part_1")

Partset Class#

class Partset(amodel: Model, *args, **kwargs)#

Class representing Partset entity type.

Examples#

Create a new Partset entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Partset(model)
Get an existing Partset entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Partset(model, 1)

Perturbation Class#

class Perturbation(amodel: Model, *args, **kwargs)#

Class representing Perturbation entity type.

Examples#

Create a new Perturbation entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Perturbation(model)
Get an existing Perturbation entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Perturbation(model, 1)

Physicalquantity Class#

class Physicalquantity(amodel: Model, *args, **kwargs)#

Class representing Physicalquantity entity type.

Examples#

Create a new Physicalquantity entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Physicalquantity(model)
Get an existing Physicalquantity entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Physicalquantity(model, 1)

Plot Class#

class Plot(amodel: Model, *args, **kwargs)#

Class representing Plot entity type.

Examples#

Create a new Plot entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Plot(model)
Get an existing Plot entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Plot(model, 1)

PlotcontrolContour Class#

class PlotcontrolContour(amodel: Model, *args, **kwargs)#

Class representing PlotcontrolContour entity type.

Examples#

Create a new PlotcontrolContour entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.PlotcontrolContour(model)
Get an existing PlotcontrolContour entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.PlotcontrolContour(model, 1)

PlotcontrolDeformed Class#

class PlotcontrolDeformed(amodel: Model, *args, **kwargs)#

Class representing PlotcontrolDeformed entity type.

Examples#

Create a new PlotcontrolDeformed entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.PlotcontrolDeformed(model)
Get an existing PlotcontrolDeformed entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.PlotcontrolDeformed(model, 1)

PlotcontrolEnvelopeMetric Class#

class PlotcontrolEnvelopeMetric(amodel: Model, *args, **kwargs)#

Class representing PlotcontrolEnvelopeMetric entity type.

Examples#

Create a new PlotcontrolEnvelopeMetric entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.PlotcontrolEnvelopeMetric(model)
Get an existing PlotcontrolEnvelopeMetric entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.PlotcontrolEnvelopeMetric(model, 1)

PlotcontrolFBD Class#

class PlotcontrolFBD(amodel: Model, *args, **kwargs)#

Class representing PlotcontrolFBD entity type.

Examples#

Create a new PlotcontrolFBD entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.PlotcontrolFBD(model)
Get an existing PlotcontrolFBD entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.PlotcontrolFBD(model, 1)

PlotcontrolMarker Class#

class PlotcontrolMarker(amodel: Model, *args, **kwargs)#

Class representing PlotcontrolMarker entity type.

Examples#

Create a new PlotcontrolMarker entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.PlotcontrolMarker(model)
Get an existing PlotcontrolMarker entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.PlotcontrolMarker(model, 1)

PlotcontrolPagesInfo Class#

class PlotcontrolPagesInfo(amodel: Model, *args, **kwargs)#

Class representing PlotcontrolPagesInfo entity type.

Examples#

Create a new PlotcontrolPagesInfo entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.PlotcontrolPagesInfo(model)
Get an existing PlotcontrolPagesInfo entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.PlotcontrolPagesInfo(model, 1)

PlotcontrolTensor Class#

class PlotcontrolTensor(amodel: Model, *args, **kwargs)#

Class representing PlotcontrolTensor entity type.

Examples#

Create a new PlotcontrolTensor entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.PlotcontrolTensor(model)
Get an existing PlotcontrolTensor entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.PlotcontrolTensor(model, 1)

PlotcontrolVector Class#

class PlotcontrolVector(amodel: Model, *args, **kwargs)#

Class representing PlotcontrolVector entity type.

Examples#

Create a new PlotcontrolVector entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.PlotcontrolVector(model)
Get an existing PlotcontrolVector entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.PlotcontrolVector(model, 1)

Ply Class#

class Ply(amodel: Model, *args, **kwargs)#

Class representing Ply entity type.

Examples#

Create a new Ply entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Ply(model)
Get an existing Ply entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Ply(model, 1)

Point Class#

class Point(amodel: Model, *args, **kwargs)#

Class representing Point entity type.

Note

Point entity is not supported for creation using class constructor.

Example#

Get an existing Point entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Point(model, 1)

Polycage Class#

class Polycage(amodel: Model, *args, **kwargs)#

Class representing Polycage entity type.

Examples#

Create a new Polycage entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Polycage(model)
Get an existing Polycage entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Polycage(model, 1)

Position Class#

class Position(amodel: Model, *args, **kwargs)#

Class representing Position entity type.

Examples#

Create a new Position entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Position(model)
Get an existing Position entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Position(model, 1)

Pretensioner Class#

class Pretensioner(amodel: Model, *args, **kwargs)#

Class representing Pretensioner entity type.

Examples#

Create a new Pretensioner entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Pretensioner(model)
Get an existing Pretensioner entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Pretensioner(model, 1)

Property Class#

class Property(amodel: Model, *args, **kwargs)#

Class representing Property entity type.

Examples#

Create a new Property entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Property(model)
Get an existing Property entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Property(model, 1)

Referencegeometry Class#

class Referencegeometry(amodel: Model, *args, **kwargs)#

Class representing Referencegeometry entity type.

Examples#

Create a new Referencegeometry entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Referencegeometry(model)
Get an existing Referencegeometry entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Referencegeometry(model, 1)

Region Class#

class Region(amodel: Model, *args, **kwargs)#

Class representing Region entity type.

Examples#

Create a new Region entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Region(model)
Get an existing Region entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Region(model, 1)

Resource Class#

class Resource(amodel: Model, *args, **kwargs)#

Class representing Resource entity type.

Note

Resource entity is not supported for creation using class constructor.

Example#

Get an existing Resource entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Resource(model, 1)

Response Class#

class Response(amodel: Model, *args, **kwargs)#

Class representing Response entity type.

Examples#

Create a new Response entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Response(model)
Get an existing Response entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Response(model, 1)

Result Class#

class Result(amodel: Model, *args, **kwargs)#

Class representing Result entity type.

Examples#

Create a new Result entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Result(model)
Get an existing Result entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Result(model, 1)

Resultsimulation Class#

class Resultsimulation(amodel: Model, *args, **kwargs)#

Class representing Resultsimulation entity type.

Note

Resultsimulation entity is not supported for creation using class constructor.

Example#

Get an existing Resultsimulation entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Resultsimulation(model, 1)

Resultsubcase Class#

class Resultsubcase(amodel: Model, *args, **kwargs)#

Class representing Resultsubcase entity type.

Note

Resultsubcase entity is not supported for creation using class constructor.

Example#

Get an existing Resultsubcase entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Resultsubcase(model, 1)

ResultsubcaseEnvelope Class#

class ResultsubcaseEnvelope(amodel: Model, *args, **kwargs)#

Class representing ResultsubcaseEnvelope entity type.

Note

ResultsubcaseEnvelope class constructor requires mandatory argument envEqns.

Examples#

Create a new ResultsubcaseEnvelope entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.ResultsubcaseEnvelope(model, envEqns="Derived Load Case 1,VR,1,Max,EnvelopeMetricStress:XX_VR_1,Stress,XX,Z1,elemental,none,false,2:1:0:1.0,2:2:0:1.0,2:4:0:1.0")
Get an existing ResultsubcaseEnvelope entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.ResultsubcaseEnvelope(model, 1)

ResultsubcaseRSS Class#

class ResultsubcaseRSS(amodel: Model, *args, **kwargs)#

Class representing ResultsubcaseRSS entity type.

Note

ResultsubcaseRSS class constructor requires mandatory argument rssEqns.

Examples#

Create a new ResultsubcaseRSS entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.ResultsubcaseRSS(model, rssEqns="Derived Load Case 2,VR,2,global,2:1:0:1.0,2:2:0:1.0,2:4:0:1.0")
Get an existing ResultsubcaseRSS entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.ResultsubcaseRSS(model, 1)

ResultsubcaseSteps Class#

class ResultsubcaseSteps(amodel: Model, *args, **kwargs)#

Class representing ResultsubcaseSteps entity type.

Note

ResultsubcaseRSS class constructor requires mandatory argument stepsEqns.

Examples#

Create a new ResultsubcaseSteps entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.ResultsubcaseSteps(model, stepsEqns="Derived Load Case 3,VR,3,2:1:0:1.0,2:2:0:1.0,2:4:0:1.0")
Get an existing ResultsubcaseSteps entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.ResultsubcaseSteps(model, 1)

ResultsubcaseSuperposition Class#

class ResultsubcaseSuperposition(amodel: Model, *args, **kwargs)#

Class representing ResultsubcaseSuperposition entity type.

Note

ResultsubcaseRSS class constructor requires mandatory argument lspEqns.

Examples#

Create a new ResultsubcaseSuperposition entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object= ent.ResultsubcaseSuperposition(model, lspEqns="Derived Load Case 4,VR,4,2:1:0:1.0,2:2:0:1.0,2:4:0:1.0")
Get an existing ResultsubcaseSuperposition entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.ResultsubcaseSuperposition(model, 1)

Retractor Class#

class Retractor(amodel: Model, *args, **kwargs)#

Class representing Retractor entity type.

Examples#

Create a new Retractor entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Retractor(model)
Get an existing Retractor entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Retractor(model, 1)

Rigidbody Class#

class Rigidbody(amodel: Model, *args, **kwargs)#

Class representing Rigidbody entity type.

Examples#

Create a new Rigidbody entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Rigidbody(model)
Get an existing Rigidbody entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Rigidbody(model, 1)

Rigidwall Class#

class Rigidwall(amodel: Model, *args, **kwargs)#

Class representing Rigidwall entity type.

Examples#

Create a new Rigidwall entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Rigidwall(model)
Get an existing Rigidwall entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Rigidwall(model, 1)

Scenario Class#

class Scenario(amodel: Model, *args, **kwargs)#

Class representing Scenario entity type.

Examples#

Create a new Scenario entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Scenario(model)
Get an existing Scenario entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Scenario(model, 1)

Seamexcitation Class#

class Seamexcitation(amodel: Model, *args, **kwargs)#

Class representing Seamexcitation entity type.

Examples#

Create a new Seamexcitation entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Seamexcitation(model)
Get an existing Seamexcitation entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Seamexcitation(model, 1)

Seamjunction Class#

class Seamjunction(amodel: Model, *args, **kwargs)#

Class representing Seamjunction entity type.

Examples#

Create a new Seamjunction entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Seamjunction(model)
Get an existing Seamjunction entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Seamjunction(model, 1)

Seamsubsystem Class#

class Seamsubsystem(amodel: Model, *args, **kwargs)#

Class representing Seamsubsystem entity type.

Examples#

Create a new Seamsubsystem entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Seamsubsystem(model)
Get an existing Seamsubsystem entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Seamsubsystem(model, 1)

Seasubsystem Class#

class Seasubsystem(amodel: Model, *args, **kwargs)#

Class representing Seasubsystem entity type.

Examples#

Create a new Seasubsystem entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Seasubsystem(model)
Get an existing Seasubsystem entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Seasubsystem(model, 1)

Seatbelt Class#

class Seatbelt(amodel: Model, *args, **kwargs)#

Class representing Seatbelt entity type.

Examples#

Create a new Seatbelt entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Seatbelt(model)
Get an existing Seatbelt entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Seatbelt(model, 1)

Seatbeltcontrolpoint Class#

class Seatbeltcontrolpoint(amodel: Model, *args, **kwargs)#

Class representing Seatbeltcontrolpoint entity type.

Examples#

Create a new Seatbeltcontrolpoint entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Seatbeltcontrolpoint(model)
Get an existing Seatbeltcontrolpoint entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Seatbeltcontrolpoint(model, 1)

Section Class#

class Section(amodel: Model, *args, **kwargs)#

Class representing Section entity type.

Examples#

Create a new Section entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Section(model)
Get an existing Section entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Section(model, 1)

Sensor Class#

class Sensor(amodel: Model, *args, **kwargs)#

Class representing Sensor entity type.

Examples#

Create a new Sensor entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Sensor(model)
Get an existing Sensor entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Sensor(model, 1)

Sequence Class#

class Sequence(amodel: Model, *args, **kwargs)#

Class representing Sequence entity type.

Examples#

Create a new Sequence entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Sequence(model)
Get an existing Sequence entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Sequence(model, 1)

Set Class#

class Set(amodel: Model, *args, **kwargs)#

Class representing Set entity type.

Examples#

Create a new Set entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Set(model)
Get an existing Set entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Set(model, 1)

Shape Class#

class Shape(amodel: Model, *args, **kwargs)#

Class representing Shape entity type.

Note

Shape entity is not supported for creation using class constructor.

Example#

Get an existing Shape entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Shape(model, 1)

Shape3d Class#

class Shape3d(amodel: Model, *args, **kwargs)#

Class representing Shape3d entity type.

Examples#

Create a new Shape3d entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Shape3d(model)
Get an existing Shape3d entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Shape3d(model, 1)

Skeleton Class#

class Skeleton(amodel: Model, *args, **kwargs)#

Class representing Skeleton entity type.

Examples#

Create a new Skeleton entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Skeleton(model)
Get an existing Skeleton entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Skeleton(model, 1)

Sketch Class#

class Sketch(amodel: Model, *args, **kwargs)#

Class representing Sketch entity type.

Examples#

Create a new Sketch entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Sketch(model)
Get an existing Sketch entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Sketch(model, 1)

Slipring Class#

class Slipring(amodel: Model, *args, **kwargs)#

Class representing Slipring entity type.

Examples#

Create a new Slipring entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Slipring(model)
Get an existing Slipring entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Slipring(model, 1)

Solid Class#

class Solid(amodel: Model, *args, **kwargs)#

Class representing Solid entity type.

Note

Solid entity is not supported for creation using class constructor.

Example#

Get an existing Solid entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Solid(model, 1)

Solvermass Class#

class Solvermass(amodel: Model, *args, **kwargs)#

Class representing Solvermass entity type.

Examples#

Create a new Solvermass entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Solvermass(model)
Get an existing Solvermass entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Solvermass(model, 1)

Solversetting Class#

class Solversetting(amodel: Model, *args, **kwargs)#

Class representing Solversetting entity type.

Examples#

Create a new Solversetting entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Solversetting(model)
Get an existing Solversetting entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Solversetting(model, 1)

Solversubmodel Class#

class Solversubmodel(amodel: Model, *args, **kwargs)#

Class representing Solversubmodel entity type.

Examples#

Create a new Solversubmodel entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Solversubmodel(model)
Get an existing Solversubmodel entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Solversubmodel(model, 1)

Stateequation Class#

class Stateequation(amodel: Model, *args, **kwargs)#

Class representing Stateequation entity type.

Examples#

Create a new Stateequation entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Stateequation(model)
Get an existing Stateequation entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Stateequation(model, 1)

StructuralpropertyBeam Class#

class StructuralpropertyBeam(amodel: Model, *args, **kwargs)#

Class representing StructuralpropertyBeam entity type.

Examples#

Create a new StructuralpropertyBeam entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.StructuralpropertyBeam(model)
Get an existing StructuralpropertyBeam entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.StructuralpropertyBeam(model, 1)

StructuralpropertyDummyTargets Class#

class StructuralpropertyDummyTargets(amodel: Model, *args, **kwargs)#

Class representing StructuralpropertyDummyTargets entity type.

Examples#

Create a new StructuralpropertyDummyTargets entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.StructuralpropertyDummyTargets(model)
Get an existing StructuralpropertyDummyTargets entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.StructuralpropertyDummyTargets(model, 1)

StructuralpropertyEjectionMitigationIP Class#

class StructuralpropertyEjectionMitigationIP(amodel: Model, *args, **kwargs)#

Class representing StructuralpropertyEjectionMitigationIP entity type.

Examples#

Create a new StructuralpropertyEjectionMitigationIP entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.StructuralpropertyEjectionMitigationIP(model)
Get an existing StructuralpropertyEjectionMitigationIP entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.StructuralpropertyEjectionMitigationIP(model, 1)

StructuralpropertyGeneric Class#

class StructuralpropertyGeneric(amodel: Model, *args, **kwargs)#

Class representing StructuralpropertyGeneric entity type.

Examples#

Create a new StructuralpropertyGeneric entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.StructuralpropertyGeneric(model)
Get an existing StructuralpropertyGeneric entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.StructuralpropertyGeneric(model, 1)

StructuralpropertyHeadForm Class#

class StructuralpropertyHeadForm(amodel: Model, *args, **kwargs)#

Class representing StructuralpropertyHeadForm entity type.

Examples#

Create a new StructuralpropertyHeadForm entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.StructuralpropertyHeadForm(model)
Get an existing StructuralpropertyHeadForm entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.StructuralpropertyHeadForm(model, 1)

StructuralpropertyInstrumentPanelIP Class#

class StructuralpropertyInstrumentPanelIP(amodel: Model, *args, **kwargs)#

Class representing StructuralpropertyInstrumentPanelIP entity type.

Examples#

Create a new StructuralpropertyInstrumentPanelIP entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.StructuralpropertyInstrumentPanelIP(model)
Get an existing StructuralpropertyInstrumentPanelIP entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.StructuralpropertyInstrumentPanelIP(model, 1)

StructuralpropertyLowerLegForm Class#

class StructuralpropertyLowerLegForm(amodel: Model, *args, **kwargs)#

Class representing StructuralpropertyLowerLegForm entity type.

Examples#

Create a new StructuralpropertyLowerLegForm entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.StructuralpropertyLowerLegForm(model)
Get an existing StructuralpropertyLowerLegForm entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.StructuralpropertyLowerLegForm(model, 1)

StructuralpropertyPanelComposite Class#

class StructuralpropertyPanelComposite(amodel: Model, *args, **kwargs)#

Class representing StructuralpropertyPanelComposite entity type.

Examples#

Create a new StructuralpropertyPanelComposite entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.StructuralpropertyPanelComposite(model)
Get an existing StructuralpropertyPanelComposite entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.StructuralpropertyPanelComposite(model, 1)

StructuralpropertyPanelMetallic Class#

class StructuralpropertyPanelMetallic(amodel: Model, *args, **kwargs)#

Class representing StructuralpropertyPanelMetallic entity type.

Examples#

Create a new StructuralpropertyPanelMetallic entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.StructuralpropertyPanelMetallic(model)
Get an existing StructuralpropertyPanelMetallic entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.StructuralpropertyPanelMetallic(model, 1)

StructuralpropertyRivet Class#

class StructuralpropertyRivet(amodel: Model, *args, **kwargs)#

Class representing StructuralpropertyRivet entity type.

Examples#

Create a new StructuralpropertyRivet entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.StructuralpropertyRivet(model)
Get an existing StructuralpropertyRivet entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.StructuralpropertyRivet(model, 1)

StructuralpropertySpring Class#

class StructuralpropertySpring(amodel: Model, *args, **kwargs)#

Class representing StructuralpropertySpring entity type.

Examples#

Create a new StructuralpropertySpring entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.StructuralpropertySpring(model)
Get an existing StructuralpropertySpring entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.StructuralpropertySpring(model, 1)

StructuralpropertyUndefined Class#

class StructuralpropertyUndefined(amodel: Model, *args, **kwargs)#

Class representing StructuralpropertyUndefined entity type.

Examples#

Create a new StructuralpropertyUndefined entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.StructuralpropertyUndefined(model)
Get an existing StructuralpropertyUndefined entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.StructuralpropertyUndefined(model, 1)

StructuralpropertyUpperLegForm Class#

class StructuralpropertyUpperLegForm(amodel: Model, *args, **kwargs)#

Class representing StructuralpropertyUpperLegForm entity type.

Examples#

Create a new StructuralpropertyUpperLegForm entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.StructuralpropertyUpperLegForm(model)
Get an existing StructuralpropertyUpperLegForm entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.StructuralpropertyUpperLegForm(model, 1)

Study Class#

class Study(amodel: Model, *args, **kwargs)#

Class representing Study entity type.

Examples#

Create a new Study entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Study(model)
Get an existing Study entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Study(model, 1)

Subsystem Class#

class Subsystem(amodel: Model, *args, **kwargs)#

Class representing Subsystem entity type.

Examples#

Create a new Subsystem entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Subsystem(model)
Get an existing Subsystem entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Subsystem(model, 1)

Subsystemconfiguration Class#

class Subsystemconfiguration(amodel: Model, *args, **kwargs)#

Class representing Subsystemconfiguration entity type.

Examples#

Create a new Subsystemconfiguration entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Subsystemconfiguration(model)
Get an existing Subsystemconfiguration entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Subsystemconfiguration(model, 1)

Subsystemset Class#

class Subsystemset(amodel: Model, *args, **kwargs)#

Class representing Subsystemset entity type.

Examples#

Create a new Subsystemset entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Subsystemset(model)
Get an existing Subsystemset entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Subsystemset(model, 1)

Surface Class#

class Surface(amodel: Model, *args, **kwargs)#

Class representing Surface entity type.

Note

Surface entity is not supported for creation using class constructor.

Example#

Get an existing Surface entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Surface(model, 1)

Symmetry Class#

class Symmetry(amodel: Model, *args, **kwargs)#

Class representing Symmetry entity type.

Note

Symmetry entity is not supported for creation using class constructor.

Example#

Get an existing Symmetry entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Symmetry(model, 1)

Symmetrypivot Class#

class Symmetrypivot(amodel: Model, *args, **kwargs)#

Class representing Symmetrypivot entity type.

Examples#

Create a new Symmetrypivot entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Symmetrypivot(model)
Get an existing Symmetrypivot entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Symmetrypivot(model, 1)

Systcol Class#

class Systcol(amodel: Model, *args, **kwargs)#

Class representing Systcol entity type.

Examples#

Create a new Systcol entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Systcol(model)
Get an existing Systcol entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Systcol(model, 1)

System Class#

class System(amodel: Model, *args, **kwargs)#

Class representing System entity type.

Examples#

Create a new System entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.System(model)
Get an existing System entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.System(model, 1)

Table Class#

class Table(amodel: Model, *args, **kwargs)#

Class representing Table entity type.

Examples#

Create a new Table entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Table(model)
Get an existing Table entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Table(model, 1)

Tag Class#

class Tag(amodel: Model, *args, **kwargs)#

Class representing Tag entity type.

Note

Tag entity is not supported for creation using class constructor.

Example#

Get an existing Tag entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Tag(model, 1)

Termination Class#

class Termination(amodel: Model, *args, **kwargs)#

Class representing Termination entity type.

Examples#

Create a new Termination entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Termination(model)
Get an existing Termination entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Termination(model, 1)

Timestepcontrol Class#

class Timestepcontrol(amodel: Model, *args, **kwargs)#

Class representing Timestepcontrol entity type.

Examples#

Create a new Timestepcontrol entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Timestepcontrol(model)
Get an existing Timestepcontrol entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Timestepcontrol(model, 1)

Title Class#

class Title(amodel: Model, *args, **kwargs)#

Class representing Title entity type.

Note

Title entity is not supported for creation using class constructor.

Example#

Get an existing Title entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Title(model, 1)

Transformation Class#

class Transformation(amodel: Model, *args, **kwargs)#

Class representing Transformation entity type.

Examples#

Create a new Transformation entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Transformation(model)
Get an existing Transformation entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Transformation(model, 1)

Vector Class#

class Vector(amodel: Model, *args, **kwargs)#

Class representing Vector entity type.

Examples#

Create a new Vector entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Vector(model)
Get an existing Vector entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Vector(model, 1)

Vectorcol Class#

class Vectorcol(amodel: Model, *args, **kwargs)#

Class representing Vectorcol entity type.

Examples#

Create a new Vectorcol entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Vectorcol(model)
Get an existing Vectorcol entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Vectorcol(model, 1)

Weldline Class#

class Weldline(amodel: Model, *args, **kwargs)#

Class representing Weldline entity type.

Examples#

Create a new Weldline entity#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Weldline(model)
Get an existing Weldline entity with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

entity_object = ent.Weldline(model, 1)