Skip to content

gu

structural_sections.steel.standard_profiles.gu

Standard GU sheet pile profiles.

Classes:

  • GU

    Geometrical representation of standard GU sheet pile profiles.

structural_sections.steel.standard_profiles.gu.GU

Geometrical representation of standard GU sheet pile profiles.

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