heb
structural_sections.steel.standard_profiles.heb
HEB Steel Profiles.
Classes:
-
HEB–Geometrical representation of HEB steel profiles.
structural_sections.steel.standard_profiles.heb.HEB
Geometrical representation of HEB steel profiles.
This class provides access to standard HEB profiles from a predefined database. Profiles can be accessed as class attributes using their standardized names. Each accessed profile returns a IProfile instance.
Usage example
>>> profile = HEB.HEB200
>>> print(isinstance(profile, IProfile)) # True
>>>
>>> # To iterate over all available HEB profiles:
>>> for profile in HEB:
... print(isinstance(profile, IProfile)) # True