StaticStep.add_point_load
- StaticStep.add_point_load(points, tolerance=1000, x=None, y=None, z=None, xx=None, yy=None, zz=None, axes='global', name=None, **kwargs)
Add a
compas_fea2.problem.PointLoad
subclass object to theStep
at specific points.- Parameters
- namestr
name of the point load
- xfloat, optional
x component (in global coordinates) of the point load, by default None
- yfloat, optional
y component (in global coordinates) of the point load, by default None
- zfloat, optional
z component (in global coordinates) of the point load, by default None
- xxfloat, optional
moment about the global x axis of the point load, by default None
- yyfloat, optional
moment about the global y axis of the point load, by default None
- zzfloat, optional
moment about the global z axis of the point load, by default None
- axesstr, optional
‘local’ or ‘global’ axes, by default ‘global’
- Returns
Warning
local axes are not supported yet