Skip to content

paz

structural_sections.steel.standard_profiles.paz

Standard PAZ sheet pile profiles.

Classes:

  • PAZ

    Geometrical representation of standard PAZ sheet pile profiles.

structural_sections.steel.standard_profiles.paz.PAZ

Geometrical representation of standard PAZ sheet pile profiles.

PAZ (Pile and AZ) profiles are a standardized form of combined Z-shaped sheet piles. This class provides access to standard PAZ sheet pile profiles from a predefined database. Profiles can be accessed as class attributes using their standardized names. Each accessed profile returns a SheetpileZProfile instance configured with 2 sheets.

Note

PAZ profiles consist of two interlocked Z-sections forming a combined pile.

Usage example
>>> profile = PAZ.PAZ4350
>>> print(isinstance(profile, SheetpileZProfile))  # True
>>> print(profile.number_of_sheets)
>>>
>>> # To iterate over all available PAZ profiles:
>>> for profile in PAZ:
...     print(isinstance(profile, SheetpileZProfile))  # True