Model#

The API is primarily built around object types that represent model entities in the Dlubal software (e.g. Nodes, Sections, Members, Loads etc.). This section is further divided to RSTAB specific objects and objects that are common accross Dlubal applications.

The RSTAB specific object types are organized into submodules based on their functionality.

# Define and create objects
object_lst = [
      # Define material
      rstab.structure_core.Material(
            no=1,
            name='S235',
      ),

      # Define section
      rstab.structure_core.Section(
            no=1,
            name='HE 300 A',
            material=1,
      ),

      # Define nodes
      rstab.structure_core.Node(
            no=1,
      ),
   ]
rstab_app.create_object_list(object_lst)

List of Object Types#