SectionsBaseClass#

class PileAnalysisPileTypeCrossSection(*values)#

Bases: Enum

UNIFORM = 1#
TAPERED = 2#
BELL = 3#
class SectionsBaseClass(model_id: str, pile_type_id: str, client: Client)#

Bases: ABC

abstractmethod getCrossSectionType()#
abstractmethod setCrossSectionType(crossSectionType)#
setPileSegmentsByLength(pileHeadElevation: float, segments: list[tuple[str, float]])#

sections: list of tuples, each tuple containing a segment’s name and its length Note: Do not include the bell in this list (if applicable)

Examples: Code Snippet: Manipulation of Pile Types (Pile Analysis)

getPileSegmentsByLength() tuple[float, list[tuple[str, float]]]#

returns the pile head elevation followed and a list of tuples, each tuple containing a segment’s name and its length

Examples: Code Snippet: Manipulation of Pile Types (Pile Analysis)

setPileSegmentsByBottomElevation(pileHeadElevation: float, segments: list[tuple[str, float]])#

segments: list of tuples, each tuple containing a segment’s name and its bottom elevation Note: Do not include the bell in this list (if applicable)

Examples: Code Snippet: Manipulation of Pile Types (Pile Analysis)

getPileSegmentsByBottomElevation() tuple[float, list[tuple[str, float]]]#

returns the pile head elevation followed and a list of tuples, each tuple containing a segment’s name and its bottom elevation

Examples: Code Snippet: Manipulation of Pile Types (Pile Analysis)