dlubal.api 0.1.293714a1__py3-none-any.whl → 2.12.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of dlubal.api might be problematic. Click here for more details.
- dlubal/api/common/__init__.py +8 -3
- dlubal/api/common/common_messages_pb2.py +78 -0
- dlubal/api/common/common_messages_pb2.pyi +230 -0
- dlubal/api/common/common_pb2.py +7 -3
- dlubal/api/common/common_pb2.pyi +16 -0
- dlubal/api/common/connection.py +243 -251
- dlubal/api/common/exceptions.py +11 -11
- dlubal/api/common/import_export/__init__.py +2 -0
- dlubal/api/common/import_export/export_attributes_pb2.py +46 -0
- dlubal/api/common/import_export/export_attributes_pb2.pyi +77 -0
- dlubal/api/common/import_export/import_attributes_pb2.py +40 -0
- dlubal/api/common/import_export/import_attributes_pb2.pyi +17 -0
- dlubal/api/common/model_id_pb2.py +4 -4
- dlubal/api/common/model_id_pb2.pyi +8 -8
- dlubal/api/{rfem/results/results_id_pb2.py → common/options_pb2.py} +5 -6
- dlubal/api/common/options_pb2.pyi +7 -0
- dlubal/api/common/packing.py +144 -0
- dlubal/api/common/table.py +36 -34
- dlubal/api/common/utility.py +131 -0
- dlubal/api/rfem/__init__.py +53 -32
- dlubal/api/rfem/all_pb2.py +36 -0
- dlubal/api/rfem/all_pb2.pyi +9 -0
- dlubal/api/rfem/aluminum_design_objects/__init__.py +2 -2
- dlubal/api/rfem/aluminum_design_objects/aluminum_design_sls_configuration_pb2.py +44 -3
- dlubal/api/rfem/aluminum_design_objects/aluminum_design_sls_configuration_pb2.pyi +242 -3
- dlubal/api/rfem/aluminum_design_objects/aluminum_design_uls_configuration_pb2.py +44 -3
- dlubal/api/rfem/aluminum_design_objects/aluminum_design_uls_configuration_pb2.pyi +242 -3
- dlubal/api/rfem/application.py +807 -290
- dlubal/api/rfem/application_pb2.py +37 -30
- dlubal/api/rfem/application_pb2.pyi +107 -102
- dlubal/api/rfem/application_pb2_grpc.py +1046 -61
- dlubal/api/rfem/{base_data → base_data_objects}/__init__.py +1 -1
- dlubal/api/rfem/base_data_objects/terrain_pb2.py +42 -0
- dlubal/api/rfem/base_data_objects/terrain_pb2.pyi +71 -0
- dlubal/api/rfem/base_data_pb2.py +108 -0
- dlubal/api/rfem/base_data_pb2.pyi +2627 -0
- dlubal/api/rfem/beam_panels/__init__.py +4 -0
- dlubal/api/rfem/beam_panels/beam_to_beam_connector_pb2.py +38 -0
- dlubal/api/rfem/beam_panels/beam_to_beam_connector_pb2.pyi +39 -0
- dlubal/api/rfem/beam_panels/inner_studs_structure_pb2.py +38 -0
- dlubal/api/rfem/beam_panels/inner_studs_structure_pb2.pyi +53 -0
- dlubal/api/rfem/beam_panels/sheathing_pb2.py +38 -0
- dlubal/api/rfem/beam_panels/sheathing_pb2.pyi +59 -0
- dlubal/api/rfem/beam_panels/sheathing_to_beam_connector_pb2.py +44 -0
- dlubal/api/rfem/beam_panels/sheathing_to_beam_connector_pb2.pyi +93 -0
- dlubal/api/rfem/building_model/__init__.py +4 -4
- dlubal/api/rfem/building_model/building_story_pb2.py +24 -20
- dlubal/api/rfem/building_model/building_story_pb2.pyi +133 -95
- dlubal/api/rfem/building_model/deep_beam_pb2.py +225 -7
- dlubal/api/rfem/building_model/deep_beam_pb2.pyi +3505 -42
- dlubal/api/rfem/building_model/floor_set_pb2.py +4 -4
- dlubal/api/rfem/building_model/floor_set_pb2.pyi +8 -9
- dlubal/api/rfem/building_model/shear_wall_pb2.py +123 -7
- dlubal/api/rfem/building_model/shear_wall_pb2.pyi +1843 -20
- dlubal/api/rfem/calculation_diagrams/__init__.py +1 -1
- dlubal/api/rfem/calculation_diagrams/calculation_diagram_pb2.py +28 -17
- dlubal/api/rfem/calculation_diagrams/calculation_diagram_pb2.pyi +1729 -1661
- dlubal/api/rfem/component_design_objects/__init__.py +2 -0
- dlubal/api/rfem/component_design_objects/component_pb2.py +55 -0
- dlubal/api/rfem/component_design_objects/component_pb2.pyi +164 -0
- dlubal/api/rfem/component_design_objects/component_serie_pb2.py +38 -0
- dlubal/api/rfem/component_design_objects/component_serie_pb2.pyi +54 -0
- dlubal/api/rfem/concrete_design_objects/__init__.py +4 -2
- dlubal/api/rfem/concrete_design_objects/concrete_design_fr_configuration_pb2.py +93 -0
- dlubal/api/rfem/concrete_design_objects/concrete_design_fr_configuration_pb2.pyi +369 -0
- dlubal/api/rfem/concrete_design_objects/concrete_design_seismic_configuration_pb2.py +57 -0
- dlubal/api/rfem/concrete_design_objects/concrete_design_seismic_configuration_pb2.pyi +171 -0
- dlubal/api/rfem/concrete_design_objects/concrete_design_sls_configuration_pb2.py +28 -3
- dlubal/api/rfem/concrete_design_objects/concrete_design_sls_configuration_pb2.pyi +150 -3
- dlubal/api/rfem/concrete_design_objects/concrete_design_uls_configuration_pb2.py +76 -3
- dlubal/api/rfem/concrete_design_objects/concrete_design_uls_configuration_pb2.pyi +414 -3
- dlubal/api/rfem/construction_stages/__init__.py +1 -1
- dlubal/api/rfem/construction_stages/construction_stage_pb2.py +52 -12
- dlubal/api/rfem/construction_stages/construction_stage_pb2.pyi +390 -31
- dlubal/api/rfem/design_addons_pb2.py +36 -0
- dlubal/api/rfem/design_addons_pb2.pyi +28 -0
- dlubal/api/rfem/dynamic_analysis_pb2.py +36 -0
- dlubal/api/rfem/dynamic_analysis_pb2.pyi +23 -0
- dlubal/api/rfem/dynamic_loads/__init__.py +3 -2
- dlubal/api/rfem/dynamic_loads/accelerogram_pb2.py +8 -6
- dlubal/api/rfem/dynamic_loads/accelerogram_pb2.pyi +33 -17
- dlubal/api/rfem/dynamic_loads/response_spectrum_pb2.py +10 -8
- dlubal/api/rfem/dynamic_loads/response_spectrum_pb2.pyi +49 -30
- dlubal/api/rfem/dynamic_loads/time_diagram_pb2.py +46 -0
- dlubal/api/rfem/dynamic_loads/time_diagram_pb2.pyi +83 -0
- dlubal/api/rfem/foundation_design_objects/__init__.py +2 -0
- dlubal/api/rfem/foundation_design_objects/concrete_design_configuration_pb2.py +41 -0
- dlubal/api/rfem/foundation_design_objects/concrete_design_configuration_pb2.pyi +47 -0
- dlubal/api/rfem/foundation_design_objects/geotechnical_design_configuration_pb2.py +41 -0
- dlubal/api/rfem/foundation_design_objects/geotechnical_design_configuration_pb2.pyi +47 -0
- dlubal/api/rfem/geotechnical_analysis/__init__.py +3 -2
- dlubal/api/rfem/geotechnical_analysis/borehole_pb2.py +8 -6
- dlubal/api/rfem/geotechnical_analysis/borehole_pb2.pyi +31 -15
- dlubal/api/rfem/geotechnical_analysis/pile_resistance_pb2.py +42 -0
- dlubal/api/rfem/geotechnical_analysis/pile_resistance_pb2.pyi +71 -0
- dlubal/api/rfem/geotechnical_analysis/soil_massif_pb2.py +20 -12
- dlubal/api/rfem/geotechnical_analysis/soil_massif_pb2.pyi +107 -50
- dlubal/api/rfem/glass_design_objects/__init__.py +2 -0
- dlubal/api/rfem/glass_design_objects/glass_design_sls_configuration_pb2.py +69 -0
- dlubal/api/rfem/glass_design_objects/glass_design_sls_configuration_pb2.pyi +213 -0
- dlubal/api/rfem/glass_design_objects/glass_design_uls_configuration_pb2.py +69 -0
- dlubal/api/rfem/glass_design_objects/glass_design_uls_configuration_pb2.pyi +213 -0
- dlubal/api/rfem/global_parameters/__init__.py +1 -1
- dlubal/api/rfem/global_parameters/global_parameter_pb2.py +6 -6
- dlubal/api/rfem/global_parameters/global_parameter_pb2.pyi +254 -244
- dlubal/api/rfem/guide_objects/__init__.py +15 -10
- dlubal/api/rfem/guide_objects/building_grid_pb2.py +18 -18
- dlubal/api/rfem/guide_objects/building_grid_pb2.pyi +120 -128
- dlubal/api/rfem/guide_objects/clipping_box_pb2.py +2 -2
- dlubal/api/rfem/guide_objects/clipping_plane_pb2.py +10 -10
- dlubal/api/rfem/guide_objects/clipping_plane_pb2.pyi +57 -52
- dlubal/api/rfem/guide_objects/coordinate_system_pb2.py +6 -6
- dlubal/api/rfem/guide_objects/coordinate_system_pb2.pyi +31 -33
- dlubal/api/rfem/guide_objects/dimension_pb2.py +40 -26
- dlubal/api/rfem/guide_objects/dimension_pb2.pyi +266 -129
- dlubal/api/rfem/guide_objects/dxf_file_model_object_pb2.py +6 -6
- dlubal/api/rfem/guide_objects/dxf_file_model_object_pb2.pyi +54 -52
- dlubal/api/rfem/guide_objects/dxf_model_object_pb2.py +2 -2
- dlubal/api/rfem/guide_objects/group_of_object_selections_pb2.py +38 -0
- dlubal/api/rfem/guide_objects/group_of_object_selections_pb2.pyi +35 -0
- dlubal/api/rfem/guide_objects/guideline_pb2.py +42 -0
- dlubal/api/rfem/guide_objects/guideline_pb2.pyi +90 -0
- dlubal/api/rfem/guide_objects/layer_group_pb2.py +36 -0
- dlubal/api/rfem/guide_objects/layer_group_pb2.pyi +22 -0
- dlubal/api/rfem/guide_objects/layer_pb2.py +38 -0
- dlubal/api/rfem/guide_objects/layer_pb2.pyi +44 -0
- dlubal/api/rfem/guide_objects/note_pb2.py +12 -10
- dlubal/api/rfem/guide_objects/note_pb2.pyi +90 -60
- dlubal/api/rfem/guide_objects/object_snap_pb2.py +4 -4
- dlubal/api/rfem/guide_objects/object_snap_pb2.pyi +27 -26
- dlubal/api/rfem/guide_objects/texture_pb2.py +36 -0
- dlubal/api/rfem/guide_objects/texture_pb2.pyi +41 -0
- dlubal/api/rfem/guide_objects/visual_object_pb2.py +8 -8
- dlubal/api/rfem/guide_objects/visual_object_pb2.pyi +68 -62
- dlubal/api/rfem/ifc_objects/__init__.py +2 -0
- dlubal/api/rfem/ifc_objects/ifc_file_model_object_pb2.py +46 -0
- dlubal/api/rfem/ifc_objects/ifc_file_model_object_pb2.pyi +98 -0
- dlubal/api/rfem/ifc_objects/ifc_model_object_pb2.py +38 -0
- dlubal/api/rfem/ifc_objects/ifc_model_object_pb2.pyi +32 -0
- dlubal/api/rfem/imperfections/__init__.py +3 -5
- dlubal/api/rfem/imperfections/imperfection_case_pb2.py +26 -16
- dlubal/api/rfem/imperfections/imperfection_case_pb2.pyi +155 -98
- dlubal/api/rfem/imperfections/member_imperfection_pb2.py +17 -15
- dlubal/api/rfem/imperfections/member_imperfection_pb2.pyi +128 -128
- dlubal/api/rfem/imperfections/member_set_imperfection_pb2.py +17 -15
- dlubal/api/rfem/imperfections/member_set_imperfection_pb2.pyi +130 -130
- dlubal/api/rfem/layout_and_drawing/__init__.py +2 -0
- dlubal/api/rfem/layout_and_drawing/cad_line_pb2.py +69 -0
- dlubal/api/rfem/layout_and_drawing/cad_line_pb2.pyi +410 -0
- dlubal/api/rfem/layout_and_drawing/cad_line_point_pb2.py +39 -0
- dlubal/api/rfem/layout_and_drawing/cad_line_point_pb2.pyi +37 -0
- dlubal/api/rfem/load_wizards/__init__.py +7 -2
- dlubal/api/rfem/load_wizards/import_support_reactions_pb2.py +46 -0
- dlubal/api/rfem/load_wizards/import_support_reactions_pb2.pyi +91 -0
- dlubal/api/rfem/load_wizards/load_model_pb2.py +50 -0
- dlubal/api/rfem/load_wizards/load_model_pb2.pyi +113 -0
- dlubal/api/rfem/load_wizards/member_loads_from_area_load_pb2.py +46 -0
- dlubal/api/rfem/load_wizards/member_loads_from_area_load_pb2.pyi +93 -0
- dlubal/api/rfem/load_wizards/member_loads_from_free_line_load_pb2.py +45 -0
- dlubal/api/rfem/load_wizards/member_loads_from_free_line_load_pb2.pyi +110 -0
- dlubal/api/rfem/load_wizards/moving_load_pb2.py +52 -0
- dlubal/api/rfem/load_wizards/moving_load_pb2.pyi +715 -0
- dlubal/api/rfem/load_wizards/wind_profile_pb2.py +14 -10
- dlubal/api/rfem/load_wizards/wind_profile_pb2.pyi +748 -698
- dlubal/api/rfem/load_wizards/wind_simulation_pb2.py +22 -13
- dlubal/api/rfem/load_wizards/wind_simulation_pb2.pyi +107 -43
- dlubal/api/rfem/loading/__init__.py +16 -15
- dlubal/api/rfem/loading/action_combination_pb2.py +14 -6
- dlubal/api/rfem/loading/action_combination_pb2.pyi +118 -21
- dlubal/api/rfem/loading/action_pb2.py +21 -9
- dlubal/api/rfem/loading/action_pb2.pyi +676 -37
- dlubal/api/rfem/loading/combination_wizard_pb2.py +14 -7
- dlubal/api/rfem/loading/combination_wizard_pb2.pyi +61 -20
- dlubal/api/rfem/loading/design_situation_pb2.py +14 -5
- dlubal/api/rfem/loading/design_situation_pb2.pyi +1164 -9
- dlubal/api/rfem/loading/load_case_pb2.py +70 -43
- dlubal/api/rfem/loading/load_case_pb2.pyi +1151 -255
- dlubal/api/rfem/loading/load_combination_pb2.py +32 -15
- dlubal/api/rfem/loading/load_combination_pb2.pyi +312 -72
- dlubal/api/rfem/loading/modal_analysis_settings_pb2.py +18 -14
- dlubal/api/rfem/loading/modal_analysis_settings_pb2.pyi +133 -93
- dlubal/api/rfem/loading/optimization_settings_pb2.py +12 -8
- dlubal/api/rfem/loading/optimization_settings_pb2.pyi +81 -42
- dlubal/api/rfem/loading/pushover_analysis_settings_pb2.py +4 -4
- dlubal/api/rfem/loading/pushover_analysis_settings_pb2.pyi +8 -9
- dlubal/api/rfem/loading/relationship_between_load_cases_pb2.py +10 -6
- dlubal/api/rfem/loading/relationship_between_load_cases_pb2.pyi +44 -14
- dlubal/api/rfem/loading/result_combination_pb2.py +26 -9
- dlubal/api/rfem/loading/result_combination_pb2.pyi +266 -36
- dlubal/api/rfem/loading/spectral_analysis_settings_pb2.py +12 -12
- dlubal/api/rfem/loading/spectral_analysis_settings_pb2.pyi +45 -56
- dlubal/api/rfem/loading/stability_analysis_settings_pb2.py +10 -10
- dlubal/api/rfem/loading/stability_analysis_settings_pb2.pyi +53 -57
- dlubal/api/rfem/loading/static_analysis_settings_pb2.py +14 -12
- dlubal/api/rfem/loading/static_analysis_settings_pb2.pyi +65 -52
- dlubal/api/rfem/loading/time_history_analysis_settings_pb2.py +54 -0
- dlubal/api/rfem/loading/time_history_analysis_settings_pb2.pyi +167 -0
- dlubal/api/rfem/loading/wind_simulation_analysis_settings_pb2.py +18 -14
- dlubal/api/rfem/loading/wind_simulation_analysis_settings_pb2.pyi +116 -90
- dlubal/api/rfem/loads/__init__.py +19 -17
- dlubal/api/rfem/loads/additional_foundation_load_pb2.py +41 -0
- dlubal/api/rfem/loads/additional_foundation_load_pb2.pyi +80 -0
- dlubal/api/rfem/loads/cutting_pattern_load_pb2.py +40 -0
- dlubal/api/rfem/loads/cutting_pattern_load_pb2.pyi +49 -0
- dlubal/api/rfem/loads/free_circular_load_pb2.py +8 -8
- dlubal/api/rfem/loads/free_circular_load_pb2.pyi +57 -60
- dlubal/api/rfem/loads/free_concentrated_load_pb2.py +10 -8
- dlubal/api/rfem/loads/free_concentrated_load_pb2.pyi +70 -51
- dlubal/api/rfem/loads/free_line_load_pb2.py +14 -8
- dlubal/api/rfem/loads/free_line_load_pb2.pyi +108 -63
- dlubal/api/rfem/loads/free_polygon_load_pb2.py +12 -10
- dlubal/api/rfem/loads/free_polygon_load_pb2.pyi +80 -69
- dlubal/api/rfem/loads/free_rectangular_load_pb2.py +18 -14
- dlubal/api/rfem/loads/free_rectangular_load_pb2.pyi +114 -86
- dlubal/api/rfem/loads/imposed_line_deformation_pb2.py +2 -2
- dlubal/api/rfem/loads/imposed_nodal_deformation_pb2.py +2 -2
- dlubal/api/rfem/loads/line_load_pb2.py +26 -13
- dlubal/api/rfem/loads/line_load_pb2.pyi +189 -78
- dlubal/api/rfem/loads/line_set_load_pb2.py +26 -13
- dlubal/api/rfem/loads/line_set_load_pb2.pyi +196 -85
- dlubal/api/rfem/loads/member_load_pb2.py +44 -32
- dlubal/api/rfem/loads/member_load_pb2.pyi +334 -232
- dlubal/api/rfem/loads/member_set_load_pb2.py +44 -32
- dlubal/api/rfem/loads/member_set_load_pb2.pyi +336 -234
- dlubal/api/rfem/loads/nodal_load_pb2.py +14 -12
- dlubal/api/rfem/loads/nodal_load_pb2.pyi +101 -80
- dlubal/api/rfem/loads/opening_load_pb2.py +10 -9
- dlubal/api/rfem/loads/opening_load_pb2.pyi +39 -41
- dlubal/api/rfem/loads/solid_load_pb2.py +18 -18
- dlubal/api/rfem/loads/solid_load_pb2.pyi +81 -89
- dlubal/api/rfem/loads/solid_set_load_pb2.py +18 -18
- dlubal/api/rfem/loads/solid_set_load_pb2.pyi +84 -92
- dlubal/api/rfem/loads/surface_load_pb2.py +30 -22
- dlubal/api/rfem/loads/surface_load_pb2.pyi +203 -148
- dlubal/api/rfem/loads/surface_set_load_pb2.py +30 -22
- dlubal/api/rfem/loads/surface_set_load_pb2.pyi +210 -155
- dlubal/api/rfem/mesh/__init__.py +1 -0
- dlubal/api/rfem/mesh/mesh_settings_pb2.py +51 -0
- dlubal/api/rfem/mesh/mesh_settings_pb2.pyi +218 -0
- dlubal/api/rfem/object_id_pb2.py +39 -0
- dlubal/api/rfem/object_id_pb2.pyi +25 -0
- dlubal/api/rfem/object_type_pb2.py +36 -0
- dlubal/api/rfem/object_type_pb2.pyi +406 -0
- dlubal/api/rfem/result_objects/__init__.py +2 -1
- dlubal/api/rfem/result_objects/result_point_pb2.py +41 -0
- dlubal/api/rfem/result_objects/result_point_pb2.pyi +75 -0
- dlubal/api/rfem/result_objects/result_section_pb2.py +8 -8
- dlubal/api/rfem/result_objects/result_section_pb2.pyi +48 -51
- dlubal/api/rfem/results/__init__.py +4 -2
- dlubal/api/rfem/results/result_table_pb2.py +36 -0
- dlubal/api/rfem/results/result_table_pb2.pyi +1176 -0
- dlubal/api/rfem/results/results_query_pb2.py +7 -6
- dlubal/api/rfem/results/results_query_pb2.pyi +10 -5
- dlubal/api/rfem/results/results_type_pb2.py +36 -0
- dlubal/api/rfem/results/results_type_pb2.pyi +678 -0
- dlubal/api/rfem/results/settings/__init__.py +1 -0
- dlubal/api/rfem/results/settings/result_settings_pb2.py +38 -0
- dlubal/api/rfem/results/settings/result_settings_pb2.pyi +23 -0
- dlubal/api/rfem/rsection_stresses/__init__.py +1 -0
- dlubal/api/rfem/rsection_stresses/member_configuration_pb2.py +41 -0
- dlubal/api/rfem/rsection_stresses/member_configuration_pb2.pyi +53 -0
- dlubal/api/rfem/steel_design_objects/__init__.py +4 -4
- dlubal/api/rfem/steel_design_objects/steel_design_fr_configuration_pb2.py +24 -3
- dlubal/api/rfem/steel_design_objects/steel_design_fr_configuration_pb2.pyi +124 -3
- dlubal/api/rfem/steel_design_objects/steel_design_seismic_configuration_pb2.py +20 -3
- dlubal/api/rfem/steel_design_objects/steel_design_seismic_configuration_pb2.pyi +102 -3
- dlubal/api/rfem/steel_design_objects/steel_design_sls_configuration_pb2.py +108 -3
- dlubal/api/rfem/steel_design_objects/steel_design_sls_configuration_pb2.pyi +594 -3
- dlubal/api/rfem/steel_design_objects/steel_design_uls_configuration_pb2.py +108 -3
- dlubal/api/rfem/steel_design_objects/steel_design_uls_configuration_pb2.pyi +594 -3
- dlubal/api/rfem/steel_joint_design_addon_objects/__init__.py +2 -0
- dlubal/api/rfem/steel_joint_design_addon_objects/joint_stiffness_analysis_configuration_pb2.py +49 -0
- dlubal/api/rfem/steel_joint_design_addon_objects/joint_stiffness_analysis_configuration_pb2.pyi +91 -0
- dlubal/api/rfem/steel_joint_design_addon_objects/joint_uls_configuration_pb2.py +49 -0
- dlubal/api/rfem/steel_joint_design_addon_objects/joint_uls_configuration_pb2.pyi +91 -0
- dlubal/api/rfem/stress_analysis_objects/__init__.py +3 -0
- dlubal/api/rfem/stress_analysis_objects/line_welded_joint_configuration_pb2.py +41 -0
- dlubal/api/rfem/stress_analysis_objects/line_welded_joint_configuration_pb2.pyi +47 -0
- dlubal/api/rfem/stress_analysis_objects/solid_configuration_pb2.py +36 -0
- dlubal/api/rfem/stress_analysis_objects/solid_configuration_pb2.pyi +26 -0
- dlubal/api/rfem/stress_analysis_objects/surface_configuration_pb2.py +36 -0
- dlubal/api/rfem/stress_analysis_objects/surface_configuration_pb2.pyi +26 -0
- dlubal/api/rfem/structure_advanced/__init__.py +13 -9
- dlubal/api/rfem/structure_advanced/block_pb2.py +20 -16
- dlubal/api/rfem/structure_advanced/block_pb2.pyi +99 -83
- dlubal/api/rfem/structure_advanced/cutting_pattern_pb2.py +44 -0
- dlubal/api/rfem/structure_advanced/cutting_pattern_pb2.pyi +71 -0
- dlubal/api/rfem/structure_advanced/design_strip_pb2.py +61 -0
- dlubal/api/rfem/structure_advanced/design_strip_pb2.pyi +460 -0
- dlubal/api/rfem/structure_advanced/design_strip_wizard_pb2.py +53 -0
- dlubal/api/rfem/structure_advanced/design_strip_wizard_pb2.pyi +158 -0
- dlubal/api/rfem/structure_advanced/intersection_pb2.py +2 -2
- dlubal/api/rfem/structure_advanced/intersection_pb2.pyi +8 -8
- dlubal/api/rfem/structure_advanced/line_release_pb2.py +8 -6
- dlubal/api/rfem/structure_advanced/line_release_pb2.pyi +25 -14
- dlubal/api/rfem/structure_advanced/nodal_release_pb2.py +8 -4
- dlubal/api/rfem/structure_advanced/nodal_release_pb2.pyi +30 -11
- dlubal/api/rfem/structure_advanced/rigid_link_pb2.py +6 -6
- dlubal/api/rfem/structure_advanced/rigid_link_pb2.pyi +24 -24
- dlubal/api/rfem/structure_advanced/structure_modification_pb2.py +60 -22
- dlubal/api/rfem/structure_advanced/structure_modification_pb2.pyi +345 -53
- dlubal/api/rfem/structure_advanced/surface_cell_pb2.py +41 -0
- dlubal/api/rfem/structure_advanced/surface_cell_pb2.pyi +74 -0
- dlubal/api/rfem/structure_advanced/surface_release_pb2.py +8 -4
- dlubal/api/rfem/structure_advanced/surface_release_pb2.pyi +30 -11
- dlubal/api/rfem/structure_advanced/surface_results_adjustment_pb2.py +26 -20
- dlubal/api/rfem/structure_advanced/surface_results_adjustment_pb2.pyi +113 -88
- dlubal/api/rfem/structure_advanced/surfaces_contact_pb2.py +4 -2
- dlubal/api/rfem/structure_advanced/surfaces_contact_pb2.pyi +20 -5
- dlubal/api/rfem/structure_core/__init__.py +15 -15
- dlubal/api/rfem/structure_core/line_pb2.py +53 -19
- dlubal/api/rfem/structure_core/line_pb2.pyi +401 -109
- dlubal/api/rfem/structure_core/line_set_pb2.py +4 -4
- dlubal/api/rfem/structure_core/line_set_pb2.pyi +19 -10
- dlubal/api/rfem/structure_core/material_pb2.py +111 -67
- dlubal/api/rfem/structure_core/material_pb2.pyi +1235 -689
- dlubal/api/rfem/structure_core/member_pb2.py +192 -45
- dlubal/api/rfem/structure_core/member_pb2.pyi +2434 -317
- dlubal/api/rfem/structure_core/member_representative_pb2.py +288 -49
- dlubal/api/rfem/structure_core/member_representative_pb2.pyi +4011 -302
- dlubal/api/rfem/structure_core/member_set_pb2.py +122 -19
- dlubal/api/rfem/structure_core/member_set_pb2.pyi +1739 -79
- dlubal/api/rfem/structure_core/member_set_representative_pb2.py +406 -65
- dlubal/api/rfem/structure_core/member_set_representative_pb2.pyi +5761 -393
- dlubal/api/rfem/structure_core/node_pb2.py +14 -8
- dlubal/api/rfem/structure_core/node_pb2.pyi +93 -53
- dlubal/api/rfem/structure_core/opening_pb2.py +2 -2
- dlubal/api/rfem/structure_core/opening_pb2.pyi +12 -8
- dlubal/api/rfem/structure_core/section_pb2.py +42 -32
- dlubal/api/rfem/structure_core/section_pb2.pyi +1582 -1386
- dlubal/api/rfem/structure_core/solid_pb2.py +28 -18
- dlubal/api/rfem/structure_core/solid_pb2.pyi +202 -128
- dlubal/api/rfem/structure_core/solid_set_pb2.py +10 -4
- dlubal/api/rfem/structure_core/solid_set_pb2.pyi +49 -12
- dlubal/api/rfem/structure_core/surface_pb2.py +63 -33
- dlubal/api/rfem/structure_core/surface_pb2.pyi +346 -168
- dlubal/api/rfem/structure_core/surface_set_pb2.py +14 -12
- dlubal/api/rfem/structure_core/surface_set_pb2.pyi +67 -49
- dlubal/api/rfem/structure_core/thickness_pb2.py +42 -30
- dlubal/api/rfem/structure_core/thickness_pb2.pyi +356 -280
- dlubal/api/rfem/timber_design_objects/__init__.py +3 -3
- dlubal/api/rfem/timber_design_objects/timber_design_fr_configuration_pb2.py +92 -3
- dlubal/api/rfem/timber_design_objects/timber_design_fr_configuration_pb2.pyi +498 -3
- dlubal/api/rfem/timber_design_objects/timber_design_sls_configuration_pb2.py +92 -3
- dlubal/api/rfem/timber_design_objects/timber_design_sls_configuration_pb2.pyi +498 -3
- dlubal/api/rfem/timber_design_objects/timber_design_uls_configuration_pb2.py +132 -3
- dlubal/api/rfem/timber_design_objects/timber_design_uls_configuration_pb2.pyi +726 -3
- dlubal/api/rfem/types_for_aluminum_design/__init__.py +4 -3
- dlubal/api/rfem/types_for_aluminum_design/aluminum_boundary_conditions_pb2.py +51 -0
- dlubal/api/rfem/types_for_aluminum_design/aluminum_boundary_conditions_pb2.pyi +192 -0
- dlubal/api/rfem/types_for_aluminum_design/aluminum_effective_lengths_pb2.py +58 -23
- dlubal/api/rfem/types_for_aluminum_design/aluminum_effective_lengths_pb2.pyi +315 -83
- dlubal/api/rfem/types_for_aluminum_design/aluminum_member_local_section_reduction_pb2.py +14 -5
- dlubal/api/rfem/types_for_aluminum_design/aluminum_member_local_section_reduction_pb2.pyi +141 -7
- dlubal/api/rfem/types_for_aluminum_design/aluminum_member_transverse_weld_pb2.py +14 -4
- dlubal/api/rfem/types_for_aluminum_design/aluminum_member_transverse_weld_pb2.pyi +76 -7
- dlubal/api/rfem/types_for_concrete_design/__init__.py +5 -5
- dlubal/api/rfem/types_for_concrete_design/concrete_durability_pb2.py +34 -34
- dlubal/api/rfem/types_for_concrete_design/concrete_durability_pb2.pyi +164 -176
- dlubal/api/rfem/types_for_concrete_design/concrete_effective_lengths_pb2.py +74 -33
- dlubal/api/rfem/types_for_concrete_design/concrete_effective_lengths_pb2.pyi +423 -113
- dlubal/api/rfem/types_for_concrete_design/punching_reinforcement_pb2.py +24 -18
- dlubal/api/rfem/types_for_concrete_design/punching_reinforcement_pb2.pyi +217 -128
- dlubal/api/rfem/types_for_concrete_design/reinforcement_direction_pb2.py +4 -4
- dlubal/api/rfem/types_for_concrete_design/reinforcement_direction_pb2.pyi +13 -14
- dlubal/api/rfem/types_for_concrete_design/surface_reinforcement_pb2.py +47 -39
- dlubal/api/rfem/types_for_concrete_design/surface_reinforcement_pb2.pyi +546 -381
- dlubal/api/rfem/types_for_craneway_design/__init__.py +2 -0
- dlubal/api/rfem/types_for_craneway_design/crane_pb2.py +36 -0
- dlubal/api/rfem/types_for_craneway_design/crane_pb2.pyi +24 -0
- dlubal/api/rfem/types_for_craneway_design/craneway_pb2.py +52 -0
- dlubal/api/rfem/types_for_craneway_design/craneway_pb2.pyi +117 -0
- dlubal/api/rfem/types_for_foundations/__init__.py +1 -0
- dlubal/api/rfem/types_for_foundations/single_foundation_pb2.py +79 -0
- dlubal/api/rfem/types_for_foundations/single_foundation_pb2.pyi +336 -0
- dlubal/api/rfem/types_for_glass_design/__init__.py +1 -0
- dlubal/api/rfem/types_for_glass_design/glass_composition_model_pb2.py +91 -0
- dlubal/api/rfem/types_for_glass_design/glass_composition_model_pb2.pyi +456 -0
- dlubal/api/rfem/types_for_lines/__init__.py +6 -4
- dlubal/api/rfem/types_for_lines/cutting_line_setting_pb2.py +38 -0
- dlubal/api/rfem/types_for_lines/cutting_line_setting_pb2.pyi +30 -0
- dlubal/api/rfem/types_for_lines/line_hinge_pb2.py +121 -69
- dlubal/api/rfem/types_for_lines/line_hinge_pb2.pyi +826 -428
- dlubal/api/rfem/types_for_lines/line_link_pb2.py +43 -0
- dlubal/api/rfem/types_for_lines/line_link_pb2.pyi +66 -0
- dlubal/api/rfem/types_for_lines/line_mesh_refinement_pb2.py +4 -4
- dlubal/api/rfem/types_for_lines/line_mesh_refinement_pb2.pyi +25 -26
- dlubal/api/rfem/types_for_lines/line_support_pb2.py +124 -92
- dlubal/api/rfem/types_for_lines/line_support_pb2.pyi +884 -699
- dlubal/api/rfem/types_for_lines/line_welded_joint_pb2.py +10 -8
- dlubal/api/rfem/types_for_lines/line_welded_joint_pb2.pyi +63 -56
- dlubal/api/rfem/types_for_members/__init__.py +14 -13
- dlubal/api/rfem/types_for_members/design_support_pb2.py +28 -16
- dlubal/api/rfem/types_for_members/design_support_pb2.pyi +206 -119
- dlubal/api/rfem/types_for_members/diagonal_brace_pb2.py +46 -0
- dlubal/api/rfem/types_for_members/diagonal_brace_pb2.pyi +103 -0
- dlubal/api/rfem/types_for_members/member_definable_stiffness_pb2.py +2 -2
- dlubal/api/rfem/types_for_members/member_eccentricity_pb2.py +14 -14
- dlubal/api/rfem/types_for_members/member_eccentricity_pb2.pyi +59 -63
- dlubal/api/rfem/types_for_members/member_hinge_pb2.py +214 -116
- dlubal/api/rfem/types_for_members/member_hinge_pb2.pyi +1286 -742
- dlubal/api/rfem/types_for_members/member_nonlinearity_pb2.py +4 -4
- dlubal/api/rfem/types_for_members/member_nonlinearity_pb2.pyi +40 -41
- dlubal/api/rfem/types_for_members/member_openings_pb2.py +12 -4
- dlubal/api/rfem/types_for_members/member_openings_pb2.pyi +68 -7
- dlubal/api/rfem/types_for_members/member_result_intermediate_point_pb2.py +6 -4
- dlubal/api/rfem/types_for_members/member_result_intermediate_point_pb2.pyi +18 -6
- dlubal/api/rfem/types_for_members/member_rotational_restraint_pb2.py +16 -14
- dlubal/api/rfem/types_for_members/member_rotational_restraint_pb2.pyi +66 -50
- dlubal/api/rfem/types_for_members/member_shear_panel_pb2.py +6 -6
- dlubal/api/rfem/types_for_members/member_shear_panel_pb2.pyi +32 -34
- dlubal/api/rfem/types_for_members/member_spring_pb2.py +18 -16
- dlubal/api/rfem/types_for_members/member_spring_pb2.pyi +90 -80
- dlubal/api/rfem/types_for_members/member_stiffness_modification_pb2.py +14 -12
- dlubal/api/rfem/types_for_members/member_stiffness_modification_pb2.pyi +77 -68
- dlubal/api/rfem/types_for_members/member_support_pb2.py +14 -14
- dlubal/api/rfem/types_for_members/member_support_pb2.pyi +90 -96
- dlubal/api/rfem/types_for_members/member_transverse_stiffener_pb2.py +14 -4
- dlubal/api/rfem/types_for_members/member_transverse_stiffener_pb2.pyi +120 -9
- dlubal/api/rfem/types_for_nodes/__init__.py +3 -2
- dlubal/api/rfem/types_for_nodes/nodal_link_pb2.py +43 -0
- dlubal/api/rfem/types_for_nodes/nodal_link_pb2.pyi +74 -0
- dlubal/api/rfem/types_for_nodes/nodal_mesh_refinement_pb2.py +6 -6
- dlubal/api/rfem/types_for_nodes/nodal_mesh_refinement_pb2.pyi +19 -21
- dlubal/api/rfem/types_for_nodes/nodal_support_pb2.py +176 -136
- dlubal/api/rfem/types_for_nodes/nodal_support_pb2.pyi +1293 -1039
- dlubal/api/rfem/types_for_solids/__init__.py +3 -3
- dlubal/api/rfem/types_for_solids/solid_contacts_pb2.py +6 -6
- dlubal/api/rfem/types_for_solids/solid_contacts_pb2.pyi +27 -29
- dlubal/api/rfem/types_for_solids/solid_gas_pb2.py +2 -2
- dlubal/api/rfem/types_for_solids/solid_gas_pb2.pyi +8 -8
- dlubal/api/rfem/types_for_solids/solid_mesh_refinement_pb2.py +2 -2
- dlubal/api/rfem/types_for_solids/solid_mesh_refinement_pb2.pyi +4 -4
- dlubal/api/rfem/types_for_special_objects/__init__.py +4 -4
- dlubal/api/rfem/types_for_special_objects/line_release_type_pb2.py +122 -71
- dlubal/api/rfem/types_for_special_objects/line_release_type_pb2.pyi +796 -442
- dlubal/api/rfem/types_for_special_objects/nodal_release_type_pb2.py +165 -77
- dlubal/api/rfem/types_for_special_objects/nodal_release_type_pb2.pyi +1215 -564
- dlubal/api/rfem/types_for_special_objects/surface_release_type_pb2.py +46 -34
- dlubal/api/rfem/types_for_special_objects/surface_release_type_pb2.pyi +277 -209
- dlubal/api/rfem/types_for_special_objects/surfaces_contact_type_pb2.py +10 -10
- dlubal/api/rfem/types_for_special_objects/surfaces_contact_type_pb2.pyi +42 -46
- dlubal/api/rfem/types_for_steel_design/__init__.py +4 -3
- dlubal/api/rfem/types_for_steel_design/steel_boundary_conditions_pb2.py +18 -9
- dlubal/api/rfem/types_for_steel_design/steel_boundary_conditions_pb2.pyi +154 -22
- dlubal/api/rfem/types_for_steel_design/steel_effective_lengths_pb2.py +84 -57
- dlubal/api/rfem/types_for_steel_design/steel_effective_lengths_pb2.pyi +423 -236
- dlubal/api/rfem/types_for_steel_design/steel_member_local_section_reduction_pb2.py +14 -5
- dlubal/api/rfem/types_for_steel_design/steel_member_local_section_reduction_pb2.pyi +141 -7
- dlubal/api/rfem/types_for_steel_design/steel_member_transverse_weld_pb2.py +48 -0
- dlubal/api/rfem/types_for_steel_design/steel_member_transverse_weld_pb2.pyi +105 -0
- dlubal/api/rfem/types_for_steel_joints/__init__.py +1 -0
- dlubal/api/rfem/types_for_steel_joints/steel_joint_pb2.py +51 -0
- dlubal/api/rfem/types_for_steel_joints/steel_joint_pb2.pyi +160 -0
- dlubal/api/rfem/types_for_surfaces/__init__.py +4 -4
- dlubal/api/rfem/types_for_surfaces/surface_eccentricity_pb2.py +8 -8
- dlubal/api/rfem/types_for_surfaces/surface_eccentricity_pb2.pyi +28 -31
- dlubal/api/rfem/types_for_surfaces/surface_mesh_refinement_pb2.py +2 -2
- dlubal/api/rfem/types_for_surfaces/surface_mesh_refinement_pb2.pyi +4 -4
- dlubal/api/rfem/types_for_surfaces/surface_stiffness_modification_pb2.py +6 -6
- dlubal/api/rfem/types_for_surfaces/surface_stiffness_modification_pb2.pyi +36 -30
- dlubal/api/rfem/types_for_surfaces/surface_support_pb2.py +8 -8
- dlubal/api/rfem/types_for_surfaces/surface_support_pb2.pyi +37 -38
- dlubal/api/rfem/types_for_timber_design/__init__.py +6 -5
- dlubal/api/rfem/types_for_timber_design/timber_effective_lengths_pb2.py +72 -23
- dlubal/api/rfem/types_for_timber_design/timber_effective_lengths_pb2.pyi +404 -65
- dlubal/api/rfem/types_for_timber_design/timber_member_local_section_reduction_pb2.py +14 -4
- dlubal/api/rfem/types_for_timber_design/timber_member_local_section_reduction_pb2.pyi +96 -7
- dlubal/api/rfem/types_for_timber_design/timber_moisture_class_pb2.py +4 -4
- dlubal/api/rfem/types_for_timber_design/timber_moisture_class_pb2.pyi +17 -14
- dlubal/api/rfem/types_for_timber_design/timber_screw_type_pb2.py +38 -0
- dlubal/api/rfem/types_for_timber_design/timber_screw_type_pb2.pyi +58 -0
- dlubal/api/rfem/types_for_timber_design/timber_service_class_pb2.py +4 -4
- dlubal/api/rfem/types_for_timber_design/timber_service_class_pb2.pyi +17 -14
- dlubal/api/rfem/types_for_timber_design/timber_service_conditions_pb2.py +8 -8
- dlubal/api/rfem/types_for_timber_design/timber_service_conditions_pb2.pyi +61 -56
- dlubal/api/rfem/types_for_wind_simulation/__init__.py +2 -0
- dlubal/api/rfem/types_for_wind_simulation/roughness_and_permeability_pb2.py +40 -0
- dlubal/api/rfem/types_for_wind_simulation/roughness_and_permeability_pb2.pyi +85 -0
- dlubal/api/rfem/types_for_wind_simulation/shrink_wrapping_pb2.py +40 -0
- dlubal/api/rfem/types_for_wind_simulation/shrink_wrapping_pb2.pyi +59 -0
- dlubal/api/rsection/__init__.py +14 -0
- dlubal/api/rsection/all_pb2.py +36 -0
- dlubal/api/rsection/all_pb2.pyi +9 -0
- dlubal/api/rsection/application.py +508 -0
- dlubal/api/rsection/application_pb2.py +48 -0
- dlubal/api/rsection/application_pb2.pyi +39 -0
- dlubal/api/rsection/application_pb2_grpc.py +1293 -0
- dlubal/api/rsection/base_data_pb2.py +58 -0
- dlubal/api/rsection/base_data_pb2.pyi +158 -0
- dlubal/api/rsection/global_parameters/__init__.py +1 -0
- dlubal/api/rsection/global_parameters/global_parameter_pb2.py +40 -0
- dlubal/api/rsection/global_parameters/global_parameter_pb2.pyi +150 -0
- dlubal/api/rsection/guide_objects/__init__.py +4 -0
- dlubal/api/rsection/guide_objects/dimension_pb2.py +71 -0
- dlubal/api/rsection/guide_objects/dimension_pb2.pyi +312 -0
- dlubal/api/rsection/guide_objects/dxf_file_model_object_pb2.py +43 -0
- dlubal/api/rsection/guide_objects/dxf_file_model_object_pb2.pyi +125 -0
- dlubal/api/rsection/guide_objects/group_of_object_selections_pb2.py +38 -0
- dlubal/api/rsection/guide_objects/group_of_object_selections_pb2.pyi +35 -0
- dlubal/api/rsection/guide_objects/object_snap_pb2.py +38 -0
- dlubal/api/rsection/guide_objects/object_snap_pb2.pyi +86 -0
- dlubal/api/rsection/internal_forces/__init__.py +1 -0
- dlubal/api/rsection/internal_forces/internal_forces_pb2.py +38 -0
- dlubal/api/rsection/internal_forces/internal_forces_pb2.pyi +58 -0
- dlubal/api/rsection/loading/__init__.py +2 -0
- dlubal/api/rsection/loading/load_case_pb2.py +38 -0
- dlubal/api/rsection/loading/load_case_pb2.pyi +616 -0
- dlubal/api/rsection/loading/load_combination_pb2.py +42 -0
- dlubal/api/rsection/loading/load_combination_pb2.pyi +113 -0
- dlubal/api/rsection/object_id_pb2.py +39 -0
- dlubal/api/rsection/object_id_pb2.pyi +25 -0
- dlubal/api/rsection/object_type_pb2.py +36 -0
- dlubal/api/rsection/object_type_pb2.pyi +60 -0
- dlubal/api/rsection/results/__init__.py +4 -0
- dlubal/api/rsection/results/result_table_pb2.py +36 -0
- dlubal/api/rsection/results/result_table_pb2.pyi +10 -0
- dlubal/api/rsection/results/results_query_pb2.py +41 -0
- dlubal/api/rsection/results/results_query_pb2.pyi +31 -0
- dlubal/api/rsection/results/results_type_pb2.py +36 -0
- dlubal/api/rsection/results/results_type_pb2.pyi +10 -0
- dlubal/api/rsection/results/settings/__init__.py +1 -0
- dlubal/api/rsection/results/settings/result_settings_pb2.py +38 -0
- dlubal/api/rsection/results/settings/result_settings_pb2.pyi +23 -0
- dlubal/api/rsection/rsection_stresses/__init__.py +1 -0
- dlubal/api/rsection/rsection_stresses/member_configuration_pb2.py +41 -0
- dlubal/api/rsection/rsection_stresses/member_configuration_pb2.pyi +53 -0
- dlubal/api/rsection/structure_advanced/__init__.py +1 -0
- dlubal/api/rsection/structure_advanced/block_pb2.py +55 -0
- dlubal/api/rsection/structure_advanced/block_pb2.pyi +190 -0
- dlubal/api/rsection/structure_core/__init__.py +15 -0
- dlubal/api/rsection/structure_core/bar_pb2.py +40 -0
- dlubal/api/rsection/structure_core/bar_pb2.pyi +102 -0
- dlubal/api/rsection/structure_core/element_pb2.py +53 -0
- dlubal/api/rsection/structure_core/element_pb2.pyi +204 -0
- dlubal/api/rsection/structure_core/layer_group_pb2.py +36 -0
- dlubal/api/rsection/structure_core/layer_group_pb2.pyi +22 -0
- dlubal/api/rsection/structure_core/layer_pb2.py +38 -0
- dlubal/api/rsection/structure_core/layer_pb2.pyi +44 -0
- dlubal/api/rsection/structure_core/line_pb2.py +59 -0
- dlubal/api/rsection/structure_core/line_pb2.pyi +222 -0
- dlubal/api/rsection/structure_core/material_pb2.py +110 -0
- dlubal/api/rsection/structure_core/material_pb2.pyi +1037 -0
- dlubal/api/rsection/structure_core/opening_pb2.py +37 -0
- dlubal/api/rsection/structure_core/opening_pb2.pyi +39 -0
- dlubal/api/rsection/structure_core/part_pb2.py +39 -0
- dlubal/api/rsection/structure_core/part_pb2.pyi +58 -0
- dlubal/api/rsection/structure_core/point_pb2.py +43 -0
- dlubal/api/rsection/structure_core/point_pb2.pyi +109 -0
- dlubal/api/rsection/structure_core/reinforcement_layer_pb2.py +36 -0
- dlubal/api/rsection/structure_core/reinforcement_layer_pb2.pyi +23 -0
- dlubal/api/rsection/structure_core/section_pb2.py +50 -0
- dlubal/api/rsection/structure_core/section_pb2.pyi +1723 -0
- dlubal/api/rsection/structure_core/stirrup_pb2.py +36 -0
- dlubal/api/rsection/structure_core/stirrup_pb2.pyi +42 -0
- dlubal/api/rsection/structure_core/stress_point_pb2.py +45 -0
- dlubal/api/rsection/structure_core/stress_point_pb2.pyi +101 -0
- dlubal/api/rsection/structure_core/subpanel_pb2.py +38 -0
- dlubal/api/rsection/structure_core/subpanel_pb2.pyi +49 -0
- dlubal/api/rsection/structure_core/weld_pb2.py +38 -0
- dlubal/api/rsection/structure_core/weld_pb2.pyi +46 -0
- dlubal/api/rstab/__init__.py +37 -0
- dlubal/api/rstab/all_pb2.py +36 -0
- dlubal/api/rstab/all_pb2.pyi +9 -0
- dlubal/api/rstab/aluminum_design_objects/__init__.py +2 -0
- dlubal/api/rstab/aluminum_design_objects/aluminum_design_sls_configuration_pb2.py +77 -0
- dlubal/api/rstab/aluminum_design_objects/aluminum_design_sls_configuration_pb2.pyi +261 -0
- dlubal/api/rstab/aluminum_design_objects/aluminum_design_uls_configuration_pb2.py +77 -0
- dlubal/api/rstab/aluminum_design_objects/aluminum_design_uls_configuration_pb2.pyi +261 -0
- dlubal/api/rstab/application.py +740 -0
- dlubal/api/rstab/application_pb2.py +69 -0
- dlubal/api/rstab/application_pb2.pyi +121 -0
- dlubal/api/rstab/application_pb2_grpc.py +1736 -0
- dlubal/api/rstab/base_data_objects/__init__.py +1 -0
- dlubal/api/rstab/base_data_objects/terrain_pb2.py +42 -0
- dlubal/api/rstab/base_data_objects/terrain_pb2.pyi +71 -0
- dlubal/api/rstab/base_data_pb2.py +92 -0
- dlubal/api/rstab/base_data_pb2.pyi +2361 -0
- dlubal/api/rstab/calculation_diagrams/__init__.py +1 -0
- dlubal/api/rstab/calculation_diagrams/calculation_diagram_pb2.py +61 -0
- dlubal/api/rstab/calculation_diagrams/calculation_diagram_pb2.pyi +1762 -0
- dlubal/api/rstab/concrete_design_objects/__init__.py +4 -0
- dlubal/api/rstab/concrete_design_objects/concrete_design_fr_configuration_pb2.py +93 -0
- dlubal/api/rstab/concrete_design_objects/concrete_design_fr_configuration_pb2.pyi +369 -0
- dlubal/api/rstab/concrete_design_objects/concrete_design_seismic_configuration_pb2.py +57 -0
- dlubal/api/rstab/concrete_design_objects/concrete_design_seismic_configuration_pb2.pyi +171 -0
- dlubal/api/rstab/concrete_design_objects/concrete_design_sls_configuration_pb2.py +61 -0
- dlubal/api/rstab/concrete_design_objects/concrete_design_sls_configuration_pb2.pyi +181 -0
- dlubal/api/rstab/concrete_design_objects/concrete_design_uls_configuration_pb2.py +109 -0
- dlubal/api/rstab/concrete_design_objects/concrete_design_uls_configuration_pb2.pyi +445 -0
- dlubal/api/rstab/design_addons_pb2.py +36 -0
- dlubal/api/rstab/design_addons_pb2.pyi +22 -0
- dlubal/api/rstab/dynamic_analysis_pb2.py +36 -0
- dlubal/api/rstab/dynamic_analysis_pb2.pyi +23 -0
- dlubal/api/rstab/dynamic_loads/__init__.py +3 -0
- dlubal/api/rstab/dynamic_loads/accelerogram_pb2.py +42 -0
- dlubal/api/rstab/dynamic_loads/accelerogram_pb2.pyi +67 -0
- dlubal/api/rstab/dynamic_loads/response_spectrum_pb2.py +44 -0
- dlubal/api/rstab/dynamic_loads/response_spectrum_pb2.pyi +91 -0
- dlubal/api/rstab/dynamic_loads/time_diagram_pb2.py +46 -0
- dlubal/api/rstab/dynamic_loads/time_diagram_pb2.pyi +83 -0
- dlubal/api/rstab/foundation_design_objects/__init__.py +2 -0
- dlubal/api/rstab/foundation_design_objects/concrete_design_configuration_pb2.py +41 -0
- dlubal/api/rstab/foundation_design_objects/concrete_design_configuration_pb2.pyi +47 -0
- dlubal/api/rstab/foundation_design_objects/geotechnical_design_configuration_pb2.py +41 -0
- dlubal/api/rstab/foundation_design_objects/geotechnical_design_configuration_pb2.pyi +47 -0
- dlubal/api/rstab/global_parameters/__init__.py +1 -0
- dlubal/api/rstab/global_parameters/global_parameter_pb2.py +40 -0
- dlubal/api/rstab/global_parameters/global_parameter_pb2.pyi +278 -0
- dlubal/api/rstab/guide_objects/__init__.py +15 -0
- dlubal/api/rstab/guide_objects/building_grid_pb2.py +53 -0
- dlubal/api/rstab/guide_objects/building_grid_pb2.pyi +207 -0
- dlubal/api/rstab/guide_objects/clipping_box_pb2.py +37 -0
- dlubal/api/rstab/guide_objects/clipping_box_pb2.pyi +40 -0
- dlubal/api/rstab/guide_objects/clipping_plane_pb2.py +45 -0
- dlubal/api/rstab/guide_objects/clipping_plane_pb2.pyi +121 -0
- dlubal/api/rstab/guide_objects/coordinate_system_pb2.py +41 -0
- dlubal/api/rstab/guide_objects/coordinate_system_pb2.pyi +91 -0
- dlubal/api/rstab/guide_objects/dimension_pb2.py +69 -0
- dlubal/api/rstab/guide_objects/dimension_pb2.pyi +280 -0
- dlubal/api/rstab/guide_objects/dxf_file_model_object_pb2.py +41 -0
- dlubal/api/rstab/guide_objects/dxf_file_model_object_pb2.pyi +121 -0
- dlubal/api/rstab/guide_objects/dxf_model_object_pb2.py +36 -0
- dlubal/api/rstab/guide_objects/dxf_model_object_pb2.pyi +15 -0
- dlubal/api/rstab/guide_objects/group_of_object_selections_pb2.py +38 -0
- dlubal/api/rstab/guide_objects/group_of_object_selections_pb2.pyi +35 -0
- dlubal/api/rstab/guide_objects/guideline_pb2.py +42 -0
- dlubal/api/rstab/guide_objects/guideline_pb2.pyi +90 -0
- dlubal/api/rstab/guide_objects/layer_group_pb2.py +36 -0
- dlubal/api/rstab/guide_objects/layer_group_pb2.pyi +22 -0
- dlubal/api/rstab/guide_objects/layer_pb2.py +38 -0
- dlubal/api/rstab/guide_objects/layer_pb2.pyi +44 -0
- dlubal/api/rstab/guide_objects/note_pb2.py +43 -0
- dlubal/api/rstab/guide_objects/note_pb2.pyi +117 -0
- dlubal/api/rstab/guide_objects/object_snap_pb2.py +38 -0
- dlubal/api/rstab/guide_objects/object_snap_pb2.pyi +86 -0
- dlubal/api/rstab/guide_objects/texture_pb2.py +36 -0
- dlubal/api/rstab/guide_objects/texture_pb2.pyi +41 -0
- dlubal/api/rstab/guide_objects/visual_object_pb2.py +43 -0
- dlubal/api/rstab/guide_objects/visual_object_pb2.pyi +135 -0
- dlubal/api/rstab/ifc_objects/__init__.py +2 -0
- dlubal/api/rstab/ifc_objects/ifc_file_model_object_pb2.py +46 -0
- dlubal/api/rstab/ifc_objects/ifc_file_model_object_pb2.pyi +98 -0
- dlubal/api/rstab/ifc_objects/ifc_model_object_pb2.py +38 -0
- dlubal/api/rstab/ifc_objects/ifc_model_object_pb2.pyi +32 -0
- dlubal/api/rstab/imperfections/__init__.py +3 -0
- dlubal/api/rstab/imperfections/imperfection_case_pb2.py +60 -0
- dlubal/api/rstab/imperfections/imperfection_case_pb2.pyi +215 -0
- dlubal/api/rstab/imperfections/member_imperfection_pb2.py +50 -0
- dlubal/api/rstab/imperfections/member_imperfection_pb2.pyi +205 -0
- dlubal/api/rstab/imperfections/member_set_imperfection_pb2.py +50 -0
- dlubal/api/rstab/imperfections/member_set_imperfection_pb2.pyi +203 -0
- dlubal/api/rstab/load_wizards/__init__.py +7 -0
- dlubal/api/rstab/load_wizards/import_support_reactions_pb2.py +46 -0
- dlubal/api/rstab/load_wizards/import_support_reactions_pb2.pyi +89 -0
- dlubal/api/rstab/load_wizards/load_model_pb2.py +50 -0
- dlubal/api/rstab/load_wizards/load_model_pb2.pyi +113 -0
- dlubal/api/rstab/load_wizards/member_loads_from_area_load_pb2.py +46 -0
- dlubal/api/rstab/load_wizards/member_loads_from_area_load_pb2.pyi +93 -0
- dlubal/api/rstab/load_wizards/member_loads_from_free_line_load_pb2.py +45 -0
- dlubal/api/rstab/load_wizards/member_loads_from_free_line_load_pb2.pyi +110 -0
- dlubal/api/rstab/load_wizards/moving_load_pb2.py +52 -0
- dlubal/api/rstab/load_wizards/moving_load_pb2.pyi +715 -0
- dlubal/api/rstab/load_wizards/wind_profile_pb2.py +48 -0
- dlubal/api/rstab/load_wizards/wind_profile_pb2.pyi +777 -0
- dlubal/api/rstab/load_wizards/wind_simulation_pb2.py +55 -0
- dlubal/api/rstab/load_wizards/wind_simulation_pb2.pyi +148 -0
- dlubal/api/rstab/loading/__init__.py +16 -0
- dlubal/api/rstab/loading/action_combination_pb2.py +48 -0
- dlubal/api/rstab/loading/action_combination_pb2.pyi +153 -0
- dlubal/api/rstab/loading/action_pb2.py +54 -0
- dlubal/api/rstab/loading/action_pb2.pyi +719 -0
- dlubal/api/rstab/loading/combination_wizard_pb2.py +47 -0
- dlubal/api/rstab/loading/combination_wizard_pb2.pyi +106 -0
- dlubal/api/rstab/loading/design_situation_pb2.py +47 -0
- dlubal/api/rstab/loading/design_situation_pb2.pyi +1196 -0
- dlubal/api/rstab/loading/load_case_pb2.py +102 -0
- dlubal/api/rstab/loading/load_case_pb2.pyi +1365 -0
- dlubal/api/rstab/loading/load_combination_pb2.py +65 -0
- dlubal/api/rstab/loading/load_combination_pb2.pyi +384 -0
- dlubal/api/rstab/loading/modal_analysis_settings_pb2.py +52 -0
- dlubal/api/rstab/loading/modal_analysis_settings_pb2.pyi +147 -0
- dlubal/api/rstab/loading/optimization_settings_pb2.py +46 -0
- dlubal/api/rstab/loading/optimization_settings_pb2.pyi +111 -0
- dlubal/api/rstab/loading/pushover_analysis_settings_pb2.py +38 -0
- dlubal/api/rstab/loading/pushover_analysis_settings_pb2.pyi +50 -0
- dlubal/api/rstab/loading/relationship_between_load_cases_pb2.py +44 -0
- dlubal/api/rstab/loading/relationship_between_load_cases_pb2.pyi +66 -0
- dlubal/api/rstab/loading/result_combination_pb2.py +59 -0
- dlubal/api/rstab/loading/result_combination_pb2.pyi +300 -0
- dlubal/api/rstab/loading/spectral_analysis_settings_pb2.py +46 -0
- dlubal/api/rstab/loading/spectral_analysis_settings_pb2.pyi +80 -0
- dlubal/api/rstab/loading/stability_analysis_settings_pb2.py +44 -0
- dlubal/api/rstab/loading/stability_analysis_settings_pb2.pyi +114 -0
- dlubal/api/rstab/loading/static_analysis_settings_pb2.py +42 -0
- dlubal/api/rstab/loading/static_analysis_settings_pb2.pyi +110 -0
- dlubal/api/rstab/loading/time_history_analysis_settings_pb2.py +54 -0
- dlubal/api/rstab/loading/time_history_analysis_settings_pb2.pyi +159 -0
- dlubal/api/rstab/loading/wind_simulation_analysis_settings_pb2.py +52 -0
- dlubal/api/rstab/loading/wind_simulation_analysis_settings_pb2.pyi +176 -0
- dlubal/api/rstab/loads/__init__.py +5 -0
- dlubal/api/rstab/loads/additional_foundation_load_pb2.py +41 -0
- dlubal/api/rstab/loads/additional_foundation_load_pb2.pyi +80 -0
- dlubal/api/rstab/loads/imposed_nodal_deformation_pb2.py +37 -0
- dlubal/api/rstab/loads/imposed_nodal_deformation_pb2.pyi +43 -0
- dlubal/api/rstab/loads/member_load_pb2.py +79 -0
- dlubal/api/rstab/loads/member_load_pb2.pyi +492 -0
- dlubal/api/rstab/loads/member_set_load_pb2.py +79 -0
- dlubal/api/rstab/loads/member_set_load_pb2.pyi +490 -0
- dlubal/api/rstab/loads/nodal_load_pb2.py +49 -0
- dlubal/api/rstab/loads/nodal_load_pb2.pyi +224 -0
- dlubal/api/rstab/object_id_pb2.py +39 -0
- dlubal/api/rstab/object_id_pb2.pyi +25 -0
- dlubal/api/rstab/object_type_pb2.py +36 -0
- dlubal/api/rstab/object_type_pb2.pyi +248 -0
- dlubal/api/rstab/results/__init__.py +4 -0
- dlubal/api/rstab/results/result_table_pb2.py +36 -0
- dlubal/api/rstab/results/result_table_pb2.pyi +480 -0
- dlubal/api/rstab/results/results_query_pb2.py +41 -0
- dlubal/api/rstab/results/results_query_pb2.pyi +31 -0
- dlubal/api/rstab/results/results_type_pb2.py +36 -0
- dlubal/api/rstab/results/results_type_pb2.pyi +338 -0
- dlubal/api/rstab/results/settings/__init__.py +1 -0
- dlubal/api/rstab/results/settings/result_settings_pb2.py +38 -0
- dlubal/api/rstab/results/settings/result_settings_pb2.pyi +23 -0
- dlubal/api/rstab/rsection_stresses/__init__.py +1 -0
- dlubal/api/rstab/rsection_stresses/member_configuration_pb2.py +41 -0
- dlubal/api/rstab/rsection_stresses/member_configuration_pb2.pyi +53 -0
- dlubal/api/rstab/steel_design_objects/__init__.py +4 -0
- dlubal/api/rstab/steel_design_objects/steel_design_fr_configuration_pb2.py +57 -0
- dlubal/api/rstab/steel_design_objects/steel_design_fr_configuration_pb2.pyi +143 -0
- dlubal/api/rstab/steel_design_objects/steel_design_seismic_configuration_pb2.py +53 -0
- dlubal/api/rstab/steel_design_objects/steel_design_seismic_configuration_pb2.pyi +121 -0
- dlubal/api/rstab/steel_design_objects/steel_design_sls_configuration_pb2.py +141 -0
- dlubal/api/rstab/steel_design_objects/steel_design_sls_configuration_pb2.pyi +613 -0
- dlubal/api/rstab/steel_design_objects/steel_design_uls_configuration_pb2.py +141 -0
- dlubal/api/rstab/steel_design_objects/steel_design_uls_configuration_pb2.pyi +613 -0
- dlubal/api/rstab/structure_advanced/__init__.py +4 -0
- dlubal/api/rstab/structure_advanced/block_pb2.py +55 -0
- dlubal/api/rstab/structure_advanced/block_pb2.pyi +192 -0
- dlubal/api/rstab/structure_advanced/cutting_pattern_pb2.py +44 -0
- dlubal/api/rstab/structure_advanced/cutting_pattern_pb2.pyi +71 -0
- dlubal/api/rstab/structure_advanced/nodal_release_pb2.py +42 -0
- dlubal/api/rstab/structure_advanced/nodal_release_pb2.pyi +61 -0
- dlubal/api/rstab/structure_advanced/structure_modification_pb2.py +66 -0
- dlubal/api/rstab/structure_advanced/structure_modification_pb2.pyi +255 -0
- dlubal/api/rstab/structure_core/__init__.py +7 -0
- dlubal/api/rstab/structure_core/material_pb2.py +112 -0
- dlubal/api/rstab/structure_core/material_pb2.pyi +1047 -0
- dlubal/api/rstab/structure_core/member_pb2.py +214 -0
- dlubal/api/rstab/structure_core/member_pb2.pyi +2525 -0
- dlubal/api/rstab/structure_core/member_representative_pb2.py +310 -0
- dlubal/api/rstab/structure_core/member_representative_pb2.pyi +4141 -0
- dlubal/api/rstab/structure_core/member_set_pb2.py +156 -0
- dlubal/api/rstab/structure_core/member_set_pb2.pyi +1885 -0
- dlubal/api/rstab/structure_core/member_set_representative_pb2.py +430 -0
- dlubal/api/rstab/structure_core/member_set_representative_pb2.pyi +6065 -0
- dlubal/api/rstab/structure_core/node_pb2.py +49 -0
- dlubal/api/rstab/structure_core/node_pb2.pyi +174 -0
- dlubal/api/rstab/structure_core/section_pb2.py +76 -0
- dlubal/api/rstab/structure_core/section_pb2.pyi +2135 -0
- dlubal/api/rstab/timber_design_objects/__init__.py +3 -0
- dlubal/api/rstab/timber_design_objects/timber_design_fr_configuration_pb2.py +125 -0
- dlubal/api/rstab/timber_design_objects/timber_design_fr_configuration_pb2.pyi +517 -0
- dlubal/api/rstab/timber_design_objects/timber_design_sls_configuration_pb2.py +125 -0
- dlubal/api/rstab/timber_design_objects/timber_design_sls_configuration_pb2.pyi +517 -0
- dlubal/api/rstab/timber_design_objects/timber_design_uls_configuration_pb2.py +165 -0
- dlubal/api/rstab/timber_design_objects/timber_design_uls_configuration_pb2.pyi +745 -0
- dlubal/api/rstab/types_for_aluminum_design/__init__.py +4 -0
- dlubal/api/rstab/types_for_aluminum_design/aluminum_boundary_conditions_pb2.py +51 -0
- dlubal/api/rstab/types_for_aluminum_design/aluminum_boundary_conditions_pb2.pyi +188 -0
- dlubal/api/rstab/types_for_aluminum_design/aluminum_effective_lengths_pb2.py +91 -0
- dlubal/api/rstab/types_for_aluminum_design/aluminum_effective_lengths_pb2.pyi +382 -0
- dlubal/api/rstab/types_for_aluminum_design/aluminum_member_local_section_reduction_pb2.py +47 -0
- dlubal/api/rstab/types_for_aluminum_design/aluminum_member_local_section_reduction_pb2.pyi +166 -0
- dlubal/api/rstab/types_for_aluminum_design/aluminum_member_transverse_weld_pb2.py +48 -0
- dlubal/api/rstab/types_for_aluminum_design/aluminum_member_transverse_weld_pb2.pyi +101 -0
- dlubal/api/rstab/types_for_concrete_design/__init__.py +2 -0
- dlubal/api/rstab/types_for_concrete_design/concrete_durability_pb2.py +68 -0
- dlubal/api/rstab/types_for_concrete_design/concrete_durability_pb2.pyi +251 -0
- dlubal/api/rstab/types_for_concrete_design/concrete_effective_lengths_pb2.py +107 -0
- dlubal/api/rstab/types_for_concrete_design/concrete_effective_lengths_pb2.pyi +496 -0
- dlubal/api/rstab/types_for_craneway_design/__init__.py +2 -0
- dlubal/api/rstab/types_for_craneway_design/crane_pb2.py +36 -0
- dlubal/api/rstab/types_for_craneway_design/crane_pb2.pyi +24 -0
- dlubal/api/rstab/types_for_craneway_design/craneway_pb2.py +52 -0
- dlubal/api/rstab/types_for_craneway_design/craneway_pb2.pyi +117 -0
- dlubal/api/rstab/types_for_foundations/__init__.py +1 -0
- dlubal/api/rstab/types_for_foundations/single_foundation_pb2.py +79 -0
- dlubal/api/rstab/types_for_foundations/single_foundation_pb2.pyi +334 -0
- dlubal/api/rstab/types_for_members/__init__.py +13 -0
- dlubal/api/rstab/types_for_members/design_support_pb2.py +62 -0
- dlubal/api/rstab/types_for_members/design_support_pb2.pyi +249 -0
- dlubal/api/rstab/types_for_members/diagonal_brace_pb2.py +46 -0
- dlubal/api/rstab/types_for_members/diagonal_brace_pb2.pyi +99 -0
- dlubal/api/rstab/types_for_members/member_definable_stiffness_pb2.py +36 -0
- dlubal/api/rstab/types_for_members/member_definable_stiffness_pb2.pyi +52 -0
- dlubal/api/rstab/types_for_members/member_eccentricity_pb2.py +49 -0
- dlubal/api/rstab/types_for_members/member_eccentricity_pb2.pyi +107 -0
- dlubal/api/rstab/types_for_members/member_hinge_pb2.py +249 -0
- dlubal/api/rstab/types_for_members/member_hinge_pb2.pyi +1770 -0
- dlubal/api/rstab/types_for_members/member_nonlinearity_pb2.py +38 -0
- dlubal/api/rstab/types_for_members/member_nonlinearity_pb2.pyi +61 -0
- dlubal/api/rstab/types_for_members/member_result_intermediate_point_pb2.py +40 -0
- dlubal/api/rstab/types_for_members/member_result_intermediate_point_pb2.pyi +52 -0
- dlubal/api/rstab/types_for_members/member_rotational_restraint_pb2.py +50 -0
- dlubal/api/rstab/types_for_members/member_rotational_restraint_pb2.pyi +127 -0
- dlubal/api/rstab/types_for_members/member_shear_panel_pb2.py +40 -0
- dlubal/api/rstab/types_for_members/member_shear_panel_pb2.pyi +80 -0
- dlubal/api/rstab/types_for_members/member_spring_pb2.py +52 -0
- dlubal/api/rstab/types_for_members/member_spring_pb2.pyi +149 -0
- dlubal/api/rstab/types_for_members/member_stiffness_modification_pb2.py +48 -0
- dlubal/api/rstab/types_for_members/member_stiffness_modification_pb2.pyi +139 -0
- dlubal/api/rstab/types_for_members/member_support_pb2.py +49 -0
- dlubal/api/rstab/types_for_members/member_support_pb2.pyi +156 -0
- dlubal/api/rstab/types_for_members/member_transverse_stiffener_pb2.py +48 -0
- dlubal/api/rstab/types_for_members/member_transverse_stiffener_pb2.pyi +143 -0
- dlubal/api/rstab/types_for_nodes/__init__.py +2 -0
- dlubal/api/rstab/types_for_nodes/nodal_link_pb2.py +43 -0
- dlubal/api/rstab/types_for_nodes/nodal_link_pb2.pyi +74 -0
- dlubal/api/rstab/types_for_nodes/nodal_support_pb2.py +211 -0
- dlubal/api/rstab/types_for_nodes/nodal_support_pb2.pyi +1444 -0
- dlubal/api/rstab/types_for_special_objects/__init__.py +1 -0
- dlubal/api/rstab/types_for_special_objects/nodal_release_type_pb2.py +198 -0
- dlubal/api/rstab/types_for_special_objects/nodal_release_type_pb2.pyi +1381 -0
- dlubal/api/rstab/types_for_steel_design/__init__.py +4 -0
- dlubal/api/rstab/types_for_steel_design/steel_boundary_conditions_pb2.py +51 -0
- dlubal/api/rstab/types_for_steel_design/steel_boundary_conditions_pb2.pyi +188 -0
- dlubal/api/rstab/types_for_steel_design/steel_effective_lengths_pb2.py +117 -0
- dlubal/api/rstab/types_for_steel_design/steel_effective_lengths_pb2.pyi +524 -0
- dlubal/api/rstab/types_for_steel_design/steel_member_local_section_reduction_pb2.py +47 -0
- dlubal/api/rstab/types_for_steel_design/steel_member_local_section_reduction_pb2.pyi +166 -0
- dlubal/api/rstab/types_for_steel_design/steel_member_transverse_weld_pb2.py +48 -0
- dlubal/api/rstab/types_for_steel_design/steel_member_transverse_weld_pb2.pyi +101 -0
- dlubal/api/rstab/types_for_timber_design/__init__.py +6 -0
- dlubal/api/rstab/types_for_timber_design/timber_effective_lengths_pb2.py +105 -0
- dlubal/api/rstab/types_for_timber_design/timber_effective_lengths_pb2.pyi +478 -0
- dlubal/api/rstab/types_for_timber_design/timber_member_local_section_reduction_pb2.py +48 -0
- dlubal/api/rstab/types_for_timber_design/timber_member_local_section_reduction_pb2.pyi +121 -0
- dlubal/api/rstab/types_for_timber_design/timber_moisture_class_pb2.py +38 -0
- dlubal/api/rstab/types_for_timber_design/timber_moisture_class_pb2.pyi +41 -0
- dlubal/api/rstab/types_for_timber_design/timber_screw_type_pb2.py +38 -0
- dlubal/api/rstab/types_for_timber_design/timber_screw_type_pb2.pyi +58 -0
- dlubal/api/rstab/types_for_timber_design/timber_service_class_pb2.py +38 -0
- dlubal/api/rstab/types_for_timber_design/timber_service_class_pb2.pyi +41 -0
- dlubal/api/rstab/types_for_timber_design/timber_service_conditions_pb2.py +42 -0
- dlubal/api/rstab/types_for_timber_design/timber_service_conditions_pb2.pyi +107 -0
- dlubal/api/rstab/types_for_wind_simulation/__init__.py +2 -0
- dlubal/api/rstab/types_for_wind_simulation/roughness_and_permeability_pb2.py +40 -0
- dlubal/api/rstab/types_for_wind_simulation/roughness_and_permeability_pb2.pyi +81 -0
- dlubal/api/rstab/types_for_wind_simulation/shrink_wrapping_pb2.py +40 -0
- dlubal/api/rstab/types_for_wind_simulation/shrink_wrapping_pb2.pyi +55 -0
- dlubal_api-2.12.2.dist-info/METADATA +76 -0
- dlubal_api-2.12.2.dist-info/RECORD +927 -0
- {dlubal.api-0.1.293714a1.dist-info → dlubal_api-2.12.2.dist-info}/WHEEL +1 -1
- dlubal_api-2.12.2.dist-info/top_level.txt +3 -0
- examples/rfem/base_data.py +26 -0
- examples/rfem/block.py +29 -0
- examples/rfem/bus_station.py +395 -0
- examples/rfem/cantilever.py +172 -0
- examples/rfem/column.py +185 -0
- examples/rfem/component_design.py +161 -0
- examples/rfem/demo_limits.py +373 -0
- examples/rfem/design_configuration.py +71 -0
- examples/rfem/design_settings.py +37 -0
- examples/rfem/excel.py +86 -0
- examples/rfem/export_model_to.py +159 -0
- examples/rfem/frame.py +285 -0
- examples/rfem/import_from_ifc.py +60 -0
- examples/rfem/import_from_rsection.py +107 -0
- examples/rfem/import_from_xml.py +29 -0
- examples/rfem/material_user_defined.py +25 -0
- examples/rfem/mesh_settings.py +25 -0
- examples/rfem/multiple_models.py +1608 -0
- examples/rfem/nested_tables.py +81 -0
- examples/rfem/pydantic_streamlit.py +101 -0
- examples/rfem/results_access.py +38 -0
- examples/rfem/results_axes_system.py +53 -0
- examples/rfem/results_design_addons.py +58 -0
- examples/rfem/results_filtering.py +43 -0
- examples/rfem/results_in_location.py +39 -0
- examples/rfem/results_multiple_models.py +45 -0
- examples/rfem/sectioned_roof.py +449 -0
- examples/rfem/select_objects.py +39 -0
- examples/rfem/silo.py +750 -0
- examples/rfem/steel_design_configuration.py +27 -0
- examples/rfem/steel_hall.py +670 -0
- examples/rfem/steel_station.py +890 -0
- examples/rfem/tank_wind_load.py +180 -0
- examples/rsection/base_data.py +20 -0
- examples/rsection/steel_section.py +114 -0
- examples/rstab/base_data.py +25 -0
- examples/rstab/cantilever.py +166 -0
- examples/rstab/column.py +184 -0
- examples/rstab/dataframe.py +20 -0
- examples/rstab/design_settings.py +37 -0
- examples/rstab/excel.py +86 -0
- examples/rstab/export_model_to.py +154 -0
- examples/rstab/frame.py +285 -0
- examples/rstab/import_from_ifc.py +46 -0
- examples/rstab/import_from_rsection.py +107 -0
- examples/rstab/import_from_xml.py +29 -0
- examples/rstab/multiple_models.py +1358 -0
- examples/rstab/nested_tables.py +29 -0
- examples/rstab/pydantic_streamlit.py +101 -0
- examples/rstab/results_access.py +38 -0
- examples/rstab/results_axes_system.py +53 -0
- examples/rstab/results_in_location.py +39 -0
- examples/rstab/results_multiple_models.py +40 -0
- examples/rstab/select_objects.py +39 -0
- google/protobuf/any_pb2.py +37 -0
- google/protobuf/any_pb2.pyi +14 -0
- google/protobuf/descriptor_pb2.py +3363 -0
- google/protobuf/descriptor_pb2.pyi +723 -0
- google/protobuf/empty_pb2.py +37 -0
- google/protobuf/empty_pb2.pyi +9 -0
- google/protobuf/wrappers_pb2.py +53 -0
- google/protobuf/wrappers_pb2.pyi +59 -0
- dlubal/api/rfem/base_data/terrain_pb2.py +0 -40
- dlubal/api/rfem/base_data/terrain_pb2.pyi +0 -53
- dlubal/api/rfem/imperfections/surface_imperfection_pb2.py +0 -40
- dlubal/api/rfem/imperfections/surface_imperfection_pb2.pyi +0 -55
- dlubal/api/rfem/imperfections/surface_set_imperfection_pb2.py +0 -40
- dlubal/api/rfem/imperfections/surface_set_imperfection_pb2.pyi +0 -55
- dlubal/api/rfem/packing.py +0 -45
- dlubal/api/rfem/results/results_id_pb2.pyi +0 -14
- dlubal.api-0.1.293714a1.dist-info/METADATA +0 -40
- dlubal.api-0.1.293714a1.dist-info/RECORD +0 -342
- dlubal.api-0.1.293714a1.dist-info/top_level.txt +0 -1
|
@@ -0,0 +1,890 @@
|
|
|
1
|
+
from math import inf, pi
|
|
2
|
+
from dlubal.api import rfem
|
|
3
|
+
|
|
4
|
+
# Basic Settings
|
|
5
|
+
n_u = 3
|
|
6
|
+
n = 18
|
|
7
|
+
n_s = 11
|
|
8
|
+
|
|
9
|
+
purlins_1 = True
|
|
10
|
+
purlins_2 = True
|
|
11
|
+
|
|
12
|
+
W = 8
|
|
13
|
+
d = 0.5
|
|
14
|
+
|
|
15
|
+
L = 30
|
|
16
|
+
H = 7
|
|
17
|
+
h_1 = 3
|
|
18
|
+
h_2 = 5
|
|
19
|
+
R_1 = None
|
|
20
|
+
R_2 = None
|
|
21
|
+
|
|
22
|
+
L_s = 12
|
|
23
|
+
H_1 = 4.5
|
|
24
|
+
H_2 = 6
|
|
25
|
+
h = 1
|
|
26
|
+
|
|
27
|
+
section_top_chord_center = 1
|
|
28
|
+
section_bottom_chord_center = 1
|
|
29
|
+
section_diagonals_center = 1
|
|
30
|
+
section_columns_center = 1
|
|
31
|
+
section_girders_center = 1
|
|
32
|
+
section_purlins_center = 1
|
|
33
|
+
|
|
34
|
+
section_top_chord_side = 1
|
|
35
|
+
section_bottom_chord_side = 1
|
|
36
|
+
section_diagonals_side = 1
|
|
37
|
+
section_columns_side = 1
|
|
38
|
+
section_girders_side = 1
|
|
39
|
+
section_purlins_side = 1
|
|
40
|
+
|
|
41
|
+
thickness_material = 1
|
|
42
|
+
thickness_roof_slab_center = 1
|
|
43
|
+
roof_slab_center_thick = 0.2
|
|
44
|
+
thickness_roof_slab_side = 2
|
|
45
|
+
roof_slab_side_thick = 0.2
|
|
46
|
+
|
|
47
|
+
R_1 = h_1 / 2 + (L ** 2) / (8 * h_1)
|
|
48
|
+
R_2 = h_2 / 2 + (L ** 2) / (8 * h_2)
|
|
49
|
+
|
|
50
|
+
# Connect to the RFEM application
|
|
51
|
+
with rfem.Application() as rfem_app:
|
|
52
|
+
|
|
53
|
+
# Close all models opened in application without saving
|
|
54
|
+
rfem_app.close_all_models(save_changes=False)
|
|
55
|
+
|
|
56
|
+
# Create new model named 'steel_station'
|
|
57
|
+
rfem_app.create_model(name='steel_station')
|
|
58
|
+
|
|
59
|
+
# Cleanup the model
|
|
60
|
+
rfem_app.delete_all_objects()
|
|
61
|
+
|
|
62
|
+
material_section_thickness = [
|
|
63
|
+
rfem.structure_core.Material(
|
|
64
|
+
no=1,
|
|
65
|
+
name='S235 | CYS EN 1993-1-1:2009-03'),
|
|
66
|
+
|
|
67
|
+
rfem.structure_core.Material(
|
|
68
|
+
no=2,
|
|
69
|
+
name='C12/15'),
|
|
70
|
+
|
|
71
|
+
rfem.structure_core.Section(
|
|
72
|
+
no=1,
|
|
73
|
+
name='IPE 200 | -- | British Steel',
|
|
74
|
+
material=1),
|
|
75
|
+
|
|
76
|
+
rfem.structure_core.Thickness(
|
|
77
|
+
no=thickness_roof_slab_center,
|
|
78
|
+
user_defined_name_enabled=True, name='Roof',
|
|
79
|
+
uniform_thickness=roof_slab_center_thick,
|
|
80
|
+
material=thickness_material),
|
|
81
|
+
|
|
82
|
+
rfem.structure_core.Thickness(
|
|
83
|
+
no=thickness_roof_slab_side,
|
|
84
|
+
user_defined_name_enabled=True,
|
|
85
|
+
name='Roof',
|
|
86
|
+
uniform_thickness=roof_slab_side_thick,
|
|
87
|
+
material=thickness_material)
|
|
88
|
+
]
|
|
89
|
+
rfem_app.create_object_list(material_section_thickness)
|
|
90
|
+
|
|
91
|
+
supports = []
|
|
92
|
+
L_1 = L / n
|
|
93
|
+
node_count = 1
|
|
94
|
+
nodes_list = []
|
|
95
|
+
|
|
96
|
+
for j in range(n_u + 1):
|
|
97
|
+
|
|
98
|
+
nodes_list.append(
|
|
99
|
+
rfem.structure_core.Node(
|
|
100
|
+
no=node_count,
|
|
101
|
+
coordinate_1=0.0,
|
|
102
|
+
coordinate_2=j * W,
|
|
103
|
+
coordinate_3=-H))
|
|
104
|
+
node_count += 1
|
|
105
|
+
|
|
106
|
+
for i in range(1, n):
|
|
107
|
+
|
|
108
|
+
x = i * L_1
|
|
109
|
+
|
|
110
|
+
nodes_list.append(
|
|
111
|
+
rfem.structure_core.Node(
|
|
112
|
+
no=node_count,
|
|
113
|
+
coordinate_1=x,
|
|
114
|
+
coordinate_2=j * W,
|
|
115
|
+
coordinate_3=-((R_1 ** 2 - (x - L / 2) ** 2) ** 0.5 + h_1 - R_1) - H))
|
|
116
|
+
node_count += 1
|
|
117
|
+
|
|
118
|
+
nodes_list.append(
|
|
119
|
+
rfem.structure_core.Node(
|
|
120
|
+
no=node_count,
|
|
121
|
+
coordinate_1=L,
|
|
122
|
+
coordinate_2=j * W,
|
|
123
|
+
coordinate_3=-H))
|
|
124
|
+
node_count += 1
|
|
125
|
+
|
|
126
|
+
for i in range(n):
|
|
127
|
+
|
|
128
|
+
x = L_1 / 2 + i * L_1
|
|
129
|
+
|
|
130
|
+
nodes_list.append(
|
|
131
|
+
rfem.structure_core.Node(
|
|
132
|
+
no=node_count,
|
|
133
|
+
coordinate_1=x,
|
|
134
|
+
coordinate_2=j * W,
|
|
135
|
+
coordinate_3=-((R_2 ** 2 - (x - L / 2) ** 2) ** 0.5 + h_2 - R_2) - H))
|
|
136
|
+
node_count += 1
|
|
137
|
+
|
|
138
|
+
nodes_list.append(
|
|
139
|
+
rfem.structure_core.Node(
|
|
140
|
+
no=node_count,
|
|
141
|
+
coordinate_1=0.0,
|
|
142
|
+
coordinate_2=j * W,
|
|
143
|
+
coordinate_3=0.0))
|
|
144
|
+
|
|
145
|
+
supports.append(node_count)
|
|
146
|
+
|
|
147
|
+
node_count += 1
|
|
148
|
+
|
|
149
|
+
nodes_list.append(
|
|
150
|
+
rfem.structure_core.Node(
|
|
151
|
+
no=node_count,
|
|
152
|
+
coordinate_1=L,
|
|
153
|
+
coordinate_2=j * W,
|
|
154
|
+
coordinate_3=0.0))
|
|
155
|
+
|
|
156
|
+
supports.append(node_count)
|
|
157
|
+
node_count += 1
|
|
158
|
+
|
|
159
|
+
member_hinge = rfem.types_for_members.MemberHinge(
|
|
160
|
+
no=1,
|
|
161
|
+
axial_release_n=inf,
|
|
162
|
+
axial_release_vy=inf,
|
|
163
|
+
axial_release_vz=inf,
|
|
164
|
+
moment_release_mt=inf)
|
|
165
|
+
rfem_app.create_object(member_hinge)
|
|
166
|
+
|
|
167
|
+
mem_num = 1
|
|
168
|
+
members_list = []
|
|
169
|
+
lines_list = []
|
|
170
|
+
nn = 2 * n + 3
|
|
171
|
+
|
|
172
|
+
for j in range(n_u + 1):
|
|
173
|
+
|
|
174
|
+
members_list.append(
|
|
175
|
+
rfem.structure_core.Member(
|
|
176
|
+
no=mem_num,
|
|
177
|
+
node_start=1 + j * nn,
|
|
178
|
+
node_end=j * nn + 2,
|
|
179
|
+
type=rfem.structure_core.Member.TYPE_BEAM,
|
|
180
|
+
section_start=section_bottom_chord_center,
|
|
181
|
+
rotation_angle=pi, member_hinge_start=1))
|
|
182
|
+
|
|
183
|
+
lines_list.append(
|
|
184
|
+
rfem.structure_core.Line(
|
|
185
|
+
no=mem_num,
|
|
186
|
+
type=rfem.structure_core.Line.TYPE_ARC,
|
|
187
|
+
arc_first_node=1 + j * nn,
|
|
188
|
+
arc_second_node=j * nn + 2,
|
|
189
|
+
arc_control_point={'x': L_1 / 2,
|
|
190
|
+
'y': j * W,
|
|
191
|
+
'z': -((R_1 ** 2 - (L_1 / 2 - L / 2) ** 2) ** 0.5 + h_1 - R_1) - H}))
|
|
192
|
+
mem_num += 1
|
|
193
|
+
|
|
194
|
+
for i in range(n - 2):
|
|
195
|
+
|
|
196
|
+
members_list.append(
|
|
197
|
+
rfem.structure_core.Member(
|
|
198
|
+
no=mem_num, node_start=i + 2 + j * nn,
|
|
199
|
+
node_end=i + 3 + j * nn,
|
|
200
|
+
type=rfem.structure_core.Member.TYPE_BEAM,
|
|
201
|
+
section_start=section_bottom_chord_center,
|
|
202
|
+
rotation_angle=pi))
|
|
203
|
+
x = 1.5 * L_1 + i * L_1
|
|
204
|
+
|
|
205
|
+
lines_list.append(
|
|
206
|
+
rfem.structure_core.Line(
|
|
207
|
+
no=mem_num,
|
|
208
|
+
type=rfem.structure_core.Line.TYPE_ARC,
|
|
209
|
+
arc_first_node=i + 2 + j * nn,
|
|
210
|
+
arc_second_node=i + 3 + j * nn,
|
|
211
|
+
arc_control_point={'x': x,
|
|
212
|
+
'y': j * W,
|
|
213
|
+
'z': -((R_1 ** 2 - (x - L / 2) ** 2) ** 0.5 + h_1 - R_1) - H}))
|
|
214
|
+
mem_num += 1
|
|
215
|
+
|
|
216
|
+
members_list.append(
|
|
217
|
+
rfem.structure_core.Member(
|
|
218
|
+
no=mem_num, node_start=n + j * nn,
|
|
219
|
+
node_end=n + 1 + j * nn,
|
|
220
|
+
type=rfem.structure_core.Member.TYPE_BEAM,
|
|
221
|
+
section_start=section_bottom_chord_center,
|
|
222
|
+
rotation_angle=pi,
|
|
223
|
+
member_hinge_end=1))
|
|
224
|
+
|
|
225
|
+
lines_list.append(
|
|
226
|
+
rfem.structure_core.Line(
|
|
227
|
+
no=mem_num,
|
|
228
|
+
type=rfem.structure_core.Line.TYPE_ARC,
|
|
229
|
+
arc_first_node=n + j * nn,
|
|
230
|
+
arc_second_node=n + 1 + j * nn,
|
|
231
|
+
arc_control_point={
|
|
232
|
+
'x': L - L_1 / 2,
|
|
233
|
+
'y': j * W,
|
|
234
|
+
'z': -((R_1 ** 2 - (L - L_1 / 2 - L / 2) ** 2) ** 0.5 + h_1 - R_1) - H}))
|
|
235
|
+
mem_num += 1
|
|
236
|
+
|
|
237
|
+
members_list.append(
|
|
238
|
+
rfem.structure_core.Member(
|
|
239
|
+
no=mem_num,
|
|
240
|
+
node_start=1 + j * nn,
|
|
241
|
+
node_end=n + 2 + j * nn,
|
|
242
|
+
type=rfem.structure_core.Member.TYPE_BEAM,
|
|
243
|
+
section_start=section_top_chord_center))
|
|
244
|
+
|
|
245
|
+
lines_list.append(
|
|
246
|
+
rfem.structure_core.Line(
|
|
247
|
+
no=mem_num,
|
|
248
|
+
type=rfem.structure_core.Line.TYPE_ARC,
|
|
249
|
+
arc_first_node=1 + j * nn,
|
|
250
|
+
arc_second_node=n + 2 + j * nn,
|
|
251
|
+
arc_control_point={
|
|
252
|
+
'x': L_1 / 4,
|
|
253
|
+
'y': j * W,
|
|
254
|
+
'z': -((R_2 ** 2 - (L_1 / 4 - L / 2) ** 2) ** 0.5 + h_2 - R_2) - H}))
|
|
255
|
+
mem_num += 1
|
|
256
|
+
|
|
257
|
+
for i in range(n - 1):
|
|
258
|
+
|
|
259
|
+
members_list.append(
|
|
260
|
+
rfem.structure_core.Member(
|
|
261
|
+
no=mem_num,
|
|
262
|
+
node_start=n + i + 2 + j * nn,
|
|
263
|
+
node_end=n + i + 3 + j * nn,
|
|
264
|
+
type=rfem.structure_core.Member.TYPE_BEAM,
|
|
265
|
+
section_start=section_top_chord_center))
|
|
266
|
+
|
|
267
|
+
x = (i + 1) * L_1
|
|
268
|
+
lines_list.append(
|
|
269
|
+
rfem.structure_core.Line(
|
|
270
|
+
no=mem_num,
|
|
271
|
+
type=rfem.structure_core.Line.TYPE_ARC,
|
|
272
|
+
arc_first_node=n + i + 2 + j * nn,
|
|
273
|
+
arc_second_node=n + i + 3 + j * nn,
|
|
274
|
+
arc_control_point={
|
|
275
|
+
'x': x,
|
|
276
|
+
'y': j * W,
|
|
277
|
+
'z': -((R_2 ** 2 - (x - L / 2) ** 2) ** 0.5 + h_2 - R_2) - H}))
|
|
278
|
+
mem_num += 1
|
|
279
|
+
|
|
280
|
+
members_list.append(
|
|
281
|
+
rfem.structure_core.Member(
|
|
282
|
+
no=mem_num,
|
|
283
|
+
node_start=2 * n + 1 + j * nn,
|
|
284
|
+
node_end=n + 1 + j * nn,
|
|
285
|
+
type=rfem.structure_core.Member.TYPE_BEAM,
|
|
286
|
+
section_start=section_top_chord_center))
|
|
287
|
+
|
|
288
|
+
lines_list.append(
|
|
289
|
+
rfem.structure_core.Line(
|
|
290
|
+
no=mem_num,
|
|
291
|
+
type=rfem.structure_core.Line.TYPE_ARC,
|
|
292
|
+
arc_first_node=2 * n + 1 + j * nn,
|
|
293
|
+
arc_second_node=n + 1 + j * nn,
|
|
294
|
+
arc_control_point={
|
|
295
|
+
'x': L - L_1 / 4,
|
|
296
|
+
'y': j * W,
|
|
297
|
+
'z': -((R_2 ** 2 - (L / 2 - L_1 / 4) ** 2) ** 0.5 + h_2 - R_2) - H}))
|
|
298
|
+
|
|
299
|
+
mem_num += 1
|
|
300
|
+
|
|
301
|
+
for i in range(n - 1):
|
|
302
|
+
members_list.append(
|
|
303
|
+
rfem.structure_core.Member(
|
|
304
|
+
no=mem_num,
|
|
305
|
+
node_start=i + 2 + j * nn,
|
|
306
|
+
node_end=n + i + 2 + j * nn,
|
|
307
|
+
type=rfem.structure_core.Member.TYPE_BEAM,
|
|
308
|
+
section_start=section_diagonals_center,
|
|
309
|
+
member_hinge_start=1,
|
|
310
|
+
member_hinge_end=1))
|
|
311
|
+
mem_num += 1
|
|
312
|
+
members_list.append(
|
|
313
|
+
rfem.structure_core.Member(
|
|
314
|
+
no=mem_num,
|
|
315
|
+
node_start=i + 2 + j * nn,
|
|
316
|
+
node_end=n + i + 3 + j * nn,
|
|
317
|
+
type=rfem.structure_core.Member.TYPE_BEAM,
|
|
318
|
+
section_start=section_diagonals_center,
|
|
319
|
+
member_hinge_start=1,
|
|
320
|
+
member_hinge_end=1))
|
|
321
|
+
mem_num += 1
|
|
322
|
+
|
|
323
|
+
members_list.append(
|
|
324
|
+
rfem.structure_core.Member(
|
|
325
|
+
no=mem_num,
|
|
326
|
+
node_start=2 * n + 2 + j * nn,
|
|
327
|
+
node_end=1 + j * nn,
|
|
328
|
+
type=rfem.structure_core.Member.TYPE_BEAM,
|
|
329
|
+
section_start=section_columns_center))
|
|
330
|
+
|
|
331
|
+
mem_num += 1
|
|
332
|
+
|
|
333
|
+
members_list.append(
|
|
334
|
+
rfem.structure_core.Member(
|
|
335
|
+
no=mem_num,
|
|
336
|
+
node_start=2 * n + 3 + j * nn,
|
|
337
|
+
node_end=n + 1 + j * nn,
|
|
338
|
+
type=rfem.structure_core.Member.TYPE_BEAM,
|
|
339
|
+
section_start=section_columns_center))
|
|
340
|
+
|
|
341
|
+
mem_num += 1
|
|
342
|
+
|
|
343
|
+
if j < n_u:
|
|
344
|
+
members_list.append(
|
|
345
|
+
rfem.structure_core.Member(
|
|
346
|
+
no=mem_num,
|
|
347
|
+
node_start=1 + j * nn,
|
|
348
|
+
node_end=1 + (j + 1) * nn,
|
|
349
|
+
type=rfem.structure_core.Member.TYPE_BEAM,
|
|
350
|
+
section_start=section_girders_center))
|
|
351
|
+
|
|
352
|
+
mem_num += 1
|
|
353
|
+
|
|
354
|
+
members_list.append(
|
|
355
|
+
rfem.structure_core.Member(
|
|
356
|
+
no=mem_num,
|
|
357
|
+
node_start=n + 1 + j * nn,
|
|
358
|
+
node_end=n + 1 + (j + 1) * nn,
|
|
359
|
+
type=rfem.structure_core.Member.TYPE_BEAM,
|
|
360
|
+
section_start=section_girders_center))
|
|
361
|
+
|
|
362
|
+
mem_num += 1
|
|
363
|
+
|
|
364
|
+
if j < n_u:
|
|
365
|
+
if purlins_1:
|
|
366
|
+
for i in range(n):
|
|
367
|
+
|
|
368
|
+
members_list.append(
|
|
369
|
+
rfem.structure_core.Member(
|
|
370
|
+
no=mem_num,
|
|
371
|
+
node_start=n + 2 + i + j * nn,
|
|
372
|
+
node_end=n + 2 + i + (j + 1) * nn,
|
|
373
|
+
type=rfem.structure_core.Member.TYPE_BEAM,
|
|
374
|
+
section_start=section_purlins_center))
|
|
375
|
+
|
|
376
|
+
mem_num += 1
|
|
377
|
+
|
|
378
|
+
purlin_count_1 = 0
|
|
379
|
+
|
|
380
|
+
if purlins_1:
|
|
381
|
+
purlin_count_1 = n
|
|
382
|
+
|
|
383
|
+
surfaces_list = []
|
|
384
|
+
|
|
385
|
+
for j in range(n_u):
|
|
386
|
+
|
|
387
|
+
surface_members = []
|
|
388
|
+
for i in range(n + 1):
|
|
389
|
+
|
|
390
|
+
surface_members.append(j * (4 * n + 3 + purlin_count_1) + n + i + 1)
|
|
391
|
+
surface_members.append((j + 1) * (4 * n + 3 + purlin_count_1) + n + i + 1)
|
|
392
|
+
|
|
393
|
+
surface_members.append(4 * n + 2 + j * (4 * n + 3 + purlin_count_1))
|
|
394
|
+
surface_members.append(4 * n + 3 + j * (4 * n + 3 + purlin_count_1))
|
|
395
|
+
|
|
396
|
+
surfaces_list.append(
|
|
397
|
+
rfem.structure_core.Surface(
|
|
398
|
+
no=j + 1,
|
|
399
|
+
boundary_lines=surface_members,
|
|
400
|
+
type=rfem.structure_core.Surface.TYPE_STANDARD,
|
|
401
|
+
geometry=rfem.structure_core.Surface.GEOMETRY_QUADRANGLE,
|
|
402
|
+
thickness=thickness_roof_slab_center))
|
|
403
|
+
|
|
404
|
+
node_ref = node_count
|
|
405
|
+
mem_ref = mem_num
|
|
406
|
+
|
|
407
|
+
for j in range(n_u + 1):
|
|
408
|
+
|
|
409
|
+
for i in range(n_s + 1):
|
|
410
|
+
|
|
411
|
+
nodes_list.append(rfem.structure_core.Node(
|
|
412
|
+
no=node_count,
|
|
413
|
+
coordinate_1=L + d + i * L_s / n_s,
|
|
414
|
+
coordinate_2=j * W,
|
|
415
|
+
coordinate_3=-H_1 - i * (H_2 - H_1) / n_s))
|
|
416
|
+
|
|
417
|
+
node_count += 1
|
|
418
|
+
|
|
419
|
+
nodes_list.append(
|
|
420
|
+
rfem.structure_core.Node(
|
|
421
|
+
no=node_count,
|
|
422
|
+
coordinate_1=L + d,
|
|
423
|
+
coordinate_2=j * W,
|
|
424
|
+
coordinate_3=-H_1 - h))
|
|
425
|
+
|
|
426
|
+
node_count += 1
|
|
427
|
+
|
|
428
|
+
for i in range(n_s):
|
|
429
|
+
|
|
430
|
+
nodes_list.append(
|
|
431
|
+
rfem.structure_core.Node(
|
|
432
|
+
no=node_count,
|
|
433
|
+
coordinate_1=L + d + i * L_s / n_s + L_s / (2 * n_s),
|
|
434
|
+
coordinate_2=j * W,
|
|
435
|
+
coordinate_3=-H_1 - h - i * (H_2 - H_1) / n_s - (H_2 - H_1) / (2 * n_s)))
|
|
436
|
+
|
|
437
|
+
node_count += 1
|
|
438
|
+
|
|
439
|
+
nodes_list.append(
|
|
440
|
+
rfem.structure_core.Node(
|
|
441
|
+
no=node_count,
|
|
442
|
+
coordinate_1=L + d + L_s,
|
|
443
|
+
coordinate_2=j * W,
|
|
444
|
+
coordinate_3=-H_2 - h))
|
|
445
|
+
|
|
446
|
+
node_count += 1
|
|
447
|
+
|
|
448
|
+
nodes_list.append(
|
|
449
|
+
rfem.structure_core.Node(
|
|
450
|
+
no=node_count,
|
|
451
|
+
coordinate_1=L + d,
|
|
452
|
+
coordinate_2=j * W,
|
|
453
|
+
coordinate_3=0))
|
|
454
|
+
|
|
455
|
+
supports.append(node_count)
|
|
456
|
+
node_count += 1
|
|
457
|
+
|
|
458
|
+
nodes_list.append(
|
|
459
|
+
rfem.structure_core.Node(
|
|
460
|
+
no=node_count,
|
|
461
|
+
coordinate_1=L + d + L_s,
|
|
462
|
+
coordinate_2=j * W,
|
|
463
|
+
coordinate_3=0))
|
|
464
|
+
|
|
465
|
+
supports.append(node_count)
|
|
466
|
+
node_count += 1
|
|
467
|
+
|
|
468
|
+
for i in range(n_s + 1):
|
|
469
|
+
|
|
470
|
+
nodes_list.append(
|
|
471
|
+
rfem.structure_core.Node(
|
|
472
|
+
no=node_count,
|
|
473
|
+
coordinate_1=-d - i * L_s / n_s,
|
|
474
|
+
coordinate_2=j * W,
|
|
475
|
+
coordinate_3=-H_1 - i * (H_2 - H_1) / n_s))
|
|
476
|
+
|
|
477
|
+
node_count += 1
|
|
478
|
+
|
|
479
|
+
nodes_list.append(
|
|
480
|
+
rfem.structure_core.Node(
|
|
481
|
+
no=node_count,
|
|
482
|
+
coordinate_1=-d,
|
|
483
|
+
coordinate_2=j * W,
|
|
484
|
+
coordinate_3=-H_1 - h))
|
|
485
|
+
node_count += 1
|
|
486
|
+
|
|
487
|
+
for i in range(n_s):
|
|
488
|
+
|
|
489
|
+
nodes_list.append(
|
|
490
|
+
rfem.structure_core.Node(
|
|
491
|
+
no=node_count,
|
|
492
|
+
coordinate_1=-d - i * L_s / n_s - L_s / (2 * n_s),
|
|
493
|
+
coordinate_2=j * W,
|
|
494
|
+
coordinate_3=-H_1 - h - i * (H_2 - H_1) / n_s - (H_2 - H_1) / (2 * n_s)))
|
|
495
|
+
|
|
496
|
+
node_count += 1
|
|
497
|
+
|
|
498
|
+
nodes_list.append(
|
|
499
|
+
rfem.structure_core.Node(
|
|
500
|
+
no=node_count,
|
|
501
|
+
coordinate_1=-d - L_s,
|
|
502
|
+
coordinate_2=j * W,
|
|
503
|
+
coordinate_3=-H_2 - h))
|
|
504
|
+
|
|
505
|
+
node_count += 1
|
|
506
|
+
|
|
507
|
+
nodes_list.append(
|
|
508
|
+
rfem.structure_core.Node(
|
|
509
|
+
no=node_count,
|
|
510
|
+
coordinate_1=-d,
|
|
511
|
+
coordinate_2=j * W,
|
|
512
|
+
coordinate_3=0))
|
|
513
|
+
|
|
514
|
+
supports.append(node_count)
|
|
515
|
+
node_count += 1
|
|
516
|
+
|
|
517
|
+
nodes_list.append(rfem.structure_core.Node(
|
|
518
|
+
no=node_count,
|
|
519
|
+
coordinate_1=-d - L_s,
|
|
520
|
+
coordinate_2=j * W,
|
|
521
|
+
coordinate_3=0))
|
|
522
|
+
|
|
523
|
+
supports.append(node_count)
|
|
524
|
+
node_count += 1
|
|
525
|
+
|
|
526
|
+
nns = 4 * n_s + 10
|
|
527
|
+
|
|
528
|
+
for j in range(n_u + 1):
|
|
529
|
+
|
|
530
|
+
for i in range(n_s):
|
|
531
|
+
|
|
532
|
+
if i == 0:
|
|
533
|
+
members_list.append(
|
|
534
|
+
rfem.structure_core.Member(
|
|
535
|
+
no=mem_num,
|
|
536
|
+
node_start=node_ref + i + j * nns,
|
|
537
|
+
node_end=node_ref + i + 1 + j * nns,
|
|
538
|
+
type=rfem.structure_core.Member.TYPE_BEAM,
|
|
539
|
+
section_start=section_bottom_chord_side,
|
|
540
|
+
rotation_angle=pi,
|
|
541
|
+
member_hinge_start=1))
|
|
542
|
+
elif i == n_s - 1:
|
|
543
|
+
members_list.append(
|
|
544
|
+
rfem.structure_core.Member(
|
|
545
|
+
no=mem_num,
|
|
546
|
+
node_start=node_ref + i + j * nns,
|
|
547
|
+
node_end=node_ref + i + 1 + j * nns,
|
|
548
|
+
type=rfem.structure_core.Member.TYPE_BEAM,
|
|
549
|
+
section_start=section_bottom_chord_side,
|
|
550
|
+
rotation_angle=pi,
|
|
551
|
+
member_hinge_end=1))
|
|
552
|
+
else:
|
|
553
|
+
members_list.append(
|
|
554
|
+
rfem.structure_core.Member(
|
|
555
|
+
no=mem_num,
|
|
556
|
+
node_start=node_ref + i + j * nns,
|
|
557
|
+
node_end=node_ref + i + 1 + j * nns,
|
|
558
|
+
type=rfem.structure_core.Member.TYPE_BEAM,
|
|
559
|
+
section_start=section_bottom_chord_side,
|
|
560
|
+
rotation_angle=pi))
|
|
561
|
+
|
|
562
|
+
mem_num += 1
|
|
563
|
+
|
|
564
|
+
if i == 0:
|
|
565
|
+
members_list.append(
|
|
566
|
+
rfem.structure_core.Member(
|
|
567
|
+
no=mem_num,
|
|
568
|
+
node_start=node_ref + i + 2 * n_s + 5 + j * nns,
|
|
569
|
+
node_end=node_ref + i + 1 + 2 * n_s + 5 + j * nns,
|
|
570
|
+
type=rfem.structure_core.Member.TYPE_BEAM,
|
|
571
|
+
section_start=section_bottom_chord_side,
|
|
572
|
+
rotation_angle=pi,
|
|
573
|
+
member_hinge_start=1))
|
|
574
|
+
elif i == n_s - 1:
|
|
575
|
+
members_list.append(
|
|
576
|
+
rfem.structure_core.Member(
|
|
577
|
+
no=mem_num,
|
|
578
|
+
node_start=node_ref + i + 2 * n_s + 5 + j * nns,
|
|
579
|
+
node_end=node_ref + i + 1 + 2 * n_s + 5 + j * nns,
|
|
580
|
+
type=rfem.structure_core.Member.TYPE_BEAM,
|
|
581
|
+
section_start=section_bottom_chord_side,
|
|
582
|
+
rotation_angle=pi,
|
|
583
|
+
member_hinge_end=1))
|
|
584
|
+
else:
|
|
585
|
+
members_list.append(
|
|
586
|
+
rfem.structure_core.Member(
|
|
587
|
+
no=mem_num,
|
|
588
|
+
node_start=node_ref + i + 2 * n_s + 5 + j * nns,
|
|
589
|
+
node_end=node_ref + i + 1 + 2 * n_s + 5 + j * nns,
|
|
590
|
+
type=rfem.structure_core.Member.TYPE_BEAM,
|
|
591
|
+
section_start=section_bottom_chord_side,
|
|
592
|
+
rotation_angle=pi))
|
|
593
|
+
|
|
594
|
+
mem_num += 1
|
|
595
|
+
|
|
596
|
+
for i in range(n_s + 1):
|
|
597
|
+
|
|
598
|
+
members_list.append(
|
|
599
|
+
rfem.structure_core.Member(
|
|
600
|
+
no=mem_num,
|
|
601
|
+
node_start=node_ref + i + n_s + 1 + j * nns,
|
|
602
|
+
node_end=node_ref + i + 1 + n_s + 1 + j * nns,
|
|
603
|
+
type=rfem.structure_core.Member.TYPE_BEAM,
|
|
604
|
+
section_start=section_top_chord_side))
|
|
605
|
+
|
|
606
|
+
mem_num += 1
|
|
607
|
+
|
|
608
|
+
members_list.append(
|
|
609
|
+
rfem.structure_core.Member(
|
|
610
|
+
no=mem_num,
|
|
611
|
+
node_start=node_ref + i + 2 * n_s + 5 + n_s + 1 + j * nns,
|
|
612
|
+
node_end=node_ref + i + 1 + 2 * n_s + 5 + n_s + 1 + j * nns,
|
|
613
|
+
type=rfem.structure_core.Member.TYPE_BEAM,
|
|
614
|
+
section_start=section_top_chord_side))
|
|
615
|
+
|
|
616
|
+
mem_num += 1
|
|
617
|
+
|
|
618
|
+
for i in range(n_s):
|
|
619
|
+
|
|
620
|
+
members_list.append(
|
|
621
|
+
rfem.structure_core.Member(
|
|
622
|
+
no=mem_num,
|
|
623
|
+
node_start=node_ref + i + j * nns,
|
|
624
|
+
node_end=node_ref + i + 2 + n_s + j * nns,
|
|
625
|
+
type=rfem.structure_core.Member.TYPE_BEAM,
|
|
626
|
+
section_start=section_diagonals_side,
|
|
627
|
+
member_hinge_start=1,
|
|
628
|
+
member_hinge_end=1))
|
|
629
|
+
|
|
630
|
+
mem_num += 1
|
|
631
|
+
|
|
632
|
+
members_list.append(
|
|
633
|
+
rfem.structure_core.Member(
|
|
634
|
+
no=mem_num,
|
|
635
|
+
node_start=node_ref + i + 1 + j * nns,
|
|
636
|
+
node_end=node_ref + i + 2 + n_s + j * nns,
|
|
637
|
+
type=rfem.structure_core.Member.TYPE_BEAM,
|
|
638
|
+
section_start=section_diagonals_side,
|
|
639
|
+
member_hinge_start=1,
|
|
640
|
+
member_hinge_end=1))
|
|
641
|
+
|
|
642
|
+
mem_num += 1
|
|
643
|
+
|
|
644
|
+
members_list.append(
|
|
645
|
+
rfem.structure_core.Member(
|
|
646
|
+
no=mem_num,
|
|
647
|
+
node_start=node_ref + i + 2 * n_s + 5 + j * nns,
|
|
648
|
+
node_end=node_ref + i + 2 + n_s + 2 * n_s + 5 + j * nns,
|
|
649
|
+
type=rfem.structure_core.Member.TYPE_BEAM,
|
|
650
|
+
section_start=section_diagonals_side,
|
|
651
|
+
member_hinge_start=1,
|
|
652
|
+
member_hinge_end=1))
|
|
653
|
+
|
|
654
|
+
mem_num += 1
|
|
655
|
+
|
|
656
|
+
members_list.append(
|
|
657
|
+
rfem.structure_core.Member(
|
|
658
|
+
no=mem_num,
|
|
659
|
+
node_start=node_ref + i + 1 + 2 * n_s + 5 + j * nns,
|
|
660
|
+
node_end=node_ref + i + 2 + n_s + 2 * n_s + 5 + j * nns,
|
|
661
|
+
type=rfem.structure_core.Member.TYPE_BEAM,
|
|
662
|
+
section_start=section_diagonals_side,
|
|
663
|
+
member_hinge_start=1,
|
|
664
|
+
member_hinge_end=1))
|
|
665
|
+
|
|
666
|
+
mem_num += 1
|
|
667
|
+
|
|
668
|
+
members_list.append(
|
|
669
|
+
rfem.structure_core.Member(
|
|
670
|
+
no=mem_num,
|
|
671
|
+
node_start=node_ref + j * nns,
|
|
672
|
+
node_end=node_ref + n_s + 1 + j * nns,
|
|
673
|
+
type=rfem.structure_core.Member.TYPE_BEAM,
|
|
674
|
+
section_start=section_columns_side))
|
|
675
|
+
|
|
676
|
+
mem_num += 1
|
|
677
|
+
|
|
678
|
+
members_list.append(
|
|
679
|
+
rfem.structure_core.Member(
|
|
680
|
+
no=mem_num,
|
|
681
|
+
node_start=node_ref + n_s + j * nns,
|
|
682
|
+
node_end=node_ref + 2 * n_s + 2 + j * nns,
|
|
683
|
+
type=rfem.structure_core.Member.TYPE_BEAM,
|
|
684
|
+
section_start=section_columns_side))
|
|
685
|
+
|
|
686
|
+
mem_num += 1
|
|
687
|
+
|
|
688
|
+
members_list.append(
|
|
689
|
+
rfem.structure_core.Member(
|
|
690
|
+
no=mem_num,
|
|
691
|
+
node_start=node_ref + 2 * n_s + 5 + j * nns,
|
|
692
|
+
node_end=node_ref + n_s + 1 + 2 * n_s + 5 + j * nns,
|
|
693
|
+
type=rfem.structure_core.Member.TYPE_BEAM,
|
|
694
|
+
section_start=section_columns_side))
|
|
695
|
+
|
|
696
|
+
mem_num += 1
|
|
697
|
+
|
|
698
|
+
members_list.append(
|
|
699
|
+
rfem.structure_core.Member(
|
|
700
|
+
no=mem_num,
|
|
701
|
+
node_start=node_ref + n_s + 2 * n_s + 5 + j * nns,
|
|
702
|
+
node_end=node_ref + 2 * n_s + 2 + 2 * n_s + 5 + j * nns,
|
|
703
|
+
type=rfem.structure_core.Member.TYPE_BEAM,
|
|
704
|
+
section_start=section_columns_side))
|
|
705
|
+
|
|
706
|
+
mem_num += 1
|
|
707
|
+
|
|
708
|
+
members_list.append(
|
|
709
|
+
rfem.structure_core.Member(
|
|
710
|
+
no=mem_num,
|
|
711
|
+
node_start=node_ref + 2 * n_s + 3 + j * nns,
|
|
712
|
+
node_end=node_ref + j * nns,
|
|
713
|
+
type=rfem.structure_core.Member.TYPE_BEAM,
|
|
714
|
+
section_start=section_columns_side))
|
|
715
|
+
|
|
716
|
+
mem_num += 1
|
|
717
|
+
|
|
718
|
+
members_list.append(
|
|
719
|
+
rfem.structure_core.Member(
|
|
720
|
+
no=mem_num,
|
|
721
|
+
node_start=node_ref + 2 * n_s + 4 + j * nns,
|
|
722
|
+
node_end=node_ref + n_s + j * nns,
|
|
723
|
+
type=rfem.structure_core.Member.TYPE_BEAM,
|
|
724
|
+
section_start=section_columns_side))
|
|
725
|
+
|
|
726
|
+
mem_num += 1
|
|
727
|
+
|
|
728
|
+
members_list.append(
|
|
729
|
+
rfem.structure_core.Member(
|
|
730
|
+
no=mem_num,
|
|
731
|
+
node_start=node_ref + 4 * n_s + 8 + j * nns,
|
|
732
|
+
node_end=node_ref + 2 * n_s + 5 + j * nns,
|
|
733
|
+
type=rfem.structure_core.Member.TYPE_BEAM,
|
|
734
|
+
section_start=section_columns_side))
|
|
735
|
+
|
|
736
|
+
mem_num += 1
|
|
737
|
+
|
|
738
|
+
members_list.append(
|
|
739
|
+
rfem.structure_core.Member(
|
|
740
|
+
no=mem_num,
|
|
741
|
+
node_start=node_ref + 4 * n_s + 9 + j * nns,
|
|
742
|
+
node_end=node_ref + 3 * n_s + 5 + j * nns,
|
|
743
|
+
type=rfem.structure_core.Member.TYPE_BEAM,
|
|
744
|
+
section_start=section_columns_side))
|
|
745
|
+
|
|
746
|
+
mem_num += 1
|
|
747
|
+
|
|
748
|
+
if j < n_u:
|
|
749
|
+
members_list.append(
|
|
750
|
+
rfem.structure_core.Member(
|
|
751
|
+
no=mem_num,
|
|
752
|
+
node_start=node_ref + n_s + 1 + j * nns,
|
|
753
|
+
node_end=node_ref + n_s + 1 + (j + 1) * nns,
|
|
754
|
+
type=rfem.structure_core.Member.TYPE_BEAM,
|
|
755
|
+
section_start=section_girders_side))
|
|
756
|
+
|
|
757
|
+
mem_num += 1
|
|
758
|
+
|
|
759
|
+
members_list.append(
|
|
760
|
+
rfem.structure_core.Member(
|
|
761
|
+
no=mem_num,
|
|
762
|
+
node_start=node_ref + 2 * n_s + 2 + j * nns,
|
|
763
|
+
node_end=node_ref + 2 * n_s + 2 + (j + 1) * nns,
|
|
764
|
+
type=rfem.structure_core.Member.TYPE_BEAM,
|
|
765
|
+
section_start=section_girders_side))
|
|
766
|
+
|
|
767
|
+
mem_num += 1
|
|
768
|
+
|
|
769
|
+
members_list.append(
|
|
770
|
+
rfem.structure_core.Member(
|
|
771
|
+
no=mem_num,
|
|
772
|
+
node_start=node_ref + n_s + 1 + 2 * n_s + 5 + j * nns,
|
|
773
|
+
node_end=node_ref + n_s + 1 + 2 * n_s + 5 + (j + 1) * nns,
|
|
774
|
+
type=rfem.structure_core.Member.TYPE_BEAM,
|
|
775
|
+
section_start=section_girders_side))
|
|
776
|
+
|
|
777
|
+
mem_num += 1
|
|
778
|
+
|
|
779
|
+
members_list.append(
|
|
780
|
+
rfem.structure_core.Member(
|
|
781
|
+
no=mem_num,
|
|
782
|
+
node_start=node_ref + 2 * n_s + 2 + 2 * n_s + 5 + j * nns,
|
|
783
|
+
node_end=node_ref + 2 * n_s + 2 + 2 * n_s + 5 + (j + 1) * nns,
|
|
784
|
+
type=rfem.structure_core.Member.TYPE_BEAM,
|
|
785
|
+
section_start=section_girders_side))
|
|
786
|
+
|
|
787
|
+
mem_num += 1
|
|
788
|
+
|
|
789
|
+
if j < n_u:
|
|
790
|
+
if purlins_2:
|
|
791
|
+
for i in range(n_s):
|
|
792
|
+
|
|
793
|
+
members_list.append(
|
|
794
|
+
rfem.structure_core.Member(
|
|
795
|
+
no=mem_num,
|
|
796
|
+
node_start=node_ref + n_s + 2 + i + j * nns,
|
|
797
|
+
node_end=node_ref + n_s + 2 + i + (j + 1) * nns,
|
|
798
|
+
type=rfem.structure_core.Member.TYPE_BEAM,
|
|
799
|
+
section_start=section_purlins_side))
|
|
800
|
+
|
|
801
|
+
mem_num += 1
|
|
802
|
+
|
|
803
|
+
members_list.append(
|
|
804
|
+
rfem.structure_core.Member(
|
|
805
|
+
no=mem_num,
|
|
806
|
+
node_start=node_ref + n_s + 2 + i + 2 * n_s + 5 + j * nns,
|
|
807
|
+
node_end=node_ref + n_s + 2 + i + 2 * n_s + 5 + (j + 1) * nns,
|
|
808
|
+
type=rfem.structure_core.Member.TYPE_BEAM,
|
|
809
|
+
section_start=section_purlins_side))
|
|
810
|
+
|
|
811
|
+
mem_num += 1
|
|
812
|
+
|
|
813
|
+
if purlins_2:
|
|
814
|
+
mmn = 10 * n_s + 14
|
|
815
|
+
k = 2 * n_s
|
|
816
|
+
else:
|
|
817
|
+
mmn = 8 * n_s + 14
|
|
818
|
+
k = 0
|
|
819
|
+
|
|
820
|
+
for j in range(n_u):
|
|
821
|
+
|
|
822
|
+
surface_members = []
|
|
823
|
+
for i in range(n_s + 1):
|
|
824
|
+
|
|
825
|
+
surface_members.append(mem_ref + 2 * n_s + 2 * i + j * mmn)
|
|
826
|
+
surface_members.append(mem_ref + 2 * n_s + mmn + 2 * i + j * mmn)
|
|
827
|
+
|
|
828
|
+
surface_members.append(mem_ref + mmn - 4 - k + j * mmn)
|
|
829
|
+
surface_members.append(mem_ref + mmn - 3 - k + j * mmn)
|
|
830
|
+
|
|
831
|
+
surfaces_list.append(
|
|
832
|
+
rfem.structure_core.Surface(
|
|
833
|
+
no=2 * j + n_u + 1,
|
|
834
|
+
boundary_lines=surface_members,
|
|
835
|
+
type=rfem.structure_core.Surface.TYPE_STANDARD,
|
|
836
|
+
geometry=rfem.structure_core.Surface.GEOMETRY_PLANE,
|
|
837
|
+
thickness=thickness_roof_slab_side))
|
|
838
|
+
|
|
839
|
+
surface_members = []
|
|
840
|
+
for i in range(n_s + 1):
|
|
841
|
+
|
|
842
|
+
surface_members.append(mem_ref + 2 * n_s + 2 * i + 1 + j * mmn)
|
|
843
|
+
surface_members.append(mem_ref + 2 * n_s + mmn + 2 * i + 1 + j * mmn)
|
|
844
|
+
|
|
845
|
+
surface_members.append(mem_ref + mmn - 2 - k + j * mmn)
|
|
846
|
+
surface_members.append(mem_ref + mmn - 1 - k + j * mmn)
|
|
847
|
+
|
|
848
|
+
surfaces_list.append(
|
|
849
|
+
rfem.structure_core.Surface(
|
|
850
|
+
no=2 * j + n_u + 2,
|
|
851
|
+
boundary_lines=surface_members,
|
|
852
|
+
type=rfem.structure_core.Surface.TYPE_STANDARD,
|
|
853
|
+
geometry=rfem.structure_core.Surface.GEOMETRY_PLANE,
|
|
854
|
+
thickness=thickness_roof_slab_side))
|
|
855
|
+
|
|
856
|
+
nodal_supports_list = [
|
|
857
|
+
rfem.types_for_nodes.NodalSupport(
|
|
858
|
+
no=1,
|
|
859
|
+
nodes=[supports[0],],
|
|
860
|
+
spring_x=inf,
|
|
861
|
+
spring_y=inf,
|
|
862
|
+
spring_z=inf,
|
|
863
|
+
rotational_restraint_x=0,
|
|
864
|
+
rotational_restraint_y=0,
|
|
865
|
+
rotational_restraint_z=inf),
|
|
866
|
+
rfem.types_for_nodes.NodalSupport(
|
|
867
|
+
no=2,
|
|
868
|
+
nodes=supports[1:],
|
|
869
|
+
spring_x=0,
|
|
870
|
+
spring_y=0,
|
|
871
|
+
spring_z=inf,
|
|
872
|
+
rotational_restraint_x=0,
|
|
873
|
+
rotational_restraint_y=0,
|
|
874
|
+
rotational_restraint_z=inf)]
|
|
875
|
+
|
|
876
|
+
rfem_app.create_object_list(nodes_list)
|
|
877
|
+
rfem_app.create_object_list(members_list)
|
|
878
|
+
rfem_app.update_object_list(lines_list)
|
|
879
|
+
rfem_app.create_object_list(surfaces_list)
|
|
880
|
+
rfem_app.create_object_list(nodal_supports_list)
|
|
881
|
+
|
|
882
|
+
# Static Analysis Settings
|
|
883
|
+
rfem_app.create_object(rfem.loading.StaticAnalysisSettings(no=1))
|
|
884
|
+
|
|
885
|
+
# Load Cases
|
|
886
|
+
rfem_app.create_object(
|
|
887
|
+
rfem.loading.LoadCase(
|
|
888
|
+
no=1,
|
|
889
|
+
name="Self weight",
|
|
890
|
+
static_analysis_settings=1))
|