Skip to content

pu

structural_sections.steel.standard_profiles.pu

Standard PU sheet pile profiles.

Classes:

  • PU

    Geometrical representation of standard PU sheet pile profiles.

structural_sections.steel.standard_profiles.pu.PU

Geometrical representation of standard PU sheet pile profiles.

PU profiles are a standardized form of U-shaped sheet piles. This class provides access to standard PU sheet pile profiles from a predefined database. Profiles can be accessed as class attributes using their standardized names. Each accessed profile returns a SheetpileUProfile instance.

Usage example
>>> profile = PU.PU18
>>> print(isinstance(profile, SheetpileUProfile))  # True
>>>
>>> # To iterate over all available PU profiles:
>>> for profile in PU:
...     print(isinstance(profile, SheetpileUProfile))  # True