Skip to content

strip

structural_sections.steel.standard_profiles.strip

Standard Steel Strips.

Classes:

  • Strip

    Geometrical representation of steel strips.

structural_sections.steel.standard_profiles.strip.Strip

Geometrical representation of steel strips.

This class provides access to standard strip profiles from a predefined database. Profiles can be accessed as class attributes using their standardized names. Each accessed profile returns a StripProfile instance.

Usage example
>>> profile = Strip.STRIP200x10
>>> print(isinstance(profile, StripProfile))  # True
>>>
>>> # To iterate over all available Strip profiles:
>>> for profile in Strip:
...     print(isinstance(profile, StripProfile))  # True