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