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 RFEM specific objects and objects that are common accross Dlubal applications.

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

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

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

      # Define nodes
      rfem.structure_core.Node(
            no=1,
      ),
   ]
rfem_app.create_object_list(object_lst)

List of Object Types#