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