PointLoad

class compas_fea.structure.PointLoad(name, nodes, x=0, y=0, z=0, xx=0, yy=0, zz=0)[source]

Bases: compas_fea.structure.load.Load

Concentrated forces and moments [units:N, Nm] applied to node(s).

Parameters
  • name (str) – Name of the PointLoad object.

  • nodes (str, list) – Node set or node keys the load is applied to.

  • x (float) – x component of force.

  • y (float) – y component of force.

  • z (float) – z component of force.

  • xx (float) – xx component of moment.

  • yy (float) – yy component of moment.

  • zz (float) – zz component of moment.