lizzy.entities
- class lizzy.entities.Node(x: float, y: float, z: float, idx: int)
Class representing a mesh node.
- coords
(x, y, z) coordinates of the node in 3D space [m].
- Type:
np.ndarray
- class lizzy.entities.Line(node_1: Node, node_2: Node, idx: int)
Class representing a line between two nodes in the mesh.
- midpoint
Midpoint coordinates of the line [m].
- Type:
np.ndarray
- class lizzy.entities.Triangle(node_1: Node, node_2: Node, node_3: Node, line_1: Line, line_2: Line, line_3: Line, n: int)
Class representing a triangular element.
- k
Permeability tensor of the element [m²].
- Type:
np.ndarray
- centroid
Centroid coordinates of the triangle [m].
- Type:
np.ndarray
- n
Unit normal vector of the triangle plane.
- Type:
np.ndarray