Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions structuralcodes/sections/_shell_section.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
"""Implementation of the shell section class."""

from __future__ import annotations # To have clean hints of ArrayLike in docs

import typing as t

import numpy as np
Expand All @@ -10,14 +14,16 @@


class ShellSection(Section):
"""This is the implementation of the shell class section.
"""This is the implementation of the shell section class.

Attributes:
geometry ShellGeometry: The geometry of
the section.
geometry ShellGeometry: The geometry of the section.
name (str): The name of the section.
"""

geometry: ShellGeometry
section_calculator: ShellSectionCalculator

def __init__(
self,
geometry: ShellGeometry,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
discretization.
"""

from __future__ import annotations # To have clean hints of ArrayLike in docs

import typing as t

import numpy as np
Expand Down
Loading