BodyLoads
Body load applied throughout a solid region -- distributed force per unit volume across the selected face (2D) or volume (3D).
Examples
feature = model.get_body_load(shapes)
feature.load_direction = 'z'
feature.value = -20.0
# Apply multiple changes in a single network call:
with feature.batch():
feature.load_direction = 'z'
feature.value = -20.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
- Body load value (unit weight).
- value : float | Profile | Gradient
- Alias for p.