Skip to content

chs

structural_sections.steel.standard_profiles.chs

Standard CHS profiles.

Classes:

  • CHS

    Geometrical representation of standard CHS profiles.

structural_sections.steel.standard_profiles.chs.CHS

Geometrical representation of standard CHS profiles.

This class provides access to standard Circular Hollow Section (CHS) profiles from a predefined database. Profiles can be accessed as class attributes using their standardized names. Each accessed profile returns a CHSProfile instance.

Usage example
>>> profile = CHS.CHS21_3x2_3
>>> print(isinstance(profile, CHSProfile))  # True
>>>
>>> # To iterate over all available CHS profiles:
>>> for profile in CHS:
...     print(isinstance(profile, CHSProfile))  # True