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)
// Step 3: Define and create objects
var structure = new List<IMessage> {
new rstab.StructureCore.Material{
Name="S235"
},
new rstab.StructureCore.Section{
Name="HE 300 A",
Material=1,
},
new rstab.StructureCore.Node{
No=1,
Coordinate1=0,
},
};
await rstab_app.create_object_list(structure);
List of Object Types#
- aluminum_design_objects
- calculation_diagrams
- concrete_design_objects
- craneway_design_objects
- dynamic_loads
- global_parameters
- guide_objects
- ifc_objects
- imperfections
- load_wizards
- loading
- loads
- results
- steel_design_objects
- structure_advanced
- structure_core
- timber_design_objects
- types_for_aluminum_design
- types_for_concrete_design
- types_for_craneway_design
- types_for_members
- types_for_nodes
- types_for_special_objects
- types_for_steel_design
- types_for_timber_design
- ObjectId
- Associated Enums
- ObjectType
- All