hem
structural_sections.steel.standard_profiles.hem
HEM Steel Profiles.
Classes:
-
HEM–Geometrical representation of HEM steel profiles.
structural_sections.steel.standard_profiles.hem.HEM
Geometrical representation of HEM steel profiles.
This class provides access to standard HEM 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 = HEM.HEM200
>>> print(isinstance(profile, IProfile)) # True
>>>
>>> # To iterate over all available HEM profiles:
>>> for profile in HEM:
... print(isinstance(profile, IProfile)) # True