Skip to content

unp

structural_sections.steel.standard_profiles.unp

UNP Steel Profiles.

Classes:

  • UNP

    Geometrical representation of UNP profiles.

structural_sections.steel.standard_profiles.unp.UNP

Geometrical representation of UNP profiles.

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

Usage example
>>> profile = UNP.UNP200
>>> print(isinstance(profile, UNPProfile))  # True
>>>
>>> # To iterate over all available UNP profiles:
>>> for profile in UNP:
...     print(isinstance(profile, UNPProfile))  # True