PointLoads
Point load applied at a point -- concentrated force at the selected point(s).
Examples
feature = model.get_point_load(shapes)
feature.load_direction = 'z'
feature.value = 10.0
# Apply multiple changes in a single network call:
with feature.batch():
feature.load_direction = 'z'
feature.value = 10.0
Properties
- option : int
- Load option (fixed/multiplier).
- load_direction : int
- Load direction (x/y/z).
- coordinate : int
- Coordinate system type.
- coordinate_system : str
- Coordinate system (local/global_2d/global_3d or csys UUID).
- load_category : int
- Load category.
- load_type : int
- Load type (unfavourable/favourable).
- load_variation : int
- Load variation (constant/linear).
- p : float | Profile | Gradient
- Point load value.
- value : float | Profile | Gradient
- Alias for p.