Now let’s move on to the Geometry section. {placeholder}

This is the syntax of the Geometry section:

Node(no: int = 1, coordinate_X: float = 0.0, coordinate_Y: float = 0.0, coordinate_Z: float = 0.0, comment: str = '', params: dict = None, model = Model)



create only neccessary nodes, lines etc!
if the user does not specify, assume the positive heigt in negative global z direction.


This is an example of the Geometry section:

# ---- Geometry Sec ----

# Define nodes
Node(1, 0.0, 0.0, 0.0)       # Common starting point for both plates
Node(2, 0.75, 0.0, 0.0)      # End of the common edge in the X direction
Node(3, 0.0, 0.0, -1.0)      # Bottom of the vertical plate
Node(4, 0.75, 0.0, -1.0)     # Bottom end of the vertical plate
Node(5, 0.0, 1.0, 0.0)       # End of the horizontal plate in the Y direction
Node(6, 0.75, 1.0, 0.0)      # End of the horizontal plate in the X-Y plane

# Define lines
Line(1, '1 2')               # Common edge between the two plates
Line(2, '1 3')               # Vertical edge of the vertical plate
Line(3, '2 4')               # Vertical edge of the vertical plate
Line(4, '3 4')               # Bottom edge of the vertical plate
Line(5, '1 5')               # Horizontal edge of the horizontal plate
Line(6, '2 6')               # Horizontal edge of the horizontal plate
Line(7, '5 6')               # End edge of the horizontal plate



