Skip to content

pau

structural_sections.steel.standard_profiles.pau

Standard PAU sheet pile profiles.

Classes:

  • PAU

    Geometrical representation of standard PAU sheet pile profiles.

structural_sections.steel.standard_profiles.pau.PAU

Geometrical representation of standard PAU sheet pile profiles.

PAU profiles are a standardized form of combined U-shaped sheet piles. This class provides access to standard PAU 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 = PAU.PAU2450
>>> print(isinstance(profile, SheetpileUProfile))  # True
>>>
>>> # To iterate over all available PAU profiles:
>>> for profile in PAU:
...     print(isinstance(profile, SheetpileUProfile))  # True