Skip to content

az

structural_sections.steel.standard_profiles.az

Standard AZ sheet pile profiles.

Classes:

  • AZ

    Geometrical representation of standard AZ sheet pile profiles.

structural_sections.steel.standard_profiles.az.AZ

Geometrical representation of standard AZ sheet pile profiles.

AZ profiles are a standardized form of Z-shaped sheet piles. This class provides access to standard AZ 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.

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