Skip to content

au

structural_sections.steel.standard_profiles.au

Standard AU sheet pile profiles.

Classes:

  • AU

    Geometrical representation of standard AU sheet pile profiles.

structural_sections.steel.standard_profiles.au.AU

Geometrical representation of standard AU sheet pile profiles.

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