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
|
@@ -7,147 +7,272 @@ from typing import ClassVar as _ClassVar, Iterable as _Iterable, Mapping as _Map
|
|
|
7
7
|
|
|
8
8
|
DESCRIPTOR: _descriptor.FileDescriptor
|
|
9
9
|
|
|
10
|
-
class SurfaceGeometry(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
11
|
-
__slots__ = ()
|
|
12
|
-
SURFACE_GEOMETRY_UNKNOWN: _ClassVar[SurfaceGeometry]
|
|
13
|
-
SURFACE_GEOMETRY_MINIMUM_CURVATURE_SPLINE: _ClassVar[SurfaceGeometry]
|
|
14
|
-
SURFACE_GEOMETRY_NURBS: _ClassVar[SurfaceGeometry]
|
|
15
|
-
SURFACE_GEOMETRY_PIPE: _ClassVar[SurfaceGeometry]
|
|
16
|
-
SURFACE_GEOMETRY_PLANE: _ClassVar[SurfaceGeometry]
|
|
17
|
-
SURFACE_GEOMETRY_QUADRANGLE: _ClassVar[SurfaceGeometry]
|
|
18
|
-
SURFACE_GEOMETRY_ROTATED: _ClassVar[SurfaceGeometry]
|
|
19
|
-
SURFACE_GEOMETRY_TRIMMED: _ClassVar[SurfaceGeometry]
|
|
20
|
-
|
|
21
|
-
class SurfaceType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
22
|
-
__slots__ = ()
|
|
23
|
-
SURFACE_TYPE_STANDARD: _ClassVar[SurfaceType]
|
|
24
|
-
SURFACE_TYPE_FLOOR: _ClassVar[SurfaceType]
|
|
25
|
-
SURFACE_TYPE_FLOOR_DIAPHRAGM: _ClassVar[SurfaceType]
|
|
26
|
-
SURFACE_TYPE_FLOOR_FLEXIBLE_DIAPHRAGM: _ClassVar[SurfaceType]
|
|
27
|
-
SURFACE_TYPE_FLOOR_SEMIRIGID: _ClassVar[SurfaceType]
|
|
28
|
-
SURFACE_TYPE_GROUNDWATER: _ClassVar[SurfaceType]
|
|
29
|
-
SURFACE_TYPE_LOAD_TRANSFER: _ClassVar[SurfaceType]
|
|
30
|
-
SURFACE_TYPE_MEMBRANE: _ClassVar[SurfaceType]
|
|
31
|
-
SURFACE_TYPE_RIGID: _ClassVar[SurfaceType]
|
|
32
|
-
SURFACE_TYPE_WITHOUT_MEMBRANE_TENSION: _ClassVar[SurfaceType]
|
|
33
|
-
SURFACE_TYPE_WITHOUT_THICKNESS: _ClassVar[SurfaceType]
|
|
34
|
-
|
|
35
|
-
class SurfaceLoadTransferDirection(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
36
|
-
__slots__ = ()
|
|
37
|
-
SURFACE_LOAD_TRANSFER_DIRECTION_IN_X: _ClassVar[SurfaceLoadTransferDirection]
|
|
38
|
-
SURFACE_LOAD_TRANSFER_DIRECTION_IN_BOTH: _ClassVar[SurfaceLoadTransferDirection]
|
|
39
|
-
SURFACE_LOAD_TRANSFER_DIRECTION_IN_Y: _ClassVar[SurfaceLoadTransferDirection]
|
|
40
|
-
SURFACE_LOAD_TRANSFER_DIRECTION_ISOTROPIC: _ClassVar[SurfaceLoadTransferDirection]
|
|
41
|
-
|
|
42
|
-
class SurfaceLoadDistribution(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
43
|
-
__slots__ = ()
|
|
44
|
-
SURFACE_LOAD_DISTRIBUTION_UNIFORM: _ClassVar[SurfaceLoadDistribution]
|
|
45
|
-
SURFACE_LOAD_DISTRIBUTION_VARYING_LINEAR: _ClassVar[SurfaceLoadDistribution]
|
|
46
|
-
|
|
47
|
-
class SurfaceQuadranglePreferableShape(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
48
|
-
__slots__ = ()
|
|
49
|
-
SURFACE_QUADRANGLE_PREFERABLE_SHAPE_ROTATED: _ClassVar[SurfaceQuadranglePreferableShape]
|
|
50
|
-
SURFACE_QUADRANGLE_PREFERABLE_SHAPE_PIPE: _ClassVar[SurfaceQuadranglePreferableShape]
|
|
51
|
-
|
|
52
|
-
class SurfaceMeshingType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
53
|
-
__slots__ = ()
|
|
54
|
-
SURFACE_MESHING_TYPE_USE_GLOBAL_SETTINGS: _ClassVar[SurfaceMeshingType]
|
|
55
|
-
SURFACE_MESHING_TYPE_FREE: _ClassVar[SurfaceMeshingType]
|
|
56
|
-
SURFACE_MESHING_TYPE_MAPPED: _ClassVar[SurfaceMeshingType]
|
|
57
|
-
|
|
58
|
-
class SurfaceInputAxesRotationSpecificationType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
59
|
-
__slots__ = ()
|
|
60
|
-
SURFACE_INPUT_AXES_ROTATION_SPECIFICATION_TYPE_ANGULAR_ROTATION: _ClassVar[SurfaceInputAxesRotationSpecificationType]
|
|
61
|
-
SURFACE_INPUT_AXES_ROTATION_SPECIFICATION_TYPE_DIRECT_TO_POINT: _ClassVar[SurfaceInputAxesRotationSpecificationType]
|
|
62
|
-
SURFACE_INPUT_AXES_ROTATION_SPECIFICATION_TYPE_PARALLEL_TO_COORDINATE_SYSTEM: _ClassVar[SurfaceInputAxesRotationSpecificationType]
|
|
63
|
-
SURFACE_INPUT_AXES_ROTATION_SPECIFICATION_TYPE_PARALLEL_TO_LINES: _ClassVar[SurfaceInputAxesRotationSpecificationType]
|
|
64
|
-
|
|
65
|
-
class SurfaceInputAxesAxis(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
66
|
-
__slots__ = ()
|
|
67
|
-
SURFACE_INPUT_AXES_AXIS_X: _ClassVar[SurfaceInputAxesAxis]
|
|
68
|
-
SURFACE_INPUT_AXES_AXIS_Y: _ClassVar[SurfaceInputAxesAxis]
|
|
69
|
-
|
|
70
|
-
class SurfaceResultAxesRotationSpecificationType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
71
|
-
__slots__ = ()
|
|
72
|
-
SURFACE_RESULT_AXES_ROTATION_SPECIFICATION_TYPE_IDENTICAL_TO_INPUT_AXES: _ClassVar[SurfaceResultAxesRotationSpecificationType]
|
|
73
|
-
|
|
74
|
-
class SurfaceGridType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
75
|
-
__slots__ = ()
|
|
76
|
-
SURFACE_GRID_TYPE_CARTESIAN: _ClassVar[SurfaceGridType]
|
|
77
|
-
SURFACE_GRID_TYPE_POLAR: _ClassVar[SurfaceGridType]
|
|
78
|
-
|
|
79
|
-
class SurfaceDeflectionCheckSurfaceType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
80
|
-
__slots__ = ()
|
|
81
|
-
SURFACE_DEFLECTION_CHECK_SURFACE_TYPE_DOUBLE_SUPPORTED: _ClassVar[SurfaceDeflectionCheckSurfaceType]
|
|
82
|
-
SURFACE_DEFLECTION_CHECK_SURFACE_TYPE_CANTILEVER: _ClassVar[SurfaceDeflectionCheckSurfaceType]
|
|
83
|
-
|
|
84
|
-
class SurfaceDeflectionCheckDisplacementReference(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
85
|
-
__slots__ = ()
|
|
86
|
-
SURFACE_DEFLECTION_CHECK_DISPLACEMENT_REFERENCE_DEFORMED_USER_DEFINED_REFERENCE_PLANE: _ClassVar[SurfaceDeflectionCheckDisplacementReference]
|
|
87
|
-
SURFACE_DEFLECTION_CHECK_DISPLACEMENT_REFERENCE_PARALLEL_SURFACE: _ClassVar[SurfaceDeflectionCheckDisplacementReference]
|
|
88
|
-
SURFACE_DEFLECTION_CHECK_DISPLACEMENT_REFERENCE_UNDEFORMED_SYSTEM: _ClassVar[SurfaceDeflectionCheckDisplacementReference]
|
|
89
|
-
|
|
90
|
-
class SurfaceDeflectionCheckReferenceLengthZDefinitionType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
91
|
-
__slots__ = ()
|
|
92
|
-
SURFACE_DEFLECTION_CHECK_REFERENCE_LENGTH_Z_DEFINITION_TYPE_MANUALLY: _ClassVar[SurfaceDeflectionCheckReferenceLengthZDefinitionType]
|
|
93
|
-
SURFACE_DEFLECTION_CHECK_REFERENCE_LENGTH_Z_DEFINITION_TYPE_BY_MAXIMUM_BOUNDARY_LINE: _ClassVar[SurfaceDeflectionCheckReferenceLengthZDefinitionType]
|
|
94
|
-
SURFACE_DEFLECTION_CHECK_REFERENCE_LENGTH_Z_DEFINITION_TYPE_BY_MINIMUM_BOUNDARY_LINE: _ClassVar[SurfaceDeflectionCheckReferenceLengthZDefinitionType]
|
|
95
|
-
SURFACE_GEOMETRY_UNKNOWN: SurfaceGeometry
|
|
96
|
-
SURFACE_GEOMETRY_MINIMUM_CURVATURE_SPLINE: SurfaceGeometry
|
|
97
|
-
SURFACE_GEOMETRY_NURBS: SurfaceGeometry
|
|
98
|
-
SURFACE_GEOMETRY_PIPE: SurfaceGeometry
|
|
99
|
-
SURFACE_GEOMETRY_PLANE: SurfaceGeometry
|
|
100
|
-
SURFACE_GEOMETRY_QUADRANGLE: SurfaceGeometry
|
|
101
|
-
SURFACE_GEOMETRY_ROTATED: SurfaceGeometry
|
|
102
|
-
SURFACE_GEOMETRY_TRIMMED: SurfaceGeometry
|
|
103
|
-
SURFACE_TYPE_STANDARD: SurfaceType
|
|
104
|
-
SURFACE_TYPE_FLOOR: SurfaceType
|
|
105
|
-
SURFACE_TYPE_FLOOR_DIAPHRAGM: SurfaceType
|
|
106
|
-
SURFACE_TYPE_FLOOR_FLEXIBLE_DIAPHRAGM: SurfaceType
|
|
107
|
-
SURFACE_TYPE_FLOOR_SEMIRIGID: SurfaceType
|
|
108
|
-
SURFACE_TYPE_GROUNDWATER: SurfaceType
|
|
109
|
-
SURFACE_TYPE_LOAD_TRANSFER: SurfaceType
|
|
110
|
-
SURFACE_TYPE_MEMBRANE: SurfaceType
|
|
111
|
-
SURFACE_TYPE_RIGID: SurfaceType
|
|
112
|
-
SURFACE_TYPE_WITHOUT_MEMBRANE_TENSION: SurfaceType
|
|
113
|
-
SURFACE_TYPE_WITHOUT_THICKNESS: SurfaceType
|
|
114
|
-
SURFACE_LOAD_TRANSFER_DIRECTION_IN_X: SurfaceLoadTransferDirection
|
|
115
|
-
SURFACE_LOAD_TRANSFER_DIRECTION_IN_BOTH: SurfaceLoadTransferDirection
|
|
116
|
-
SURFACE_LOAD_TRANSFER_DIRECTION_IN_Y: SurfaceLoadTransferDirection
|
|
117
|
-
SURFACE_LOAD_TRANSFER_DIRECTION_ISOTROPIC: SurfaceLoadTransferDirection
|
|
118
|
-
SURFACE_LOAD_DISTRIBUTION_UNIFORM: SurfaceLoadDistribution
|
|
119
|
-
SURFACE_LOAD_DISTRIBUTION_VARYING_LINEAR: SurfaceLoadDistribution
|
|
120
|
-
SURFACE_QUADRANGLE_PREFERABLE_SHAPE_ROTATED: SurfaceQuadranglePreferableShape
|
|
121
|
-
SURFACE_QUADRANGLE_PREFERABLE_SHAPE_PIPE: SurfaceQuadranglePreferableShape
|
|
122
|
-
SURFACE_MESHING_TYPE_USE_GLOBAL_SETTINGS: SurfaceMeshingType
|
|
123
|
-
SURFACE_MESHING_TYPE_FREE: SurfaceMeshingType
|
|
124
|
-
SURFACE_MESHING_TYPE_MAPPED: SurfaceMeshingType
|
|
125
|
-
SURFACE_INPUT_AXES_ROTATION_SPECIFICATION_TYPE_ANGULAR_ROTATION: SurfaceInputAxesRotationSpecificationType
|
|
126
|
-
SURFACE_INPUT_AXES_ROTATION_SPECIFICATION_TYPE_DIRECT_TO_POINT: SurfaceInputAxesRotationSpecificationType
|
|
127
|
-
SURFACE_INPUT_AXES_ROTATION_SPECIFICATION_TYPE_PARALLEL_TO_COORDINATE_SYSTEM: SurfaceInputAxesRotationSpecificationType
|
|
128
|
-
SURFACE_INPUT_AXES_ROTATION_SPECIFICATION_TYPE_PARALLEL_TO_LINES: SurfaceInputAxesRotationSpecificationType
|
|
129
|
-
SURFACE_INPUT_AXES_AXIS_X: SurfaceInputAxesAxis
|
|
130
|
-
SURFACE_INPUT_AXES_AXIS_Y: SurfaceInputAxesAxis
|
|
131
|
-
SURFACE_RESULT_AXES_ROTATION_SPECIFICATION_TYPE_IDENTICAL_TO_INPUT_AXES: SurfaceResultAxesRotationSpecificationType
|
|
132
|
-
SURFACE_GRID_TYPE_CARTESIAN: SurfaceGridType
|
|
133
|
-
SURFACE_GRID_TYPE_POLAR: SurfaceGridType
|
|
134
|
-
SURFACE_DEFLECTION_CHECK_SURFACE_TYPE_DOUBLE_SUPPORTED: SurfaceDeflectionCheckSurfaceType
|
|
135
|
-
SURFACE_DEFLECTION_CHECK_SURFACE_TYPE_CANTILEVER: SurfaceDeflectionCheckSurfaceType
|
|
136
|
-
SURFACE_DEFLECTION_CHECK_DISPLACEMENT_REFERENCE_DEFORMED_USER_DEFINED_REFERENCE_PLANE: SurfaceDeflectionCheckDisplacementReference
|
|
137
|
-
SURFACE_DEFLECTION_CHECK_DISPLACEMENT_REFERENCE_PARALLEL_SURFACE: SurfaceDeflectionCheckDisplacementReference
|
|
138
|
-
SURFACE_DEFLECTION_CHECK_DISPLACEMENT_REFERENCE_UNDEFORMED_SYSTEM: SurfaceDeflectionCheckDisplacementReference
|
|
139
|
-
SURFACE_DEFLECTION_CHECK_REFERENCE_LENGTH_Z_DEFINITION_TYPE_MANUALLY: SurfaceDeflectionCheckReferenceLengthZDefinitionType
|
|
140
|
-
SURFACE_DEFLECTION_CHECK_REFERENCE_LENGTH_Z_DEFINITION_TYPE_BY_MAXIMUM_BOUNDARY_LINE: SurfaceDeflectionCheckReferenceLengthZDefinitionType
|
|
141
|
-
SURFACE_DEFLECTION_CHECK_REFERENCE_LENGTH_Z_DEFINITION_TYPE_BY_MINIMUM_BOUNDARY_LINE: SurfaceDeflectionCheckReferenceLengthZDefinitionType
|
|
142
|
-
|
|
143
10
|
class Surface(_message.Message):
|
|
144
|
-
__slots__ = ("no", "geometry", "type", "boundary_lines", "thickness", "material", "analytical_area", "analytical_volume", "analytical_mass", "analytical_center_of_gravity", "analytical_center_of_gravity_x", "analytical_center_of_gravity_y", "analytical_center_of_gravity_z", "area", "volume", "mass", "center_of_gravity", "center_of_gravity_x", "center_of_gravity_y", "center_of_gravity_z", "position", "position_short", "grid_enabled", "is_deactivated_for_calculation", "comment", "design_properties_via_surface", "design_properties_via_parent_surface_set", "design_properties_parent_surface_set", "load_transfer_direction", "is_surface_weight_enabled", "is_advanced_distribution_settings_enabled", "surface_weight", "
|
|
11
|
+
__slots__ = ("no", "geometry", "type", "boundary_lines", "thickness", "material", "generating_object_info", "analytical_area", "analytical_volume", "analytical_mass", "analytical_center_of_gravity", "analytical_center_of_gravity_x", "analytical_center_of_gravity_y", "analytical_center_of_gravity_z", "area", "volume", "mass", "center_of_gravity", "center_of_gravity_x", "center_of_gravity_y", "center_of_gravity_z", "position", "position_short", "grid_enabled", "activate_load_transfer", "is_deactivated_for_calculation", "is_surface_cells_deactivated", "comment", "design_properties_via_surface", "design_properties_via_parent_surface_set", "design_properties_parent_surface_set", "is_active_in_compression", "load_transfer_direction", "is_surface_weight_enabled", "is_advanced_distribution_settings_enabled", "surface_weight", "smoothing_factor", "stripe_width", "minimum_number_of_stripes", "consider_member_eccentricity", "consider_section_distribution", "load_distribution", "neglect_equilibrium_of_moments", "neglect_defined_surface_stiffness", "excluded_members", "excluded_parallel_to_members", "excluded_lines", "excluded_parallel_to_lines", "excluded_nodes", "loaded_members", "loaded_lines", "loaded_nodes", "load_distribution_factor_table", "nurbs_control_point_count_in_direction_u", "nurbs_control_point_count_in_direction_v", "nurbs_order_in_direction_u", "nurbs_order_in_direction_v", "nurbs_control_points", "quadrangle_corner_node_1", "quadrangle_corner_node_2", "quadrangle_corner_node_3", "quadrangle_corner_node_4", "quadrangle_corner_nodes", "quadrangle_preferable_shape", "pipe_radius", "pipe_radius_end", "pipe_use_radius_end", "pipe_center_line", "pipe_generated_lines", "min_curv_spline_reference_plane_coordinate_system", "min_curv_spline_reference_work_plane_orientation", "min_curv_spline_definition_type", "min_curv_spline_grid_x_point_count", "min_curv_spline_grid_y_point_count", "min_curv_spline_reference_boundary_lines", "min_curv_spline_reference_probe_coordinates", "min_curv_spline_global_probe_coordinates", "has_line_hinges", "support", "eccentricity", "mesh_refinement", "meshing_type", "input_axes_rotation_specification_type", "input_axes_angular_rotation", "input_axes_axis", "input_axes_lines", "input_axes_point_1", "input_axes_point_1_x", "input_axes_point_1_y", "input_axes_point_1_z", "input_axes_point_2", "input_axes_point_2_x", "input_axes_point_2_y", "input_axes_point_2_z", "input_axes_coordinate_system", "result_axes_rotation_specification_type", "reversed_normal", "grid_type", "grid_origin", "grid_origin_x", "grid_origin_y", "grid_origin_z", "grid_point_count_negative_x", "grid_point_count_positive_x", "grid_point_count_negative_y", "grid_point_count_positive_y", "grid_numbering_increment", "grid_point_count_r", "grid_distance_x", "grid_distance_y", "grid_distance_r", "grid_rotation_alpha", "grid_rotation_beta", "grid_angle_gamma", "grid_adapt_automatically", "auto_detection_of_integrated_objects", "integrated_nodes", "integrated_lines", "integrated_openings", "has_integrated_objects", "has_input_axes_rotation", "has_result_axes_rotation", "surface_steel_design_uls_configuration", "surface_steel_design_sls_configuration", "surface_timber_design_uls_configuration", "surface_timber_design_sls_configuration", "surface_timber_design_fr_configuration", "timber_service_class", "timber_moisture_class", "timber_service_conditions", "surface_aluminum_design_uls_configuration", "surface_aluminum_design_sls_configuration", "surface_glass_design_uls_configuration", "surface_glass_design_sls_configuration", "surface_reinforcements", "is_user_defined_concrete_cover_enabled", "concrete_cover_top", "concrete_cover_bottom", "user_defined_concrete_cover_top", "user_defined_concrete_cover_bottom", "concrete_durability_top", "concrete_durability_bottom", "reinforcement_direction_top", "reinforcement_direction_bottom", "deflection_check_surface_type", "deflection_check_double_supported_surface_type", "deflection_check_displacement_reference", "deflection_check_reference_length_z", "deflection_check_reference_length_z_definition_type", "deflection_check_reference_plane_point_1", "deflection_check_reference_plane_point_1_x", "deflection_check_reference_plane_point_1_y", "deflection_check_reference_plane_point_1_z", "deflection_check_reference_plane_point_2", "deflection_check_reference_plane_point_2_x", "deflection_check_reference_plane_point_2_y", "deflection_check_reference_plane_point_2_z", "deflection_check_reference_plane_point_3", "deflection_check_reference_plane_point_3_x", "deflection_check_reference_plane_point_3_y", "deflection_check_reference_plane_point_3_z", "surface_reinforcement_table", "surface_concrete_design_uls_configuration", "surface_concrete_design_sls_configuration", "surface_concrete_design_fr_configuration", "surface_concrete_design_seismic_configuration", "rotated_boundary_line", "rotated_angle_of_rotation", "rotated_point_p", "rotated_point_p_x", "rotated_point_p_y", "rotated_point_p_z", "rotated_point_r", "rotated_point_r_x", "rotated_point_r_y", "rotated_point_r_z", "rotated_generated_lines", "wind_simulation_enable_specific_settings", "wind_simulation_shrink_wrapping", "wind_simulation_roughness_and_permeability", "wind_simulation_exclude_from_wind_tunnel", "wind_simulation_consider_surface_thickness_above", "wind_simulation_consider_surface_thickness_above_value", "stress_analysis_configuration", "surface_releases_assignment", "bim_ifc_properties", "parent_layer", "is_locked_by_parent_layer", "is_generated", "id_for_export_import", "metadata_for_export_import")
|
|
12
|
+
class Geometry(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
13
|
+
__slots__ = ()
|
|
14
|
+
GEOMETRY_UNKNOWN: _ClassVar[Surface.Geometry]
|
|
15
|
+
GEOMETRY_MINIMUM_CURVATURE_SPLINE: _ClassVar[Surface.Geometry]
|
|
16
|
+
GEOMETRY_NURBS: _ClassVar[Surface.Geometry]
|
|
17
|
+
GEOMETRY_PIPE: _ClassVar[Surface.Geometry]
|
|
18
|
+
GEOMETRY_PLANE: _ClassVar[Surface.Geometry]
|
|
19
|
+
GEOMETRY_QUADRANGLE: _ClassVar[Surface.Geometry]
|
|
20
|
+
GEOMETRY_ROTATED: _ClassVar[Surface.Geometry]
|
|
21
|
+
GEOMETRY_TRIMMED: _ClassVar[Surface.Geometry]
|
|
22
|
+
GEOMETRY_UNKNOWN: Surface.Geometry
|
|
23
|
+
GEOMETRY_MINIMUM_CURVATURE_SPLINE: Surface.Geometry
|
|
24
|
+
GEOMETRY_NURBS: Surface.Geometry
|
|
25
|
+
GEOMETRY_PIPE: Surface.Geometry
|
|
26
|
+
GEOMETRY_PLANE: Surface.Geometry
|
|
27
|
+
GEOMETRY_QUADRANGLE: Surface.Geometry
|
|
28
|
+
GEOMETRY_ROTATED: Surface.Geometry
|
|
29
|
+
GEOMETRY_TRIMMED: Surface.Geometry
|
|
30
|
+
class Type(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
31
|
+
__slots__ = ()
|
|
32
|
+
TYPE_STANDARD: _ClassVar[Surface.Type]
|
|
33
|
+
TYPE_FLOOR: _ClassVar[Surface.Type]
|
|
34
|
+
TYPE_FLOOR_DIAPHRAGM: _ClassVar[Surface.Type]
|
|
35
|
+
TYPE_FLOOR_FLEXIBLE_DIAPHRAGM: _ClassVar[Surface.Type]
|
|
36
|
+
TYPE_FLOOR_SEMIRIGID: _ClassVar[Surface.Type]
|
|
37
|
+
TYPE_GROUNDWATER: _ClassVar[Surface.Type]
|
|
38
|
+
TYPE_LOAD_TRANSFER: _ClassVar[Surface.Type]
|
|
39
|
+
TYPE_MEMBRANE: _ClassVar[Surface.Type]
|
|
40
|
+
TYPE_RIGID: _ClassVar[Surface.Type]
|
|
41
|
+
TYPE_WITHOUT_MEMBRANE_TENSION: _ClassVar[Surface.Type]
|
|
42
|
+
TYPE_WITHOUT_THICKNESS: _ClassVar[Surface.Type]
|
|
43
|
+
TYPE_STANDARD: Surface.Type
|
|
44
|
+
TYPE_FLOOR: Surface.Type
|
|
45
|
+
TYPE_FLOOR_DIAPHRAGM: Surface.Type
|
|
46
|
+
TYPE_FLOOR_FLEXIBLE_DIAPHRAGM: Surface.Type
|
|
47
|
+
TYPE_FLOOR_SEMIRIGID: Surface.Type
|
|
48
|
+
TYPE_GROUNDWATER: Surface.Type
|
|
49
|
+
TYPE_LOAD_TRANSFER: Surface.Type
|
|
50
|
+
TYPE_MEMBRANE: Surface.Type
|
|
51
|
+
TYPE_RIGID: Surface.Type
|
|
52
|
+
TYPE_WITHOUT_MEMBRANE_TENSION: Surface.Type
|
|
53
|
+
TYPE_WITHOUT_THICKNESS: Surface.Type
|
|
54
|
+
class LoadTransferDirection(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
55
|
+
__slots__ = ()
|
|
56
|
+
LOAD_TRANSFER_DIRECTION_IN_X: _ClassVar[Surface.LoadTransferDirection]
|
|
57
|
+
LOAD_TRANSFER_DIRECTION_IN_BOTH: _ClassVar[Surface.LoadTransferDirection]
|
|
58
|
+
LOAD_TRANSFER_DIRECTION_IN_Y: _ClassVar[Surface.LoadTransferDirection]
|
|
59
|
+
LOAD_TRANSFER_DIRECTION_ISOTROPIC: _ClassVar[Surface.LoadTransferDirection]
|
|
60
|
+
LOAD_TRANSFER_DIRECTION_IN_X: Surface.LoadTransferDirection
|
|
61
|
+
LOAD_TRANSFER_DIRECTION_IN_BOTH: Surface.LoadTransferDirection
|
|
62
|
+
LOAD_TRANSFER_DIRECTION_IN_Y: Surface.LoadTransferDirection
|
|
63
|
+
LOAD_TRANSFER_DIRECTION_ISOTROPIC: Surface.LoadTransferDirection
|
|
64
|
+
class LoadDistribution(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
65
|
+
__slots__ = ()
|
|
66
|
+
LOAD_DISTRIBUTION_UNIFORM: _ClassVar[Surface.LoadDistribution]
|
|
67
|
+
LOAD_DISTRIBUTION_VARYING_LINEAR: _ClassVar[Surface.LoadDistribution]
|
|
68
|
+
LOAD_DISTRIBUTION_UNIFORM: Surface.LoadDistribution
|
|
69
|
+
LOAD_DISTRIBUTION_VARYING_LINEAR: Surface.LoadDistribution
|
|
70
|
+
class QuadranglePreferableShape(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
71
|
+
__slots__ = ()
|
|
72
|
+
QUADRANGLE_PREFERABLE_SHAPE_ROTATED: _ClassVar[Surface.QuadranglePreferableShape]
|
|
73
|
+
QUADRANGLE_PREFERABLE_SHAPE_PIPE: _ClassVar[Surface.QuadranglePreferableShape]
|
|
74
|
+
QUADRANGLE_PREFERABLE_SHAPE_ROTATED: Surface.QuadranglePreferableShape
|
|
75
|
+
QUADRANGLE_PREFERABLE_SHAPE_PIPE: Surface.QuadranglePreferableShape
|
|
76
|
+
class MinCurvSplineReferenceWorkPlaneOrientation(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
77
|
+
__slots__ = ()
|
|
78
|
+
MIN_CURV_SPLINE_REFERENCE_WORK_PLANE_ORIENTATION_XY: _ClassVar[Surface.MinCurvSplineReferenceWorkPlaneOrientation]
|
|
79
|
+
MIN_CURV_SPLINE_REFERENCE_WORK_PLANE_ORIENTATION_XZ: _ClassVar[Surface.MinCurvSplineReferenceWorkPlaneOrientation]
|
|
80
|
+
MIN_CURV_SPLINE_REFERENCE_WORK_PLANE_ORIENTATION_YZ: _ClassVar[Surface.MinCurvSplineReferenceWorkPlaneOrientation]
|
|
81
|
+
MIN_CURV_SPLINE_REFERENCE_WORK_PLANE_ORIENTATION_XY: Surface.MinCurvSplineReferenceWorkPlaneOrientation
|
|
82
|
+
MIN_CURV_SPLINE_REFERENCE_WORK_PLANE_ORIENTATION_XZ: Surface.MinCurvSplineReferenceWorkPlaneOrientation
|
|
83
|
+
MIN_CURV_SPLINE_REFERENCE_WORK_PLANE_ORIENTATION_YZ: Surface.MinCurvSplineReferenceWorkPlaneOrientation
|
|
84
|
+
class MinCurvSplineDefinitionType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
85
|
+
__slots__ = ()
|
|
86
|
+
MIN_CURV_SPLINE_DEFINITION_TYPE_REFERENCE_PLANE_BOUNDARY_LINES: _ClassVar[Surface.MinCurvSplineDefinitionType]
|
|
87
|
+
MIN_CURV_SPLINE_DEFINITION_TYPE_REFERENCE_PLANE_BOUNDARY_LINES: Surface.MinCurvSplineDefinitionType
|
|
88
|
+
class MeshingType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
89
|
+
__slots__ = ()
|
|
90
|
+
MESHING_TYPE_USE_GLOBAL_SETTINGS: _ClassVar[Surface.MeshingType]
|
|
91
|
+
MESHING_TYPE_FREE: _ClassVar[Surface.MeshingType]
|
|
92
|
+
MESHING_TYPE_MAPPED: _ClassVar[Surface.MeshingType]
|
|
93
|
+
MESHING_TYPE_USE_GLOBAL_SETTINGS: Surface.MeshingType
|
|
94
|
+
MESHING_TYPE_FREE: Surface.MeshingType
|
|
95
|
+
MESHING_TYPE_MAPPED: Surface.MeshingType
|
|
96
|
+
class InputAxesRotationSpecificationType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
97
|
+
__slots__ = ()
|
|
98
|
+
INPUT_AXES_ROTATION_SPECIFICATION_TYPE_ANGULAR_ROTATION: _ClassVar[Surface.InputAxesRotationSpecificationType]
|
|
99
|
+
INPUT_AXES_ROTATION_SPECIFICATION_TYPE_DIRECT_TO_POINT: _ClassVar[Surface.InputAxesRotationSpecificationType]
|
|
100
|
+
INPUT_AXES_ROTATION_SPECIFICATION_TYPE_PARALLEL_TO_COORDINATE_SYSTEM: _ClassVar[Surface.InputAxesRotationSpecificationType]
|
|
101
|
+
INPUT_AXES_ROTATION_SPECIFICATION_TYPE_PARALLEL_TO_LINES: _ClassVar[Surface.InputAxesRotationSpecificationType]
|
|
102
|
+
INPUT_AXES_ROTATION_SPECIFICATION_TYPE_ANGULAR_ROTATION: Surface.InputAxesRotationSpecificationType
|
|
103
|
+
INPUT_AXES_ROTATION_SPECIFICATION_TYPE_DIRECT_TO_POINT: Surface.InputAxesRotationSpecificationType
|
|
104
|
+
INPUT_AXES_ROTATION_SPECIFICATION_TYPE_PARALLEL_TO_COORDINATE_SYSTEM: Surface.InputAxesRotationSpecificationType
|
|
105
|
+
INPUT_AXES_ROTATION_SPECIFICATION_TYPE_PARALLEL_TO_LINES: Surface.InputAxesRotationSpecificationType
|
|
106
|
+
class InputAxesAxis(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
107
|
+
__slots__ = ()
|
|
108
|
+
INPUT_AXES_AXIS_X: _ClassVar[Surface.InputAxesAxis]
|
|
109
|
+
INPUT_AXES_AXIS_Y: _ClassVar[Surface.InputAxesAxis]
|
|
110
|
+
INPUT_AXES_AXIS_X: Surface.InputAxesAxis
|
|
111
|
+
INPUT_AXES_AXIS_Y: Surface.InputAxesAxis
|
|
112
|
+
class ResultAxesRotationSpecificationType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
113
|
+
__slots__ = ()
|
|
114
|
+
RESULT_AXES_ROTATION_SPECIFICATION_TYPE_IDENTICAL_TO_INPUT_AXES: _ClassVar[Surface.ResultAxesRotationSpecificationType]
|
|
115
|
+
RESULT_AXES_ROTATION_SPECIFICATION_TYPE_IDENTICAL_TO_INPUT_AXES: Surface.ResultAxesRotationSpecificationType
|
|
116
|
+
class GridType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
117
|
+
__slots__ = ()
|
|
118
|
+
GRID_TYPE_CARTESIAN: _ClassVar[Surface.GridType]
|
|
119
|
+
GRID_TYPE_POLAR: _ClassVar[Surface.GridType]
|
|
120
|
+
GRID_TYPE_CARTESIAN: Surface.GridType
|
|
121
|
+
GRID_TYPE_POLAR: Surface.GridType
|
|
122
|
+
class DeflectionCheckSurfaceType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
123
|
+
__slots__ = ()
|
|
124
|
+
DEFLECTION_CHECK_SURFACE_TYPE_DOUBLE_SUPPORTED: _ClassVar[Surface.DeflectionCheckSurfaceType]
|
|
125
|
+
DEFLECTION_CHECK_SURFACE_TYPE_CANTILEVER: _ClassVar[Surface.DeflectionCheckSurfaceType]
|
|
126
|
+
DEFLECTION_CHECK_SURFACE_TYPE_DOUBLE_SUPPORTED: Surface.DeflectionCheckSurfaceType
|
|
127
|
+
DEFLECTION_CHECK_SURFACE_TYPE_CANTILEVER: Surface.DeflectionCheckSurfaceType
|
|
128
|
+
class DeflectionCheckDoubleSupportedSurfaceType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
129
|
+
__slots__ = ()
|
|
130
|
+
DEFLECTION_CHECK_DOUBLE_SUPPORTED_SURFACE_TYPE_GENERAL: _ClassVar[Surface.DeflectionCheckDoubleSupportedSurfaceType]
|
|
131
|
+
DEFLECTION_CHECK_DOUBLE_SUPPORTED_SURFACE_TYPE_WALK_ON_DESIGN: _ClassVar[Surface.DeflectionCheckDoubleSupportedSurfaceType]
|
|
132
|
+
DEFLECTION_CHECK_DOUBLE_SUPPORTED_SURFACE_TYPE_GENERAL: Surface.DeflectionCheckDoubleSupportedSurfaceType
|
|
133
|
+
DEFLECTION_CHECK_DOUBLE_SUPPORTED_SURFACE_TYPE_WALK_ON_DESIGN: Surface.DeflectionCheckDoubleSupportedSurfaceType
|
|
134
|
+
class DeflectionCheckDisplacementReference(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
135
|
+
__slots__ = ()
|
|
136
|
+
DEFLECTION_CHECK_DISPLACEMENT_REFERENCE_DEFORMED_USER_DEFINED_REFERENCE_PLANE: _ClassVar[Surface.DeflectionCheckDisplacementReference]
|
|
137
|
+
DEFLECTION_CHECK_DISPLACEMENT_REFERENCE_PARALLEL_SURFACE: _ClassVar[Surface.DeflectionCheckDisplacementReference]
|
|
138
|
+
DEFLECTION_CHECK_DISPLACEMENT_REFERENCE_UNDEFORMED_SYSTEM: _ClassVar[Surface.DeflectionCheckDisplacementReference]
|
|
139
|
+
DEFLECTION_CHECK_DISPLACEMENT_REFERENCE_DEFORMED_USER_DEFINED_REFERENCE_PLANE: Surface.DeflectionCheckDisplacementReference
|
|
140
|
+
DEFLECTION_CHECK_DISPLACEMENT_REFERENCE_PARALLEL_SURFACE: Surface.DeflectionCheckDisplacementReference
|
|
141
|
+
DEFLECTION_CHECK_DISPLACEMENT_REFERENCE_UNDEFORMED_SYSTEM: Surface.DeflectionCheckDisplacementReference
|
|
142
|
+
class DeflectionCheckReferenceLengthZDefinitionType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
143
|
+
__slots__ = ()
|
|
144
|
+
DEFLECTION_CHECK_REFERENCE_LENGTH_Z_DEFINITION_TYPE_MANUALLY: _ClassVar[Surface.DeflectionCheckReferenceLengthZDefinitionType]
|
|
145
|
+
DEFLECTION_CHECK_REFERENCE_LENGTH_Z_DEFINITION_TYPE_BY_MAXIMUM_BOUNDARY_LINE: _ClassVar[Surface.DeflectionCheckReferenceLengthZDefinitionType]
|
|
146
|
+
DEFLECTION_CHECK_REFERENCE_LENGTH_Z_DEFINITION_TYPE_BY_MINIMUM_BOUNDARY_LINE: _ClassVar[Surface.DeflectionCheckReferenceLengthZDefinitionType]
|
|
147
|
+
DEFLECTION_CHECK_REFERENCE_LENGTH_Z_DEFINITION_TYPE_MANUALLY: Surface.DeflectionCheckReferenceLengthZDefinitionType
|
|
148
|
+
DEFLECTION_CHECK_REFERENCE_LENGTH_Z_DEFINITION_TYPE_BY_MAXIMUM_BOUNDARY_LINE: Surface.DeflectionCheckReferenceLengthZDefinitionType
|
|
149
|
+
DEFLECTION_CHECK_REFERENCE_LENGTH_Z_DEFINITION_TYPE_BY_MINIMUM_BOUNDARY_LINE: Surface.DeflectionCheckReferenceLengthZDefinitionType
|
|
150
|
+
class LoadDistributionFactorTable(_message.Message):
|
|
151
|
+
__slots__ = ("rows",)
|
|
152
|
+
ROWS_FIELD_NUMBER: _ClassVar[int]
|
|
153
|
+
rows: _containers.RepeatedCompositeFieldContainer[Surface.LoadDistributionFactorTableRow]
|
|
154
|
+
def __init__(self, rows: _Optional[_Iterable[_Union[Surface.LoadDistributionFactorTableRow, _Mapping]]] = ...) -> None: ...
|
|
155
|
+
class LoadDistributionFactorTableRow(_message.Message):
|
|
156
|
+
__slots__ = ("no", "description", "lines", "members", "distribution_factor", "comment")
|
|
157
|
+
NO_FIELD_NUMBER: _ClassVar[int]
|
|
158
|
+
DESCRIPTION_FIELD_NUMBER: _ClassVar[int]
|
|
159
|
+
LINES_FIELD_NUMBER: _ClassVar[int]
|
|
160
|
+
MEMBERS_FIELD_NUMBER: _ClassVar[int]
|
|
161
|
+
DISTRIBUTION_FACTOR_FIELD_NUMBER: _ClassVar[int]
|
|
162
|
+
COMMENT_FIELD_NUMBER: _ClassVar[int]
|
|
163
|
+
no: int
|
|
164
|
+
description: str
|
|
165
|
+
lines: _containers.RepeatedScalarFieldContainer[int]
|
|
166
|
+
members: _containers.RepeatedScalarFieldContainer[int]
|
|
167
|
+
distribution_factor: float
|
|
168
|
+
comment: str
|
|
169
|
+
def __init__(self, no: _Optional[int] = ..., description: _Optional[str] = ..., lines: _Optional[_Iterable[int]] = ..., members: _Optional[_Iterable[int]] = ..., distribution_factor: _Optional[float] = ..., comment: _Optional[str] = ...) -> None: ...
|
|
170
|
+
class SurfaceNurbsControlPointsRowsTable(_message.Message):
|
|
171
|
+
__slots__ = ()
|
|
172
|
+
def __init__(self) -> None: ...
|
|
173
|
+
class MinCurvSplineReferenceProbeCoordinatesTable(_message.Message):
|
|
174
|
+
__slots__ = ("rows",)
|
|
175
|
+
ROWS_FIELD_NUMBER: _ClassVar[int]
|
|
176
|
+
rows: _containers.RepeatedCompositeFieldContainer[Surface.MinCurvSplineReferenceProbeCoordinatesRow]
|
|
177
|
+
def __init__(self, rows: _Optional[_Iterable[_Union[Surface.MinCurvSplineReferenceProbeCoordinatesRow, _Mapping]]] = ...) -> None: ...
|
|
178
|
+
class MinCurvSplineReferenceProbeCoordinatesRow(_message.Message):
|
|
179
|
+
__slots__ = ("no", "description", "coordinate_x", "coordinate_y", "coordinate_z")
|
|
180
|
+
NO_FIELD_NUMBER: _ClassVar[int]
|
|
181
|
+
DESCRIPTION_FIELD_NUMBER: _ClassVar[int]
|
|
182
|
+
COORDINATE_X_FIELD_NUMBER: _ClassVar[int]
|
|
183
|
+
COORDINATE_Y_FIELD_NUMBER: _ClassVar[int]
|
|
184
|
+
COORDINATE_Z_FIELD_NUMBER: _ClassVar[int]
|
|
185
|
+
no: int
|
|
186
|
+
description: str
|
|
187
|
+
coordinate_x: float
|
|
188
|
+
coordinate_y: float
|
|
189
|
+
coordinate_z: float
|
|
190
|
+
def __init__(self, no: _Optional[int] = ..., description: _Optional[str] = ..., coordinate_x: _Optional[float] = ..., coordinate_y: _Optional[float] = ..., coordinate_z: _Optional[float] = ...) -> None: ...
|
|
191
|
+
class MinCurvSplineGlobalProbeCoordinatesTable(_message.Message):
|
|
192
|
+
__slots__ = ("rows",)
|
|
193
|
+
ROWS_FIELD_NUMBER: _ClassVar[int]
|
|
194
|
+
rows: _containers.RepeatedCompositeFieldContainer[Surface.MinCurvSplineGlobalProbeCoordinatesRow]
|
|
195
|
+
def __init__(self, rows: _Optional[_Iterable[_Union[Surface.MinCurvSplineGlobalProbeCoordinatesRow, _Mapping]]] = ...) -> None: ...
|
|
196
|
+
class MinCurvSplineGlobalProbeCoordinatesRow(_message.Message):
|
|
197
|
+
__slots__ = ("no", "description", "coordinate_x", "coordinate_y", "coordinate_z")
|
|
198
|
+
NO_FIELD_NUMBER: _ClassVar[int]
|
|
199
|
+
DESCRIPTION_FIELD_NUMBER: _ClassVar[int]
|
|
200
|
+
COORDINATE_X_FIELD_NUMBER: _ClassVar[int]
|
|
201
|
+
COORDINATE_Y_FIELD_NUMBER: _ClassVar[int]
|
|
202
|
+
COORDINATE_Z_FIELD_NUMBER: _ClassVar[int]
|
|
203
|
+
no: int
|
|
204
|
+
description: str
|
|
205
|
+
coordinate_x: float
|
|
206
|
+
coordinate_y: float
|
|
207
|
+
coordinate_z: float
|
|
208
|
+
def __init__(self, no: _Optional[int] = ..., description: _Optional[str] = ..., coordinate_x: _Optional[float] = ..., coordinate_y: _Optional[float] = ..., coordinate_z: _Optional[float] = ...) -> None: ...
|
|
209
|
+
class SurfaceReinforcementTable(_message.Message):
|
|
210
|
+
__slots__ = ("rows",)
|
|
211
|
+
ROWS_FIELD_NUMBER: _ClassVar[int]
|
|
212
|
+
rows: _containers.RepeatedCompositeFieldContainer[Surface.SurfaceReinforcementTableRow]
|
|
213
|
+
def __init__(self, rows: _Optional[_Iterable[_Union[Surface.SurfaceReinforcementTableRow, _Mapping]]] = ...) -> None: ...
|
|
214
|
+
class SurfaceReinforcementTableRow(_message.Message):
|
|
215
|
+
__slots__ = ("no", "description", "surface_reinforcement")
|
|
216
|
+
NO_FIELD_NUMBER: _ClassVar[int]
|
|
217
|
+
DESCRIPTION_FIELD_NUMBER: _ClassVar[int]
|
|
218
|
+
SURFACE_REINFORCEMENT_FIELD_NUMBER: _ClassVar[int]
|
|
219
|
+
no: int
|
|
220
|
+
description: str
|
|
221
|
+
surface_reinforcement: int
|
|
222
|
+
def __init__(self, no: _Optional[int] = ..., description: _Optional[str] = ..., surface_reinforcement: _Optional[int] = ...) -> None: ...
|
|
223
|
+
class SurfaceReleasesAssignmentTable(_message.Message):
|
|
224
|
+
__slots__ = ("rows",)
|
|
225
|
+
ROWS_FIELD_NUMBER: _ClassVar[int]
|
|
226
|
+
rows: _containers.RepeatedCompositeFieldContainer[Surface.SurfaceReleasesAssignmentRow]
|
|
227
|
+
def __init__(self, rows: _Optional[_Iterable[_Union[Surface.SurfaceReleasesAssignmentRow, _Mapping]]] = ...) -> None: ...
|
|
228
|
+
class SurfaceReleasesAssignmentRow(_message.Message):
|
|
229
|
+
__slots__ = ("no", "description", "assigned_object_no", "active", "release_no", "release_location", "released_objects", "generated_objects")
|
|
230
|
+
class ReleaseLocation(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
231
|
+
__slots__ = ()
|
|
232
|
+
RELEASE_LOCATION_ORIGIN: _ClassVar[Surface.SurfaceReleasesAssignmentRow.ReleaseLocation]
|
|
233
|
+
RELEASE_LOCATION_RELEASED: _ClassVar[Surface.SurfaceReleasesAssignmentRow.ReleaseLocation]
|
|
234
|
+
RELEASE_LOCATION_ORIGIN: Surface.SurfaceReleasesAssignmentRow.ReleaseLocation
|
|
235
|
+
RELEASE_LOCATION_RELEASED: Surface.SurfaceReleasesAssignmentRow.ReleaseLocation
|
|
236
|
+
NO_FIELD_NUMBER: _ClassVar[int]
|
|
237
|
+
DESCRIPTION_FIELD_NUMBER: _ClassVar[int]
|
|
238
|
+
ASSIGNED_OBJECT_NO_FIELD_NUMBER: _ClassVar[int]
|
|
239
|
+
ACTIVE_FIELD_NUMBER: _ClassVar[int]
|
|
240
|
+
RELEASE_NO_FIELD_NUMBER: _ClassVar[int]
|
|
241
|
+
RELEASE_LOCATION_FIELD_NUMBER: _ClassVar[int]
|
|
242
|
+
RELEASED_OBJECTS_FIELD_NUMBER: _ClassVar[int]
|
|
243
|
+
GENERATED_OBJECTS_FIELD_NUMBER: _ClassVar[int]
|
|
244
|
+
no: int
|
|
245
|
+
description: str
|
|
246
|
+
assigned_object_no: int
|
|
247
|
+
active: bool
|
|
248
|
+
release_no: int
|
|
249
|
+
release_location: Surface.SurfaceReleasesAssignmentRow.ReleaseLocation
|
|
250
|
+
released_objects: str
|
|
251
|
+
generated_objects: str
|
|
252
|
+
def __init__(self, no: _Optional[int] = ..., description: _Optional[str] = ..., assigned_object_no: _Optional[int] = ..., active: bool = ..., release_no: _Optional[int] = ..., release_location: _Optional[_Union[Surface.SurfaceReleasesAssignmentRow.ReleaseLocation, str]] = ..., released_objects: _Optional[str] = ..., generated_objects: _Optional[str] = ...) -> None: ...
|
|
253
|
+
class BimIfcPropertiesTreeTable(_message.Message):
|
|
254
|
+
__slots__ = ("rows",)
|
|
255
|
+
ROWS_FIELD_NUMBER: _ClassVar[int]
|
|
256
|
+
rows: _containers.RepeatedCompositeFieldContainer[Surface.BimIfcPropertiesTreeTableRow]
|
|
257
|
+
def __init__(self, rows: _Optional[_Iterable[_Union[Surface.BimIfcPropertiesTreeTableRow, _Mapping]]] = ...) -> None: ...
|
|
258
|
+
class BimIfcPropertiesTreeTableRow(_message.Message):
|
|
259
|
+
__slots__ = ("key", "name", "value", "rows")
|
|
260
|
+
KEY_FIELD_NUMBER: _ClassVar[int]
|
|
261
|
+
NAME_FIELD_NUMBER: _ClassVar[int]
|
|
262
|
+
VALUE_FIELD_NUMBER: _ClassVar[int]
|
|
263
|
+
ROWS_FIELD_NUMBER: _ClassVar[int]
|
|
264
|
+
key: str
|
|
265
|
+
name: str
|
|
266
|
+
value: str
|
|
267
|
+
rows: _containers.RepeatedCompositeFieldContainer[Surface.BimIfcPropertiesTreeTableRow]
|
|
268
|
+
def __init__(self, key: _Optional[str] = ..., name: _Optional[str] = ..., value: _Optional[str] = ..., rows: _Optional[_Iterable[_Union[Surface.BimIfcPropertiesTreeTableRow, _Mapping]]] = ...) -> None: ...
|
|
145
269
|
NO_FIELD_NUMBER: _ClassVar[int]
|
|
146
270
|
GEOMETRY_FIELD_NUMBER: _ClassVar[int]
|
|
147
271
|
TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
148
272
|
BOUNDARY_LINES_FIELD_NUMBER: _ClassVar[int]
|
|
149
273
|
THICKNESS_FIELD_NUMBER: _ClassVar[int]
|
|
150
274
|
MATERIAL_FIELD_NUMBER: _ClassVar[int]
|
|
275
|
+
GENERATING_OBJECT_INFO_FIELD_NUMBER: _ClassVar[int]
|
|
151
276
|
ANALYTICAL_AREA_FIELD_NUMBER: _ClassVar[int]
|
|
152
277
|
ANALYTICAL_VOLUME_FIELD_NUMBER: _ClassVar[int]
|
|
153
278
|
ANALYTICAL_MASS_FIELD_NUMBER: _ClassVar[int]
|
|
@@ -165,21 +290,26 @@ class Surface(_message.Message):
|
|
|
165
290
|
POSITION_FIELD_NUMBER: _ClassVar[int]
|
|
166
291
|
POSITION_SHORT_FIELD_NUMBER: _ClassVar[int]
|
|
167
292
|
GRID_ENABLED_FIELD_NUMBER: _ClassVar[int]
|
|
293
|
+
ACTIVATE_LOAD_TRANSFER_FIELD_NUMBER: _ClassVar[int]
|
|
168
294
|
IS_DEACTIVATED_FOR_CALCULATION_FIELD_NUMBER: _ClassVar[int]
|
|
295
|
+
IS_SURFACE_CELLS_DEACTIVATED_FIELD_NUMBER: _ClassVar[int]
|
|
169
296
|
COMMENT_FIELD_NUMBER: _ClassVar[int]
|
|
170
297
|
DESIGN_PROPERTIES_VIA_SURFACE_FIELD_NUMBER: _ClassVar[int]
|
|
171
298
|
DESIGN_PROPERTIES_VIA_PARENT_SURFACE_SET_FIELD_NUMBER: _ClassVar[int]
|
|
172
299
|
DESIGN_PROPERTIES_PARENT_SURFACE_SET_FIELD_NUMBER: _ClassVar[int]
|
|
300
|
+
IS_ACTIVE_IN_COMPRESSION_FIELD_NUMBER: _ClassVar[int]
|
|
173
301
|
LOAD_TRANSFER_DIRECTION_FIELD_NUMBER: _ClassVar[int]
|
|
174
302
|
IS_SURFACE_WEIGHT_ENABLED_FIELD_NUMBER: _ClassVar[int]
|
|
175
303
|
IS_ADVANCED_DISTRIBUTION_SETTINGS_ENABLED_FIELD_NUMBER: _ClassVar[int]
|
|
176
304
|
SURFACE_WEIGHT_FIELD_NUMBER: _ClassVar[int]
|
|
177
|
-
|
|
305
|
+
SMOOTHING_FACTOR_FIELD_NUMBER: _ClassVar[int]
|
|
178
306
|
STRIPE_WIDTH_FIELD_NUMBER: _ClassVar[int]
|
|
307
|
+
MINIMUM_NUMBER_OF_STRIPES_FIELD_NUMBER: _ClassVar[int]
|
|
179
308
|
CONSIDER_MEMBER_ECCENTRICITY_FIELD_NUMBER: _ClassVar[int]
|
|
180
309
|
CONSIDER_SECTION_DISTRIBUTION_FIELD_NUMBER: _ClassVar[int]
|
|
181
310
|
LOAD_DISTRIBUTION_FIELD_NUMBER: _ClassVar[int]
|
|
182
311
|
NEGLECT_EQUILIBRIUM_OF_MOMENTS_FIELD_NUMBER: _ClassVar[int]
|
|
312
|
+
NEGLECT_DEFINED_SURFACE_STIFFNESS_FIELD_NUMBER: _ClassVar[int]
|
|
183
313
|
EXCLUDED_MEMBERS_FIELD_NUMBER: _ClassVar[int]
|
|
184
314
|
EXCLUDED_PARALLEL_TO_MEMBERS_FIELD_NUMBER: _ClassVar[int]
|
|
185
315
|
EXCLUDED_LINES_FIELD_NUMBER: _ClassVar[int]
|
|
@@ -188,22 +318,31 @@ class Surface(_message.Message):
|
|
|
188
318
|
LOADED_MEMBERS_FIELD_NUMBER: _ClassVar[int]
|
|
189
319
|
LOADED_LINES_FIELD_NUMBER: _ClassVar[int]
|
|
190
320
|
LOADED_NODES_FIELD_NUMBER: _ClassVar[int]
|
|
321
|
+
LOAD_DISTRIBUTION_FACTOR_TABLE_FIELD_NUMBER: _ClassVar[int]
|
|
191
322
|
NURBS_CONTROL_POINT_COUNT_IN_DIRECTION_U_FIELD_NUMBER: _ClassVar[int]
|
|
192
323
|
NURBS_CONTROL_POINT_COUNT_IN_DIRECTION_V_FIELD_NUMBER: _ClassVar[int]
|
|
193
324
|
NURBS_ORDER_IN_DIRECTION_U_FIELD_NUMBER: _ClassVar[int]
|
|
194
325
|
NURBS_ORDER_IN_DIRECTION_V_FIELD_NUMBER: _ClassVar[int]
|
|
195
326
|
NURBS_CONTROL_POINTS_FIELD_NUMBER: _ClassVar[int]
|
|
196
|
-
QUADRANGLE_CORNER_NODES_FIELD_NUMBER: _ClassVar[int]
|
|
197
327
|
QUADRANGLE_CORNER_NODE_1_FIELD_NUMBER: _ClassVar[int]
|
|
198
328
|
QUADRANGLE_CORNER_NODE_2_FIELD_NUMBER: _ClassVar[int]
|
|
199
329
|
QUADRANGLE_CORNER_NODE_3_FIELD_NUMBER: _ClassVar[int]
|
|
200
330
|
QUADRANGLE_CORNER_NODE_4_FIELD_NUMBER: _ClassVar[int]
|
|
331
|
+
QUADRANGLE_CORNER_NODES_FIELD_NUMBER: _ClassVar[int]
|
|
201
332
|
QUADRANGLE_PREFERABLE_SHAPE_FIELD_NUMBER: _ClassVar[int]
|
|
202
333
|
PIPE_RADIUS_FIELD_NUMBER: _ClassVar[int]
|
|
203
|
-
PIPE_USE_RADIUS_END_FIELD_NUMBER: _ClassVar[int]
|
|
204
334
|
PIPE_RADIUS_END_FIELD_NUMBER: _ClassVar[int]
|
|
335
|
+
PIPE_USE_RADIUS_END_FIELD_NUMBER: _ClassVar[int]
|
|
205
336
|
PIPE_CENTER_LINE_FIELD_NUMBER: _ClassVar[int]
|
|
206
337
|
PIPE_GENERATED_LINES_FIELD_NUMBER: _ClassVar[int]
|
|
338
|
+
MIN_CURV_SPLINE_REFERENCE_PLANE_COORDINATE_SYSTEM_FIELD_NUMBER: _ClassVar[int]
|
|
339
|
+
MIN_CURV_SPLINE_REFERENCE_WORK_PLANE_ORIENTATION_FIELD_NUMBER: _ClassVar[int]
|
|
340
|
+
MIN_CURV_SPLINE_DEFINITION_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
341
|
+
MIN_CURV_SPLINE_GRID_X_POINT_COUNT_FIELD_NUMBER: _ClassVar[int]
|
|
342
|
+
MIN_CURV_SPLINE_GRID_Y_POINT_COUNT_FIELD_NUMBER: _ClassVar[int]
|
|
343
|
+
MIN_CURV_SPLINE_REFERENCE_BOUNDARY_LINES_FIELD_NUMBER: _ClassVar[int]
|
|
344
|
+
MIN_CURV_SPLINE_REFERENCE_PROBE_COORDINATES_FIELD_NUMBER: _ClassVar[int]
|
|
345
|
+
MIN_CURV_SPLINE_GLOBAL_PROBE_COORDINATES_FIELD_NUMBER: _ClassVar[int]
|
|
207
346
|
HAS_LINE_HINGES_FIELD_NUMBER: _ClassVar[int]
|
|
208
347
|
SUPPORT_FIELD_NUMBER: _ClassVar[int]
|
|
209
348
|
ECCENTRICITY_FIELD_NUMBER: _ClassVar[int]
|
|
@@ -229,7 +368,6 @@ class Surface(_message.Message):
|
|
|
229
368
|
GRID_ORIGIN_X_FIELD_NUMBER: _ClassVar[int]
|
|
230
369
|
GRID_ORIGIN_Y_FIELD_NUMBER: _ClassVar[int]
|
|
231
370
|
GRID_ORIGIN_Z_FIELD_NUMBER: _ClassVar[int]
|
|
232
|
-
GRID_ADAPT_AUTOMATICALLY_FIELD_NUMBER: _ClassVar[int]
|
|
233
371
|
GRID_POINT_COUNT_NEGATIVE_X_FIELD_NUMBER: _ClassVar[int]
|
|
234
372
|
GRID_POINT_COUNT_POSITIVE_X_FIELD_NUMBER: _ClassVar[int]
|
|
235
373
|
GRID_POINT_COUNT_NEGATIVE_Y_FIELD_NUMBER: _ClassVar[int]
|
|
@@ -242,6 +380,7 @@ class Surface(_message.Message):
|
|
|
242
380
|
GRID_ROTATION_ALPHA_FIELD_NUMBER: _ClassVar[int]
|
|
243
381
|
GRID_ROTATION_BETA_FIELD_NUMBER: _ClassVar[int]
|
|
244
382
|
GRID_ANGLE_GAMMA_FIELD_NUMBER: _ClassVar[int]
|
|
383
|
+
GRID_ADAPT_AUTOMATICALLY_FIELD_NUMBER: _ClassVar[int]
|
|
245
384
|
AUTO_DETECTION_OF_INTEGRATED_OBJECTS_FIELD_NUMBER: _ClassVar[int]
|
|
246
385
|
INTEGRATED_NODES_FIELD_NUMBER: _ClassVar[int]
|
|
247
386
|
INTEGRATED_LINES_FIELD_NUMBER: _ClassVar[int]
|
|
@@ -249,12 +388,18 @@ class Surface(_message.Message):
|
|
|
249
388
|
HAS_INTEGRATED_OBJECTS_FIELD_NUMBER: _ClassVar[int]
|
|
250
389
|
HAS_INPUT_AXES_ROTATION_FIELD_NUMBER: _ClassVar[int]
|
|
251
390
|
HAS_RESULT_AXES_ROTATION_FIELD_NUMBER: _ClassVar[int]
|
|
391
|
+
SURFACE_STEEL_DESIGN_ULS_CONFIGURATION_FIELD_NUMBER: _ClassVar[int]
|
|
392
|
+
SURFACE_STEEL_DESIGN_SLS_CONFIGURATION_FIELD_NUMBER: _ClassVar[int]
|
|
252
393
|
SURFACE_TIMBER_DESIGN_ULS_CONFIGURATION_FIELD_NUMBER: _ClassVar[int]
|
|
253
394
|
SURFACE_TIMBER_DESIGN_SLS_CONFIGURATION_FIELD_NUMBER: _ClassVar[int]
|
|
254
395
|
SURFACE_TIMBER_DESIGN_FR_CONFIGURATION_FIELD_NUMBER: _ClassVar[int]
|
|
255
396
|
TIMBER_SERVICE_CLASS_FIELD_NUMBER: _ClassVar[int]
|
|
256
397
|
TIMBER_MOISTURE_CLASS_FIELD_NUMBER: _ClassVar[int]
|
|
257
398
|
TIMBER_SERVICE_CONDITIONS_FIELD_NUMBER: _ClassVar[int]
|
|
399
|
+
SURFACE_ALUMINUM_DESIGN_ULS_CONFIGURATION_FIELD_NUMBER: _ClassVar[int]
|
|
400
|
+
SURFACE_ALUMINUM_DESIGN_SLS_CONFIGURATION_FIELD_NUMBER: _ClassVar[int]
|
|
401
|
+
SURFACE_GLASS_DESIGN_ULS_CONFIGURATION_FIELD_NUMBER: _ClassVar[int]
|
|
402
|
+
SURFACE_GLASS_DESIGN_SLS_CONFIGURATION_FIELD_NUMBER: _ClassVar[int]
|
|
258
403
|
SURFACE_REINFORCEMENTS_FIELD_NUMBER: _ClassVar[int]
|
|
259
404
|
IS_USER_DEFINED_CONCRETE_COVER_ENABLED_FIELD_NUMBER: _ClassVar[int]
|
|
260
405
|
CONCRETE_COVER_TOP_FIELD_NUMBER: _ClassVar[int]
|
|
@@ -266,6 +411,7 @@ class Surface(_message.Message):
|
|
|
266
411
|
REINFORCEMENT_DIRECTION_TOP_FIELD_NUMBER: _ClassVar[int]
|
|
267
412
|
REINFORCEMENT_DIRECTION_BOTTOM_FIELD_NUMBER: _ClassVar[int]
|
|
268
413
|
DEFLECTION_CHECK_SURFACE_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
414
|
+
DEFLECTION_CHECK_DOUBLE_SUPPORTED_SURFACE_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
269
415
|
DEFLECTION_CHECK_DISPLACEMENT_REFERENCE_FIELD_NUMBER: _ClassVar[int]
|
|
270
416
|
DEFLECTION_CHECK_REFERENCE_LENGTH_Z_FIELD_NUMBER: _ClassVar[int]
|
|
271
417
|
DEFLECTION_CHECK_REFERENCE_LENGTH_Z_DEFINITION_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
@@ -297,17 +443,27 @@ class Surface(_message.Message):
|
|
|
297
443
|
ROTATED_POINT_R_Y_FIELD_NUMBER: _ClassVar[int]
|
|
298
444
|
ROTATED_POINT_R_Z_FIELD_NUMBER: _ClassVar[int]
|
|
299
445
|
ROTATED_GENERATED_LINES_FIELD_NUMBER: _ClassVar[int]
|
|
446
|
+
WIND_SIMULATION_ENABLE_SPECIFIC_SETTINGS_FIELD_NUMBER: _ClassVar[int]
|
|
447
|
+
WIND_SIMULATION_SHRINK_WRAPPING_FIELD_NUMBER: _ClassVar[int]
|
|
448
|
+
WIND_SIMULATION_ROUGHNESS_AND_PERMEABILITY_FIELD_NUMBER: _ClassVar[int]
|
|
449
|
+
WIND_SIMULATION_EXCLUDE_FROM_WIND_TUNNEL_FIELD_NUMBER: _ClassVar[int]
|
|
450
|
+
WIND_SIMULATION_CONSIDER_SURFACE_THICKNESS_ABOVE_FIELD_NUMBER: _ClassVar[int]
|
|
451
|
+
WIND_SIMULATION_CONSIDER_SURFACE_THICKNESS_ABOVE_VALUE_FIELD_NUMBER: _ClassVar[int]
|
|
300
452
|
STRESS_ANALYSIS_CONFIGURATION_FIELD_NUMBER: _ClassVar[int]
|
|
453
|
+
SURFACE_RELEASES_ASSIGNMENT_FIELD_NUMBER: _ClassVar[int]
|
|
454
|
+
BIM_IFC_PROPERTIES_FIELD_NUMBER: _ClassVar[int]
|
|
455
|
+
PARENT_LAYER_FIELD_NUMBER: _ClassVar[int]
|
|
456
|
+
IS_LOCKED_BY_PARENT_LAYER_FIELD_NUMBER: _ClassVar[int]
|
|
301
457
|
IS_GENERATED_FIELD_NUMBER: _ClassVar[int]
|
|
302
|
-
GENERATING_OBJECT_INFO_FIELD_NUMBER: _ClassVar[int]
|
|
303
458
|
ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
304
459
|
METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
305
460
|
no: int
|
|
306
|
-
geometry:
|
|
307
|
-
type:
|
|
461
|
+
geometry: Surface.Geometry
|
|
462
|
+
type: Surface.Type
|
|
308
463
|
boundary_lines: _containers.RepeatedScalarFieldContainer[int]
|
|
309
464
|
thickness: int
|
|
310
465
|
material: int
|
|
466
|
+
generating_object_info: str
|
|
311
467
|
analytical_area: float
|
|
312
468
|
analytical_volume: float
|
|
313
469
|
analytical_mass: float
|
|
@@ -325,21 +481,26 @@ class Surface(_message.Message):
|
|
|
325
481
|
position: str
|
|
326
482
|
position_short: str
|
|
327
483
|
grid_enabled: bool
|
|
484
|
+
activate_load_transfer: bool
|
|
328
485
|
is_deactivated_for_calculation: bool
|
|
486
|
+
is_surface_cells_deactivated: bool
|
|
329
487
|
comment: str
|
|
330
488
|
design_properties_via_surface: bool
|
|
331
489
|
design_properties_via_parent_surface_set: bool
|
|
332
490
|
design_properties_parent_surface_set: int
|
|
333
|
-
|
|
491
|
+
is_active_in_compression: bool
|
|
492
|
+
load_transfer_direction: Surface.LoadTransferDirection
|
|
334
493
|
is_surface_weight_enabled: bool
|
|
335
494
|
is_advanced_distribution_settings_enabled: bool
|
|
336
495
|
surface_weight: float
|
|
337
|
-
|
|
496
|
+
smoothing_factor: float
|
|
338
497
|
stripe_width: float
|
|
498
|
+
minimum_number_of_stripes: int
|
|
339
499
|
consider_member_eccentricity: bool
|
|
340
500
|
consider_section_distribution: bool
|
|
341
|
-
load_distribution:
|
|
501
|
+
load_distribution: Surface.LoadDistribution
|
|
342
502
|
neglect_equilibrium_of_moments: bool
|
|
503
|
+
neglect_defined_surface_stiffness: bool
|
|
343
504
|
excluded_members: _containers.RepeatedScalarFieldContainer[int]
|
|
344
505
|
excluded_parallel_to_members: _containers.RepeatedScalarFieldContainer[int]
|
|
345
506
|
excluded_lines: _containers.RepeatedScalarFieldContainer[int]
|
|
@@ -348,30 +509,39 @@ class Surface(_message.Message):
|
|
|
348
509
|
loaded_members: _containers.RepeatedScalarFieldContainer[int]
|
|
349
510
|
loaded_lines: _containers.RepeatedScalarFieldContainer[int]
|
|
350
511
|
loaded_nodes: _containers.RepeatedScalarFieldContainer[int]
|
|
512
|
+
load_distribution_factor_table: Surface.LoadDistributionFactorTable
|
|
351
513
|
nurbs_control_point_count_in_direction_u: int
|
|
352
514
|
nurbs_control_point_count_in_direction_v: int
|
|
353
515
|
nurbs_order_in_direction_u: int
|
|
354
516
|
nurbs_order_in_direction_v: int
|
|
355
|
-
nurbs_control_points:
|
|
356
|
-
quadrangle_corner_nodes: _containers.RepeatedScalarFieldContainer[int]
|
|
517
|
+
nurbs_control_points: Surface.SurfaceNurbsControlPointsRowsTable
|
|
357
518
|
quadrangle_corner_node_1: int
|
|
358
519
|
quadrangle_corner_node_2: int
|
|
359
520
|
quadrangle_corner_node_3: int
|
|
360
521
|
quadrangle_corner_node_4: int
|
|
361
|
-
|
|
522
|
+
quadrangle_corner_nodes: _containers.RepeatedScalarFieldContainer[int]
|
|
523
|
+
quadrangle_preferable_shape: Surface.QuadranglePreferableShape
|
|
362
524
|
pipe_radius: float
|
|
363
|
-
pipe_use_radius_end: bool
|
|
364
525
|
pipe_radius_end: float
|
|
526
|
+
pipe_use_radius_end: bool
|
|
365
527
|
pipe_center_line: int
|
|
366
528
|
pipe_generated_lines: _containers.RepeatedScalarFieldContainer[int]
|
|
529
|
+
min_curv_spline_reference_plane_coordinate_system: int
|
|
530
|
+
min_curv_spline_reference_work_plane_orientation: Surface.MinCurvSplineReferenceWorkPlaneOrientation
|
|
531
|
+
min_curv_spline_definition_type: Surface.MinCurvSplineDefinitionType
|
|
532
|
+
min_curv_spline_grid_x_point_count: int
|
|
533
|
+
min_curv_spline_grid_y_point_count: int
|
|
534
|
+
min_curv_spline_reference_boundary_lines: _containers.RepeatedScalarFieldContainer[int]
|
|
535
|
+
min_curv_spline_reference_probe_coordinates: Surface.MinCurvSplineReferenceProbeCoordinatesTable
|
|
536
|
+
min_curv_spline_global_probe_coordinates: Surface.MinCurvSplineGlobalProbeCoordinatesTable
|
|
367
537
|
has_line_hinges: bool
|
|
368
538
|
support: int
|
|
369
539
|
eccentricity: int
|
|
370
540
|
mesh_refinement: int
|
|
371
|
-
meshing_type:
|
|
372
|
-
input_axes_rotation_specification_type:
|
|
541
|
+
meshing_type: Surface.MeshingType
|
|
542
|
+
input_axes_rotation_specification_type: Surface.InputAxesRotationSpecificationType
|
|
373
543
|
input_axes_angular_rotation: float
|
|
374
|
-
input_axes_axis:
|
|
544
|
+
input_axes_axis: Surface.InputAxesAxis
|
|
375
545
|
input_axes_lines: _containers.RepeatedScalarFieldContainer[int]
|
|
376
546
|
input_axes_point_1: _common_pb2.Vector3d
|
|
377
547
|
input_axes_point_1_x: float
|
|
@@ -382,14 +552,13 @@ class Surface(_message.Message):
|
|
|
382
552
|
input_axes_point_2_y: float
|
|
383
553
|
input_axes_point_2_z: float
|
|
384
554
|
input_axes_coordinate_system: int
|
|
385
|
-
result_axes_rotation_specification_type:
|
|
555
|
+
result_axes_rotation_specification_type: Surface.ResultAxesRotationSpecificationType
|
|
386
556
|
reversed_normal: bool
|
|
387
|
-
grid_type:
|
|
557
|
+
grid_type: Surface.GridType
|
|
388
558
|
grid_origin: _common_pb2.Vector3d
|
|
389
559
|
grid_origin_x: float
|
|
390
560
|
grid_origin_y: float
|
|
391
561
|
grid_origin_z: float
|
|
392
|
-
grid_adapt_automatically: bool
|
|
393
562
|
grid_point_count_negative_x: int
|
|
394
563
|
grid_point_count_positive_x: int
|
|
395
564
|
grid_point_count_negative_y: int
|
|
@@ -402,6 +571,7 @@ class Surface(_message.Message):
|
|
|
402
571
|
grid_rotation_alpha: float
|
|
403
572
|
grid_rotation_beta: float
|
|
404
573
|
grid_angle_gamma: float
|
|
574
|
+
grid_adapt_automatically: bool
|
|
405
575
|
auto_detection_of_integrated_objects: bool
|
|
406
576
|
integrated_nodes: _containers.RepeatedScalarFieldContainer[int]
|
|
407
577
|
integrated_lines: _containers.RepeatedScalarFieldContainer[int]
|
|
@@ -409,12 +579,18 @@ class Surface(_message.Message):
|
|
|
409
579
|
has_integrated_objects: bool
|
|
410
580
|
has_input_axes_rotation: bool
|
|
411
581
|
has_result_axes_rotation: bool
|
|
582
|
+
surface_steel_design_uls_configuration: int
|
|
583
|
+
surface_steel_design_sls_configuration: int
|
|
412
584
|
surface_timber_design_uls_configuration: int
|
|
413
585
|
surface_timber_design_sls_configuration: int
|
|
414
586
|
surface_timber_design_fr_configuration: int
|
|
415
587
|
timber_service_class: int
|
|
416
588
|
timber_moisture_class: int
|
|
417
589
|
timber_service_conditions: int
|
|
590
|
+
surface_aluminum_design_uls_configuration: int
|
|
591
|
+
surface_aluminum_design_sls_configuration: int
|
|
592
|
+
surface_glass_design_uls_configuration: int
|
|
593
|
+
surface_glass_design_sls_configuration: int
|
|
418
594
|
surface_reinforcements: _containers.RepeatedScalarFieldContainer[int]
|
|
419
595
|
is_user_defined_concrete_cover_enabled: bool
|
|
420
596
|
concrete_cover_top: float
|
|
@@ -425,10 +601,11 @@ class Surface(_message.Message):
|
|
|
425
601
|
concrete_durability_bottom: int
|
|
426
602
|
reinforcement_direction_top: int
|
|
427
603
|
reinforcement_direction_bottom: int
|
|
428
|
-
deflection_check_surface_type:
|
|
429
|
-
|
|
604
|
+
deflection_check_surface_type: Surface.DeflectionCheckSurfaceType
|
|
605
|
+
deflection_check_double_supported_surface_type: Surface.DeflectionCheckDoubleSupportedSurfaceType
|
|
606
|
+
deflection_check_displacement_reference: Surface.DeflectionCheckDisplacementReference
|
|
430
607
|
deflection_check_reference_length_z: float
|
|
431
|
-
deflection_check_reference_length_z_definition_type:
|
|
608
|
+
deflection_check_reference_length_z_definition_type: Surface.DeflectionCheckReferenceLengthZDefinitionType
|
|
432
609
|
deflection_check_reference_plane_point_1: _common_pb2.Vector3d
|
|
433
610
|
deflection_check_reference_plane_point_1_x: float
|
|
434
611
|
deflection_check_reference_plane_point_1_y: float
|
|
@@ -441,7 +618,7 @@ class Surface(_message.Message):
|
|
|
441
618
|
deflection_check_reference_plane_point_3_x: float
|
|
442
619
|
deflection_check_reference_plane_point_3_y: float
|
|
443
620
|
deflection_check_reference_plane_point_3_z: float
|
|
444
|
-
surface_reinforcement_table:
|
|
621
|
+
surface_reinforcement_table: Surface.SurfaceReinforcementTable
|
|
445
622
|
surface_concrete_design_uls_configuration: int
|
|
446
623
|
surface_concrete_design_sls_configuration: int
|
|
447
624
|
surface_concrete_design_fr_configuration: int
|
|
@@ -457,17 +634,18 @@ class Surface(_message.Message):
|
|
|
457
634
|
rotated_point_r_y: float
|
|
458
635
|
rotated_point_r_z: float
|
|
459
636
|
rotated_generated_lines: _containers.RepeatedScalarFieldContainer[int]
|
|
637
|
+
wind_simulation_enable_specific_settings: bool
|
|
638
|
+
wind_simulation_shrink_wrapping: int
|
|
639
|
+
wind_simulation_roughness_and_permeability: int
|
|
640
|
+
wind_simulation_exclude_from_wind_tunnel: bool
|
|
641
|
+
wind_simulation_consider_surface_thickness_above: bool
|
|
642
|
+
wind_simulation_consider_surface_thickness_above_value: float
|
|
460
643
|
stress_analysis_configuration: int
|
|
644
|
+
surface_releases_assignment: Surface.SurfaceReleasesAssignmentTable
|
|
645
|
+
bim_ifc_properties: Surface.BimIfcPropertiesTreeTable
|
|
646
|
+
parent_layer: int
|
|
647
|
+
is_locked_by_parent_layer: bool
|
|
461
648
|
is_generated: bool
|
|
462
|
-
generating_object_info: str
|
|
463
649
|
id_for_export_import: str
|
|
464
650
|
metadata_for_export_import: str
|
|
465
|
-
def __init__(self, no: _Optional[int] = ..., geometry: _Optional[_Union[SurfaceGeometry, str]] = ..., type: _Optional[_Union[SurfaceType, str]] = ..., boundary_lines: _Optional[_Iterable[int]] = ..., thickness: _Optional[int] = ..., material: _Optional[int] = ..., analytical_area: _Optional[float] = ..., analytical_volume: _Optional[float] = ..., analytical_mass: _Optional[float] = ..., analytical_center_of_gravity: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., analytical_center_of_gravity_x: _Optional[float] = ..., analytical_center_of_gravity_y: _Optional[float] = ..., analytical_center_of_gravity_z: _Optional[float] = ..., area: _Optional[float] = ..., volume: _Optional[float] = ..., mass: _Optional[float] = ..., center_of_gravity: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., center_of_gravity_x: _Optional[float] = ..., center_of_gravity_y: _Optional[float] = ..., center_of_gravity_z: _Optional[float] = ..., position: _Optional[str] = ..., position_short: _Optional[str] = ..., grid_enabled: bool = ..., is_deactivated_for_calculation: bool = ..., comment: _Optional[str] = ..., design_properties_via_surface: bool = ..., design_properties_via_parent_surface_set: bool = ..., design_properties_parent_surface_set: _Optional[int] = ..., load_transfer_direction: _Optional[_Union[SurfaceLoadTransferDirection, str]] = ..., is_surface_weight_enabled: bool = ..., is_advanced_distribution_settings_enabled: bool = ..., surface_weight: _Optional[float] = ..., sampling_factor: _Optional[float] = ..., stripe_width: _Optional[float] = ..., consider_member_eccentricity: bool = ..., consider_section_distribution: bool = ..., load_distribution: _Optional[_Union[SurfaceLoadDistribution, str]] = ..., neglect_equilibrium_of_moments: bool = ..., excluded_members: _Optional[_Iterable[int]] = ..., excluded_parallel_to_members: _Optional[_Iterable[int]] = ..., excluded_lines: _Optional[_Iterable[int]] = ..., excluded_parallel_to_lines: _Optional[_Iterable[int]] = ..., excluded_nodes: _Optional[_Iterable[int]] = ..., loaded_members: _Optional[_Iterable[int]] = ..., loaded_lines: _Optional[_Iterable[int]] = ..., loaded_nodes: _Optional[_Iterable[int]] = ..., nurbs_control_point_count_in_direction_u: _Optional[int] = ..., nurbs_control_point_count_in_direction_v: _Optional[int] = ..., nurbs_order_in_direction_u: _Optional[int] = ..., nurbs_order_in_direction_v: _Optional[int] = ..., nurbs_control_points: _Optional[_Union[ArrayOfSurfaceNurbsControlPointsRows, _Mapping]] = ..., quadrangle_corner_nodes: _Optional[_Iterable[int]] = ..., quadrangle_corner_node_1: _Optional[int] = ..., quadrangle_corner_node_2: _Optional[int] = ..., quadrangle_corner_node_3: _Optional[int] = ..., quadrangle_corner_node_4: _Optional[int] = ..., quadrangle_preferable_shape: _Optional[_Union[SurfaceQuadranglePreferableShape, str]] = ..., pipe_radius: _Optional[float] = ..., pipe_use_radius_end: bool = ..., pipe_radius_end: _Optional[float] = ..., pipe_center_line: _Optional[int] = ..., pipe_generated_lines: _Optional[_Iterable[int]] = ..., has_line_hinges: bool = ..., support: _Optional[int] = ..., eccentricity: _Optional[int] = ..., mesh_refinement: _Optional[int] = ..., meshing_type: _Optional[_Union[SurfaceMeshingType, str]] = ..., input_axes_rotation_specification_type: _Optional[_Union[SurfaceInputAxesRotationSpecificationType, str]] = ..., input_axes_angular_rotation: _Optional[float] = ..., input_axes_axis: _Optional[_Union[SurfaceInputAxesAxis, str]] = ..., input_axes_lines: _Optional[_Iterable[int]] = ..., input_axes_point_1: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., input_axes_point_1_x: _Optional[float] = ..., input_axes_point_1_y: _Optional[float] = ..., input_axes_point_1_z: _Optional[float] = ..., input_axes_point_2: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., input_axes_point_2_x: _Optional[float] = ..., input_axes_point_2_y: _Optional[float] = ..., input_axes_point_2_z: _Optional[float] = ..., input_axes_coordinate_system: _Optional[int] = ..., result_axes_rotation_specification_type: _Optional[_Union[SurfaceResultAxesRotationSpecificationType, str]] = ..., reversed_normal: bool = ..., grid_type: _Optional[_Union[SurfaceGridType, str]] = ..., grid_origin: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., grid_origin_x: _Optional[float] = ..., grid_origin_y: _Optional[float] = ..., grid_origin_z: _Optional[float] = ..., grid_adapt_automatically: bool = ..., grid_point_count_negative_x: _Optional[int] = ..., grid_point_count_positive_x: _Optional[int] = ..., grid_point_count_negative_y: _Optional[int] = ..., grid_point_count_positive_y: _Optional[int] = ..., grid_numbering_increment: _Optional[int] = ..., grid_point_count_r: _Optional[int] = ..., grid_distance_x: _Optional[float] = ..., grid_distance_y: _Optional[float] = ..., grid_distance_r: _Optional[float] = ..., grid_rotation_alpha: _Optional[float] = ..., grid_rotation_beta: _Optional[float] = ..., grid_angle_gamma: _Optional[float] = ..., auto_detection_of_integrated_objects: bool = ..., integrated_nodes: _Optional[_Iterable[int]] = ..., integrated_lines: _Optional[_Iterable[int]] = ..., integrated_openings: _Optional[_Iterable[int]] = ..., has_integrated_objects: bool = ..., has_input_axes_rotation: bool = ..., has_result_axes_rotation: bool = ..., surface_timber_design_uls_configuration: _Optional[int] = ..., surface_timber_design_sls_configuration: _Optional[int] = ..., surface_timber_design_fr_configuration: _Optional[int] = ..., timber_service_class: _Optional[int] = ..., timber_moisture_class: _Optional[int] = ..., timber_service_conditions: _Optional[int] = ..., surface_reinforcements: _Optional[_Iterable[int]] = ..., is_user_defined_concrete_cover_enabled: bool = ..., concrete_cover_top: _Optional[float] = ..., concrete_cover_bottom: _Optional[float] = ..., user_defined_concrete_cover_top: _Optional[float] = ..., user_defined_concrete_cover_bottom: _Optional[float] = ..., concrete_durability_top: _Optional[int] = ..., concrete_durability_bottom: _Optional[int] = ..., reinforcement_direction_top: _Optional[int] = ..., reinforcement_direction_bottom: _Optional[int] = ..., deflection_check_surface_type: _Optional[_Union[SurfaceDeflectionCheckSurfaceType, str]] = ..., deflection_check_displacement_reference: _Optional[_Union[SurfaceDeflectionCheckDisplacementReference, str]] = ..., deflection_check_reference_length_z: _Optional[float] = ..., deflection_check_reference_length_z_definition_type: _Optional[_Union[SurfaceDeflectionCheckReferenceLengthZDefinitionType, str]] = ..., deflection_check_reference_plane_point_1: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., deflection_check_reference_plane_point_1_x: _Optional[float] = ..., deflection_check_reference_plane_point_1_y: _Optional[float] = ..., deflection_check_reference_plane_point_1_z: _Optional[float] = ..., deflection_check_reference_plane_point_2: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., deflection_check_reference_plane_point_2_x: _Optional[float] = ..., deflection_check_reference_plane_point_2_y: _Optional[float] = ..., deflection_check_reference_plane_point_2_z: _Optional[float] = ..., deflection_check_reference_plane_point_3: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., deflection_check_reference_plane_point_3_x: _Optional[float] = ..., deflection_check_reference_plane_point_3_y: _Optional[float] = ..., deflection_check_reference_plane_point_3_z: _Optional[float] = ..., surface_reinforcement_table: _Optional[_Union[ArrayOfSurfaceSurfaceReinforcementTable, _Mapping]] = ..., surface_concrete_design_uls_configuration: _Optional[int] = ..., surface_concrete_design_sls_configuration: _Optional[int] = ..., surface_concrete_design_fr_configuration: _Optional[int] = ..., surface_concrete_design_seismic_configuration: _Optional[int] = ..., rotated_boundary_line: _Optional[int] = ..., rotated_angle_of_rotation: _Optional[float] = ..., rotated_point_p: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., rotated_point_p_x: _Optional[float] = ..., rotated_point_p_y: _Optional[float] = ..., rotated_point_p_z: _Optional[float] = ..., rotated_point_r: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., rotated_point_r_x: _Optional[float] = ..., rotated_point_r_y: _Optional[float] = ..., rotated_point_r_z: _Optional[float] = ..., rotated_generated_lines: _Optional[_Iterable[int]] = ..., stress_analysis_configuration: _Optional[int] = ..., is_generated: bool = ..., generating_object_info: _Optional[str] = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
|
|
466
|
-
|
|
467
|
-
class ArrayOfSurfaceNurbsControlPointsRows(_message.Message):
|
|
468
|
-
__slots__ = ()
|
|
469
|
-
def __init__(self) -> None: ...
|
|
470
|
-
|
|
471
|
-
class ArrayOfSurfaceSurfaceReinforcementTable(_message.Message):
|
|
472
|
-
__slots__ = ()
|
|
473
|
-
def __init__(self) -> None: ...
|
|
651
|
+
def __init__(self, no: _Optional[int] = ..., geometry: _Optional[_Union[Surface.Geometry, str]] = ..., type: _Optional[_Union[Surface.Type, str]] = ..., boundary_lines: _Optional[_Iterable[int]] = ..., thickness: _Optional[int] = ..., material: _Optional[int] = ..., generating_object_info: _Optional[str] = ..., analytical_area: _Optional[float] = ..., analytical_volume: _Optional[float] = ..., analytical_mass: _Optional[float] = ..., analytical_center_of_gravity: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., analytical_center_of_gravity_x: _Optional[float] = ..., analytical_center_of_gravity_y: _Optional[float] = ..., analytical_center_of_gravity_z: _Optional[float] = ..., area: _Optional[float] = ..., volume: _Optional[float] = ..., mass: _Optional[float] = ..., center_of_gravity: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., center_of_gravity_x: _Optional[float] = ..., center_of_gravity_y: _Optional[float] = ..., center_of_gravity_z: _Optional[float] = ..., position: _Optional[str] = ..., position_short: _Optional[str] = ..., grid_enabled: bool = ..., activate_load_transfer: bool = ..., is_deactivated_for_calculation: bool = ..., is_surface_cells_deactivated: bool = ..., comment: _Optional[str] = ..., design_properties_via_surface: bool = ..., design_properties_via_parent_surface_set: bool = ..., design_properties_parent_surface_set: _Optional[int] = ..., is_active_in_compression: bool = ..., load_transfer_direction: _Optional[_Union[Surface.LoadTransferDirection, str]] = ..., is_surface_weight_enabled: bool = ..., is_advanced_distribution_settings_enabled: bool = ..., surface_weight: _Optional[float] = ..., smoothing_factor: _Optional[float] = ..., stripe_width: _Optional[float] = ..., minimum_number_of_stripes: _Optional[int] = ..., consider_member_eccentricity: bool = ..., consider_section_distribution: bool = ..., load_distribution: _Optional[_Union[Surface.LoadDistribution, str]] = ..., neglect_equilibrium_of_moments: bool = ..., neglect_defined_surface_stiffness: bool = ..., excluded_members: _Optional[_Iterable[int]] = ..., excluded_parallel_to_members: _Optional[_Iterable[int]] = ..., excluded_lines: _Optional[_Iterable[int]] = ..., excluded_parallel_to_lines: _Optional[_Iterable[int]] = ..., excluded_nodes: _Optional[_Iterable[int]] = ..., loaded_members: _Optional[_Iterable[int]] = ..., loaded_lines: _Optional[_Iterable[int]] = ..., loaded_nodes: _Optional[_Iterable[int]] = ..., load_distribution_factor_table: _Optional[_Union[Surface.LoadDistributionFactorTable, _Mapping]] = ..., nurbs_control_point_count_in_direction_u: _Optional[int] = ..., nurbs_control_point_count_in_direction_v: _Optional[int] = ..., nurbs_order_in_direction_u: _Optional[int] = ..., nurbs_order_in_direction_v: _Optional[int] = ..., nurbs_control_points: _Optional[_Union[Surface.SurfaceNurbsControlPointsRowsTable, _Mapping]] = ..., quadrangle_corner_node_1: _Optional[int] = ..., quadrangle_corner_node_2: _Optional[int] = ..., quadrangle_corner_node_3: _Optional[int] = ..., quadrangle_corner_node_4: _Optional[int] = ..., quadrangle_corner_nodes: _Optional[_Iterable[int]] = ..., quadrangle_preferable_shape: _Optional[_Union[Surface.QuadranglePreferableShape, str]] = ..., pipe_radius: _Optional[float] = ..., pipe_radius_end: _Optional[float] = ..., pipe_use_radius_end: bool = ..., pipe_center_line: _Optional[int] = ..., pipe_generated_lines: _Optional[_Iterable[int]] = ..., min_curv_spline_reference_plane_coordinate_system: _Optional[int] = ..., min_curv_spline_reference_work_plane_orientation: _Optional[_Union[Surface.MinCurvSplineReferenceWorkPlaneOrientation, str]] = ..., min_curv_spline_definition_type: _Optional[_Union[Surface.MinCurvSplineDefinitionType, str]] = ..., min_curv_spline_grid_x_point_count: _Optional[int] = ..., min_curv_spline_grid_y_point_count: _Optional[int] = ..., min_curv_spline_reference_boundary_lines: _Optional[_Iterable[int]] = ..., min_curv_spline_reference_probe_coordinates: _Optional[_Union[Surface.MinCurvSplineReferenceProbeCoordinatesTable, _Mapping]] = ..., min_curv_spline_global_probe_coordinates: _Optional[_Union[Surface.MinCurvSplineGlobalProbeCoordinatesTable, _Mapping]] = ..., has_line_hinges: bool = ..., support: _Optional[int] = ..., eccentricity: _Optional[int] = ..., mesh_refinement: _Optional[int] = ..., meshing_type: _Optional[_Union[Surface.MeshingType, str]] = ..., input_axes_rotation_specification_type: _Optional[_Union[Surface.InputAxesRotationSpecificationType, str]] = ..., input_axes_angular_rotation: _Optional[float] = ..., input_axes_axis: _Optional[_Union[Surface.InputAxesAxis, str]] = ..., input_axes_lines: _Optional[_Iterable[int]] = ..., input_axes_point_1: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., input_axes_point_1_x: _Optional[float] = ..., input_axes_point_1_y: _Optional[float] = ..., input_axes_point_1_z: _Optional[float] = ..., input_axes_point_2: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., input_axes_point_2_x: _Optional[float] = ..., input_axes_point_2_y: _Optional[float] = ..., input_axes_point_2_z: _Optional[float] = ..., input_axes_coordinate_system: _Optional[int] = ..., result_axes_rotation_specification_type: _Optional[_Union[Surface.ResultAxesRotationSpecificationType, str]] = ..., reversed_normal: bool = ..., grid_type: _Optional[_Union[Surface.GridType, str]] = ..., grid_origin: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., grid_origin_x: _Optional[float] = ..., grid_origin_y: _Optional[float] = ..., grid_origin_z: _Optional[float] = ..., grid_point_count_negative_x: _Optional[int] = ..., grid_point_count_positive_x: _Optional[int] = ..., grid_point_count_negative_y: _Optional[int] = ..., grid_point_count_positive_y: _Optional[int] = ..., grid_numbering_increment: _Optional[int] = ..., grid_point_count_r: _Optional[int] = ..., grid_distance_x: _Optional[float] = ..., grid_distance_y: _Optional[float] = ..., grid_distance_r: _Optional[float] = ..., grid_rotation_alpha: _Optional[float] = ..., grid_rotation_beta: _Optional[float] = ..., grid_angle_gamma: _Optional[float] = ..., grid_adapt_automatically: bool = ..., auto_detection_of_integrated_objects: bool = ..., integrated_nodes: _Optional[_Iterable[int]] = ..., integrated_lines: _Optional[_Iterable[int]] = ..., integrated_openings: _Optional[_Iterable[int]] = ..., has_integrated_objects: bool = ..., has_input_axes_rotation: bool = ..., has_result_axes_rotation: bool = ..., surface_steel_design_uls_configuration: _Optional[int] = ..., surface_steel_design_sls_configuration: _Optional[int] = ..., surface_timber_design_uls_configuration: _Optional[int] = ..., surface_timber_design_sls_configuration: _Optional[int] = ..., surface_timber_design_fr_configuration: _Optional[int] = ..., timber_service_class: _Optional[int] = ..., timber_moisture_class: _Optional[int] = ..., timber_service_conditions: _Optional[int] = ..., surface_aluminum_design_uls_configuration: _Optional[int] = ..., surface_aluminum_design_sls_configuration: _Optional[int] = ..., surface_glass_design_uls_configuration: _Optional[int] = ..., surface_glass_design_sls_configuration: _Optional[int] = ..., surface_reinforcements: _Optional[_Iterable[int]] = ..., is_user_defined_concrete_cover_enabled: bool = ..., concrete_cover_top: _Optional[float] = ..., concrete_cover_bottom: _Optional[float] = ..., user_defined_concrete_cover_top: _Optional[float] = ..., user_defined_concrete_cover_bottom: _Optional[float] = ..., concrete_durability_top: _Optional[int] = ..., concrete_durability_bottom: _Optional[int] = ..., reinforcement_direction_top: _Optional[int] = ..., reinforcement_direction_bottom: _Optional[int] = ..., deflection_check_surface_type: _Optional[_Union[Surface.DeflectionCheckSurfaceType, str]] = ..., deflection_check_double_supported_surface_type: _Optional[_Union[Surface.DeflectionCheckDoubleSupportedSurfaceType, str]] = ..., deflection_check_displacement_reference: _Optional[_Union[Surface.DeflectionCheckDisplacementReference, str]] = ..., deflection_check_reference_length_z: _Optional[float] = ..., deflection_check_reference_length_z_definition_type: _Optional[_Union[Surface.DeflectionCheckReferenceLengthZDefinitionType, str]] = ..., deflection_check_reference_plane_point_1: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., deflection_check_reference_plane_point_1_x: _Optional[float] = ..., deflection_check_reference_plane_point_1_y: _Optional[float] = ..., deflection_check_reference_plane_point_1_z: _Optional[float] = ..., deflection_check_reference_plane_point_2: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., deflection_check_reference_plane_point_2_x: _Optional[float] = ..., deflection_check_reference_plane_point_2_y: _Optional[float] = ..., deflection_check_reference_plane_point_2_z: _Optional[float] = ..., deflection_check_reference_plane_point_3: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., deflection_check_reference_plane_point_3_x: _Optional[float] = ..., deflection_check_reference_plane_point_3_y: _Optional[float] = ..., deflection_check_reference_plane_point_3_z: _Optional[float] = ..., surface_reinforcement_table: _Optional[_Union[Surface.SurfaceReinforcementTable, _Mapping]] = ..., surface_concrete_design_uls_configuration: _Optional[int] = ..., surface_concrete_design_sls_configuration: _Optional[int] = ..., surface_concrete_design_fr_configuration: _Optional[int] = ..., surface_concrete_design_seismic_configuration: _Optional[int] = ..., rotated_boundary_line: _Optional[int] = ..., rotated_angle_of_rotation: _Optional[float] = ..., rotated_point_p: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., rotated_point_p_x: _Optional[float] = ..., rotated_point_p_y: _Optional[float] = ..., rotated_point_p_z: _Optional[float] = ..., rotated_point_r: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., rotated_point_r_x: _Optional[float] = ..., rotated_point_r_y: _Optional[float] = ..., rotated_point_r_z: _Optional[float] = ..., rotated_generated_lines: _Optional[_Iterable[int]] = ..., wind_simulation_enable_specific_settings: bool = ..., wind_simulation_shrink_wrapping: _Optional[int] = ..., wind_simulation_roughness_and_permeability: _Optional[int] = ..., wind_simulation_exclude_from_wind_tunnel: bool = ..., wind_simulation_consider_surface_thickness_above: bool = ..., wind_simulation_consider_surface_thickness_above_value: _Optional[float] = ..., stress_analysis_configuration: _Optional[int] = ..., surface_releases_assignment: _Optional[_Union[Surface.SurfaceReleasesAssignmentTable, _Mapping]] = ..., bim_ifc_properties: _Optional[_Union[Surface.BimIfcPropertiesTreeTable, _Mapping]] = ..., parent_layer: _Optional[int] = ..., is_locked_by_parent_layer: bool = ..., is_generated: bool = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
|