Organize load combinations using tags
mainThe add_load_combo() method accepts an optional third argument, combo_tags, which allows you to categorize combinations (for example, using 'strength' or 'service').
Tags serve two primary purposes:
- Analysis Filtering: When running an analysis, you can pass a list of tags to the analysis command to execute only the combinations that contain those specific tags.
- Result Filtering: Tags can be used to filter and organize results after the analysis is complete.
# Example of adding a combo with tags
my_model.add_load_combo('Strength Combo', {'D': 1.2, 'L': 1.6}, combo_tags=['strength'])