Skip to content

pal

structural_sections.steel.standard_profiles.pal

Standard PAL sheet pile profiles.

Classes:

  • PAL

    Geometrical representation of standard PAL sheet pile profiles.

structural_sections.steel.standard_profiles.pal.PAL

Geometrical representation of standard PAL sheet pile profiles.

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