set_point_load

Add point load.

Parameters

shapes : Shape | ShapeList
Shapes to apply the load to.
value : float
Load magnitude in kN.
direction : str
Load direction. direction = 'x' or 'y' or 'z'.
option : str
Load option. option = 'fixed' or 'multiplier'.

Examples

sel = model.select([3,3,0], types='vertex')
model.set_point_load(shapes=sel, value=-10, direction='z', option='fixed')