dlubal.api.rfem#

This section documents the object types provided by the dlubal.api.rfem subpackages.

These objects are used to define and manipulate RFEM models through the gRPC API.

# Import the rfem subpackage
from dlubal.api import rfem

# Create a Node object from the structure_core module
node = rfem.structure_core.Node(
    no=1,             # Node identifier
    coordinate_1=3.0  # X-coordinate of the node
)

# Send the Node object via gRPC to interact with the RFEM server