dlubal.api 0.1.293714a1__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/__init__.py +0 -0
- dlubal/api/__init__.py +0 -0
- dlubal/api/common/__init__.py +3 -0
- dlubal/api/common/common_pb2.py +42 -0
- dlubal/api/common/common_pb2.pyi +41 -0
- dlubal/api/common/connection.py +251 -0
- dlubal/api/common/exceptions.py +12 -0
- dlubal/api/common/model_id_pb2.py +38 -0
- dlubal/api/common/model_id_pb2.pyi +17 -0
- dlubal/api/common/table.py +35 -0
- dlubal/api/common/table_data_pb2.py +39 -0
- dlubal/api/common/table_data_pb2.pyi +21 -0
- dlubal/api/rfem/__init__.py +32 -0
- dlubal/api/rfem/aluminum_design_objects/__init__.py +2 -0
- dlubal/api/rfem/aluminum_design_objects/aluminum_design_sls_configuration_pb2.py +36 -0
- dlubal/api/rfem/aluminum_design_objects/aluminum_design_sls_configuration_pb2.pyi +30 -0
- dlubal/api/rfem/aluminum_design_objects/aluminum_design_uls_configuration_pb2.py +36 -0
- dlubal/api/rfem/aluminum_design_objects/aluminum_design_uls_configuration_pb2.pyi +30 -0
- dlubal/api/rfem/application.py +290 -0
- dlubal/api/rfem/application_pb2.py +67 -0
- dlubal/api/rfem/application_pb2.pyi +135 -0
- dlubal/api/rfem/application_pb2_grpc.py +973 -0
- dlubal/api/rfem/base_data/__init__.py +1 -0
- dlubal/api/rfem/base_data/terrain_pb2.py +40 -0
- dlubal/api/rfem/base_data/terrain_pb2.pyi +53 -0
- dlubal/api/rfem/building_model/__init__.py +4 -0
- dlubal/api/rfem/building_model/building_story_pb2.py +54 -0
- dlubal/api/rfem/building_model/building_story_pb2.pyi +151 -0
- dlubal/api/rfem/building_model/deep_beam_pb2.py +41 -0
- dlubal/api/rfem/building_model/deep_beam_pb2.pyi +73 -0
- dlubal/api/rfem/building_model/floor_set_pb2.py +39 -0
- dlubal/api/rfem/building_model/floor_set_pb2.pyi +59 -0
- dlubal/api/rfem/building_model/shear_wall_pb2.py +41 -0
- dlubal/api/rfem/building_model/shear_wall_pb2.pyi +73 -0
- dlubal/api/rfem/calculation_diagrams/__init__.py +1 -0
- dlubal/api/rfem/calculation_diagrams/calculation_diagram_pb2.py +50 -0
- dlubal/api/rfem/calculation_diagrams/calculation_diagram_pb2.pyi +1694 -0
- dlubal/api/rfem/concrete_design_objects/__init__.py +2 -0
- dlubal/api/rfem/concrete_design_objects/concrete_design_sls_configuration_pb2.py +36 -0
- dlubal/api/rfem/concrete_design_objects/concrete_design_sls_configuration_pb2.pyi +46 -0
- dlubal/api/rfem/concrete_design_objects/concrete_design_uls_configuration_pb2.py +36 -0
- dlubal/api/rfem/concrete_design_objects/concrete_design_uls_configuration_pb2.pyi +46 -0
- dlubal/api/rfem/construction_stages/__init__.py +1 -0
- dlubal/api/rfem/construction_stages/construction_stage_pb2.py +46 -0
- dlubal/api/rfem/construction_stages/construction_stage_pb2.pyi +176 -0
- dlubal/api/rfem/dynamic_loads/__init__.py +2 -0
- dlubal/api/rfem/dynamic_loads/accelerogram_pb2.py +40 -0
- dlubal/api/rfem/dynamic_loads/accelerogram_pb2.pyi +51 -0
- dlubal/api/rfem/dynamic_loads/response_spectrum_pb2.py +42 -0
- dlubal/api/rfem/dynamic_loads/response_spectrum_pb2.pyi +72 -0
- dlubal/api/rfem/geotechnical_analysis/__init__.py +2 -0
- dlubal/api/rfem/geotechnical_analysis/borehole_pb2.py +41 -0
- dlubal/api/rfem/geotechnical_analysis/borehole_pb2.pyi +54 -0
- dlubal/api/rfem/geotechnical_analysis/soil_massif_pb2.py +47 -0
- dlubal/api/rfem/geotechnical_analysis/soil_massif_pb2.pyi +119 -0
- dlubal/api/rfem/global_parameters/__init__.py +1 -0
- dlubal/api/rfem/global_parameters/global_parameter_pb2.py +40 -0
- dlubal/api/rfem/global_parameters/global_parameter_pb2.pyi +284 -0
- dlubal/api/rfem/guide_objects/__init__.py +10 -0
- dlubal/api/rfem/guide_objects/building_grid_pb2.py +53 -0
- dlubal/api/rfem/guide_objects/building_grid_pb2.pyi +219 -0
- dlubal/api/rfem/guide_objects/clipping_box_pb2.py +37 -0
- dlubal/api/rfem/guide_objects/clipping_box_pb2.pyi +40 -0
- dlubal/api/rfem/guide_objects/clipping_plane_pb2.py +45 -0
- dlubal/api/rfem/guide_objects/clipping_plane_pb2.pyi +116 -0
- dlubal/api/rfem/guide_objects/coordinate_system_pb2.py +41 -0
- dlubal/api/rfem/guide_objects/coordinate_system_pb2.pyi +93 -0
- dlubal/api/rfem/guide_objects/dimension_pb2.py +61 -0
- dlubal/api/rfem/guide_objects/dimension_pb2.pyi +245 -0
- dlubal/api/rfem/guide_objects/dxf_file_model_object_pb2.py +41 -0
- dlubal/api/rfem/guide_objects/dxf_file_model_object_pb2.pyi +119 -0
- dlubal/api/rfem/guide_objects/dxf_model_object_pb2.py +36 -0
- dlubal/api/rfem/guide_objects/dxf_model_object_pb2.pyi +15 -0
- dlubal/api/rfem/guide_objects/note_pb2.py +45 -0
- dlubal/api/rfem/guide_objects/note_pb2.pyi +129 -0
- dlubal/api/rfem/guide_objects/object_snap_pb2.py +38 -0
- dlubal/api/rfem/guide_objects/object_snap_pb2.pyi +85 -0
- dlubal/api/rfem/guide_objects/visual_object_pb2.py +43 -0
- dlubal/api/rfem/guide_objects/visual_object_pb2.pyi +129 -0
- dlubal/api/rfem/imperfections/__init__.py +5 -0
- dlubal/api/rfem/imperfections/imperfection_case_pb2.py +50 -0
- dlubal/api/rfem/imperfections/imperfection_case_pb2.pyi +158 -0
- dlubal/api/rfem/imperfections/member_imperfection_pb2.py +48 -0
- dlubal/api/rfem/imperfections/member_imperfection_pb2.pyi +205 -0
- dlubal/api/rfem/imperfections/member_set_imperfection_pb2.py +48 -0
- dlubal/api/rfem/imperfections/member_set_imperfection_pb2.pyi +203 -0
- dlubal/api/rfem/imperfections/surface_imperfection_pb2.py +40 -0
- dlubal/api/rfem/imperfections/surface_imperfection_pb2.pyi +55 -0
- dlubal/api/rfem/imperfections/surface_set_imperfection_pb2.py +40 -0
- dlubal/api/rfem/imperfections/surface_set_imperfection_pb2.pyi +55 -0
- dlubal/api/rfem/load_wizards/__init__.py +2 -0
- dlubal/api/rfem/load_wizards/wind_profile_pb2.py +44 -0
- dlubal/api/rfem/load_wizards/wind_profile_pb2.pyi +727 -0
- dlubal/api/rfem/load_wizards/wind_simulation_pb2.py +46 -0
- dlubal/api/rfem/load_wizards/wind_simulation_pb2.pyi +84 -0
- dlubal/api/rfem/loading/__init__.py +15 -0
- dlubal/api/rfem/loading/action_combination_pb2.py +40 -0
- dlubal/api/rfem/loading/action_combination_pb2.pyi +58 -0
- dlubal/api/rfem/loading/action_pb2.py +42 -0
- dlubal/api/rfem/loading/action_pb2.pyi +80 -0
- dlubal/api/rfem/loading/combination_wizard_pb2.py +40 -0
- dlubal/api/rfem/loading/combination_wizard_pb2.pyi +65 -0
- dlubal/api/rfem/loading/design_situation_pb2.py +38 -0
- dlubal/api/rfem/loading/design_situation_pb2.pyi +41 -0
- dlubal/api/rfem/loading/load_case_pb2.py +77 -0
- dlubal/api/rfem/loading/load_case_pb2.pyi +489 -0
- dlubal/api/rfem/loading/load_combination_pb2.py +48 -0
- dlubal/api/rfem/loading/load_combination_pb2.pyi +150 -0
- dlubal/api/rfem/loading/modal_analysis_settings_pb2.py +48 -0
- dlubal/api/rfem/loading/modal_analysis_settings_pb2.pyi +115 -0
- dlubal/api/rfem/loading/optimization_settings_pb2.py +42 -0
- dlubal/api/rfem/loading/optimization_settings_pb2.pyi +72 -0
- dlubal/api/rfem/loading/pushover_analysis_settings_pb2.py +38 -0
- dlubal/api/rfem/loading/pushover_analysis_settings_pb2.pyi +51 -0
- dlubal/api/rfem/loading/relationship_between_load_cases_pb2.py +40 -0
- dlubal/api/rfem/loading/relationship_between_load_cases_pb2.pyi +36 -0
- dlubal/api/rfem/loading/result_combination_pb2.py +42 -0
- dlubal/api/rfem/loading/result_combination_pb2.pyi +74 -0
- dlubal/api/rfem/loading/spectral_analysis_settings_pb2.py +46 -0
- dlubal/api/rfem/loading/spectral_analysis_settings_pb2.pyi +91 -0
- dlubal/api/rfem/loading/stability_analysis_settings_pb2.py +44 -0
- dlubal/api/rfem/loading/stability_analysis_settings_pb2.pyi +118 -0
- dlubal/api/rfem/loading/static_analysis_settings_pb2.py +46 -0
- dlubal/api/rfem/loading/static_analysis_settings_pb2.pyi +159 -0
- dlubal/api/rfem/loading/wind_simulation_analysis_settings_pb2.py +48 -0
- dlubal/api/rfem/loading/wind_simulation_analysis_settings_pb2.pyi +150 -0
- dlubal/api/rfem/loads/__init__.py +17 -0
- dlubal/api/rfem/loads/free_circular_load_pb2.py +42 -0
- dlubal/api/rfem/loads/free_circular_load_pb2.pyi +100 -0
- dlubal/api/rfem/loads/free_concentrated_load_pb2.py +42 -0
- dlubal/api/rfem/loads/free_concentrated_load_pb2.pyi +84 -0
- dlubal/api/rfem/loads/free_line_load_pb2.py +42 -0
- dlubal/api/rfem/loads/free_line_load_pb2.pyi +104 -0
- dlubal/api/rfem/loads/free_polygon_load_pb2.py +44 -0
- dlubal/api/rfem/loads/free_polygon_load_pb2.pyi +112 -0
- dlubal/api/rfem/loads/free_rectangular_load_pb2.py +49 -0
- dlubal/api/rfem/loads/free_rectangular_load_pb2.pyi +166 -0
- dlubal/api/rfem/loads/imposed_line_deformation_pb2.py +37 -0
- dlubal/api/rfem/loads/imposed_line_deformation_pb2.pyi +47 -0
- dlubal/api/rfem/loads/imposed_nodal_deformation_pb2.py +37 -0
- dlubal/api/rfem/loads/imposed_nodal_deformation_pb2.pyi +43 -0
- dlubal/api/rfem/loads/line_load_pb2.py +46 -0
- dlubal/api/rfem/loads/line_load_pb2.pyi +155 -0
- dlubal/api/rfem/loads/line_set_load_pb2.py +46 -0
- dlubal/api/rfem/loads/line_set_load_pb2.pyi +155 -0
- dlubal/api/rfem/loads/member_load_pb2.py +67 -0
- dlubal/api/rfem/loads/member_load_pb2.pyi +390 -0
- dlubal/api/rfem/loads/member_set_load_pb2.py +67 -0
- dlubal/api/rfem/loads/member_set_load_pb2.pyi +388 -0
- dlubal/api/rfem/loads/nodal_load_pb2.py +47 -0
- dlubal/api/rfem/loads/nodal_load_pb2.pyi +207 -0
- dlubal/api/rfem/loads/opening_load_pb2.py +42 -0
- dlubal/api/rfem/loads/opening_load_pb2.pyi +84 -0
- dlubal/api/rfem/loads/solid_load_pb2.py +53 -0
- dlubal/api/rfem/loads/solid_load_pb2.pyi +180 -0
- dlubal/api/rfem/loads/solid_set_load_pb2.py +53 -0
- dlubal/api/rfem/loads/solid_set_load_pb2.pyi +180 -0
- dlubal/api/rfem/loads/surface_load_pb2.py +57 -0
- dlubal/api/rfem/loads/surface_load_pb2.pyi +285 -0
- dlubal/api/rfem/loads/surface_set_load_pb2.py +57 -0
- dlubal/api/rfem/loads/surface_set_load_pb2.pyi +285 -0
- dlubal/api/rfem/packing.py +45 -0
- dlubal/api/rfem/result_objects/__init__.py +1 -0
- dlubal/api/rfem/result_objects/result_section_pb2.py +43 -0
- dlubal/api/rfem/result_objects/result_section_pb2.pyi +119 -0
- dlubal/api/rfem/results/__init__.py +2 -0
- dlubal/api/rfem/results/results_id_pb2.py +36 -0
- dlubal/api/rfem/results/results_id_pb2.pyi +14 -0
- dlubal/api/rfem/results/results_query_pb2.py +40 -0
- dlubal/api/rfem/results/results_query_pb2.pyi +26 -0
- dlubal/api/rfem/steel_design_objects/__init__.py +4 -0
- dlubal/api/rfem/steel_design_objects/steel_design_fr_configuration_pb2.py +36 -0
- dlubal/api/rfem/steel_design_objects/steel_design_fr_configuration_pb2.pyi +30 -0
- dlubal/api/rfem/steel_design_objects/steel_design_seismic_configuration_pb2.py +36 -0
- dlubal/api/rfem/steel_design_objects/steel_design_seismic_configuration_pb2.pyi +30 -0
- dlubal/api/rfem/steel_design_objects/steel_design_sls_configuration_pb2.py +36 -0
- dlubal/api/rfem/steel_design_objects/steel_design_sls_configuration_pb2.pyi +30 -0
- dlubal/api/rfem/steel_design_objects/steel_design_uls_configuration_pb2.py +36 -0
- dlubal/api/rfem/steel_design_objects/steel_design_uls_configuration_pb2.pyi +30 -0
- dlubal/api/rfem/structure_advanced/__init__.py +9 -0
- dlubal/api/rfem/structure_advanced/block_pb2.py +51 -0
- dlubal/api/rfem/structure_advanced/block_pb2.pyi +180 -0
- dlubal/api/rfem/structure_advanced/intersection_pb2.py +36 -0
- dlubal/api/rfem/structure_advanced/intersection_pb2.pyi +26 -0
- dlubal/api/rfem/structure_advanced/line_release_pb2.py +40 -0
- dlubal/api/rfem/structure_advanced/line_release_pb2.pyi +56 -0
- dlubal/api/rfem/structure_advanced/nodal_release_pb2.py +38 -0
- dlubal/api/rfem/structure_advanced/nodal_release_pb2.pyi +46 -0
- dlubal/api/rfem/structure_advanced/rigid_link_pb2.py +41 -0
- dlubal/api/rfem/structure_advanced/rigid_link_pb2.pyi +104 -0
- dlubal/api/rfem/structure_advanced/structure_modification_pb2.py +56 -0
- dlubal/api/rfem/structure_advanced/structure_modification_pb2.pyi +161 -0
- dlubal/api/rfem/structure_advanced/surface_release_pb2.py +38 -0
- dlubal/api/rfem/structure_advanced/surface_release_pb2.pyi +50 -0
- dlubal/api/rfem/structure_advanced/surface_results_adjustment_pb2.py +55 -0
- dlubal/api/rfem/structure_advanced/surface_results_adjustment_pb2.pyi +140 -0
- dlubal/api/rfem/structure_advanced/surfaces_contact_pb2.py +36 -0
- dlubal/api/rfem/structure_advanced/surfaces_contact_pb2.pyi +24 -0
- dlubal/api/rfem/structure_core/__init__.py +15 -0
- dlubal/api/rfem/structure_core/line_pb2.py +53 -0
- dlubal/api/rfem/structure_core/line_pb2.pyi +298 -0
- dlubal/api/rfem/structure_core/line_set_pb2.py +39 -0
- dlubal/api/rfem/structure_core/line_set_pb2.pyi +53 -0
- dlubal/api/rfem/structure_core/material_pb2.py +100 -0
- dlubal/api/rfem/structure_core/material_pb2.pyi +955 -0
- dlubal/api/rfem/structure_core/member_pb2.py +79 -0
- dlubal/api/rfem/structure_core/member_pb2.pyi +566 -0
- dlubal/api/rfem/structure_core/member_representative_pb2.py +83 -0
- dlubal/api/rfem/structure_core/member_representative_pb2.pyi +590 -0
- dlubal/api/rfem/structure_core/member_set_pb2.py +53 -0
- dlubal/api/rfem/structure_core/member_set_pb2.pyi +225 -0
- dlubal/api/rfem/structure_core/member_set_representative_pb2.py +99 -0
- dlubal/api/rfem/structure_core/member_set_representative_pb2.pyi +811 -0
- dlubal/api/rfem/structure_core/node_pb2.py +43 -0
- dlubal/api/rfem/structure_core/node_pb2.pyi +142 -0
- dlubal/api/rfem/structure_core/opening_pb2.py +37 -0
- dlubal/api/rfem/structure_core/opening_pb2.pyi +41 -0
- dlubal/api/rfem/structure_core/section_pb2.py +66 -0
- dlubal/api/rfem/structure_core/section_pb2.pyi +1939 -0
- dlubal/api/rfem/structure_core/solid_pb2.py +53 -0
- dlubal/api/rfem/structure_core/solid_pb2.pyi +212 -0
- dlubal/api/rfem/structure_core/solid_set_pb2.py +39 -0
- dlubal/api/rfem/structure_core/solid_set_pb2.pyi +55 -0
- dlubal/api/rfem/structure_core/surface_pb2.py +67 -0
- dlubal/api/rfem/structure_core/surface_pb2.pyi +473 -0
- dlubal/api/rfem/structure_core/surface_set_pb2.py +47 -0
- dlubal/api/rfem/structure_core/surface_set_pb2.pyi +164 -0
- dlubal/api/rfem/structure_core/thickness_pb2.py +64 -0
- dlubal/api/rfem/structure_core/thickness_pb2.pyi +479 -0
- dlubal/api/rfem/timber_design_objects/__init__.py +3 -0
- dlubal/api/rfem/timber_design_objects/timber_design_fr_configuration_pb2.py +36 -0
- dlubal/api/rfem/timber_design_objects/timber_design_fr_configuration_pb2.pyi +30 -0
- dlubal/api/rfem/timber_design_objects/timber_design_sls_configuration_pb2.py +36 -0
- dlubal/api/rfem/timber_design_objects/timber_design_sls_configuration_pb2.pyi +30 -0
- dlubal/api/rfem/timber_design_objects/timber_design_uls_configuration_pb2.py +36 -0
- dlubal/api/rfem/timber_design_objects/timber_design_uls_configuration_pb2.pyi +30 -0
- dlubal/api/rfem/types_for_aluminum_design/__init__.py +3 -0
- dlubal/api/rfem/types_for_aluminum_design/aluminum_effective_lengths_pb2.py +56 -0
- dlubal/api/rfem/types_for_aluminum_design/aluminum_effective_lengths_pb2.pyi +150 -0
- dlubal/api/rfem/types_for_aluminum_design/aluminum_member_local_section_reduction_pb2.py +38 -0
- dlubal/api/rfem/types_for_aluminum_design/aluminum_member_local_section_reduction_pb2.pyi +36 -0
- dlubal/api/rfem/types_for_aluminum_design/aluminum_member_transverse_weld_pb2.py +38 -0
- dlubal/api/rfem/types_for_aluminum_design/aluminum_member_transverse_weld_pb2.pyi +36 -0
- dlubal/api/rfem/types_for_concrete_design/__init__.py +5 -0
- dlubal/api/rfem/types_for_concrete_design/concrete_durability_pb2.py +68 -0
- dlubal/api/rfem/types_for_concrete_design/concrete_durability_pb2.pyi +269 -0
- dlubal/api/rfem/types_for_concrete_design/concrete_effective_lengths_pb2.py +66 -0
- dlubal/api/rfem/types_for_concrete_design/concrete_effective_lengths_pb2.pyi +186 -0
- dlubal/api/rfem/types_for_concrete_design/punching_reinforcement_pb2.py +52 -0
- dlubal/api/rfem/types_for_concrete_design/punching_reinforcement_pb2.pyi +196 -0
- dlubal/api/rfem/types_for_concrete_design/reinforcement_direction_pb2.py +38 -0
- dlubal/api/rfem/types_for_concrete_design/reinforcement_direction_pb2.pyi +48 -0
- dlubal/api/rfem/types_for_concrete_design/surface_reinforcement_pb2.py +72 -0
- dlubal/api/rfem/types_for_concrete_design/surface_reinforcement_pb2.pyi +560 -0
- dlubal/api/rfem/types_for_lines/__init__.py +4 -0
- dlubal/api/rfem/types_for_lines/line_hinge_pb2.py +103 -0
- dlubal/api/rfem/types_for_lines/line_hinge_pb2.pyi +610 -0
- dlubal/api/rfem/types_for_lines/line_mesh_refinement_pb2.py +38 -0
- dlubal/api/rfem/types_for_lines/line_mesh_refinement_pb2.pyi +50 -0
- dlubal/api/rfem/types_for_lines/line_support_pb2.py +127 -0
- dlubal/api/rfem/types_for_lines/line_support_pb2.pyi +883 -0
- dlubal/api/rfem/types_for_lines/line_welded_joint_pb2.py +42 -0
- dlubal/api/rfem/types_for_lines/line_welded_joint_pb2.pyi +93 -0
- dlubal/api/rfem/types_for_members/__init__.py +13 -0
- dlubal/api/rfem/types_for_members/design_support_pb2.py +50 -0
- dlubal/api/rfem/types_for_members/design_support_pb2.pyi +166 -0
- dlubal/api/rfem/types_for_members/member_definable_stiffness_pb2.py +36 -0
- dlubal/api/rfem/types_for_members/member_definable_stiffness_pb2.pyi +52 -0
- dlubal/api/rfem/types_for_members/member_eccentricity_pb2.py +49 -0
- dlubal/api/rfem/types_for_members/member_eccentricity_pb2.pyi +117 -0
- dlubal/api/rfem/types_for_members/member_hinge_pb2.py +151 -0
- dlubal/api/rfem/types_for_members/member_hinge_pb2.pyi +1226 -0
- dlubal/api/rfem/types_for_members/member_nonlinearity_pb2.py +38 -0
- dlubal/api/rfem/types_for_members/member_nonlinearity_pb2.pyi +62 -0
- dlubal/api/rfem/types_for_members/member_openings_pb2.py +38 -0
- dlubal/api/rfem/types_for_members/member_openings_pb2.pyi +36 -0
- dlubal/api/rfem/types_for_members/member_result_intermediate_point_pb2.py +38 -0
- dlubal/api/rfem/types_for_members/member_result_intermediate_point_pb2.pyi +40 -0
- dlubal/api/rfem/types_for_members/member_rotational_restraint_pb2.py +48 -0
- dlubal/api/rfem/types_for_members/member_rotational_restraint_pb2.pyi +111 -0
- dlubal/api/rfem/types_for_members/member_shear_panel_pb2.py +40 -0
- dlubal/api/rfem/types_for_members/member_shear_panel_pb2.pyi +82 -0
- dlubal/api/rfem/types_for_members/member_spring_pb2.py +50 -0
- dlubal/api/rfem/types_for_members/member_spring_pb2.pyi +139 -0
- dlubal/api/rfem/types_for_members/member_stiffness_modification_pb2.py +46 -0
- dlubal/api/rfem/types_for_members/member_stiffness_modification_pb2.pyi +130 -0
- dlubal/api/rfem/types_for_members/member_support_pb2.py +49 -0
- dlubal/api/rfem/types_for_members/member_support_pb2.pyi +162 -0
- dlubal/api/rfem/types_for_members/member_transverse_stiffener_pb2.py +38 -0
- dlubal/api/rfem/types_for_members/member_transverse_stiffener_pb2.pyi +36 -0
- dlubal/api/rfem/types_for_nodes/__init__.py +2 -0
- dlubal/api/rfem/types_for_nodes/nodal_mesh_refinement_pb2.py +40 -0
- dlubal/api/rfem/types_for_nodes/nodal_mesh_refinement_pb2.pyi +65 -0
- dlubal/api/rfem/types_for_nodes/nodal_support_pb2.py +171 -0
- dlubal/api/rfem/types_for_nodes/nodal_support_pb2.pyi +1202 -0
- dlubal/api/rfem/types_for_solids/__init__.py +3 -0
- dlubal/api/rfem/types_for_solids/solid_contacts_pb2.py +40 -0
- dlubal/api/rfem/types_for_solids/solid_contacts_pb2.pyi +61 -0
- dlubal/api/rfem/types_for_solids/solid_gas_pb2.py +36 -0
- dlubal/api/rfem/types_for_solids/solid_gas_pb2.pyi +28 -0
- dlubal/api/rfem/types_for_solids/solid_mesh_refinement_pb2.py +36 -0
- dlubal/api/rfem/types_for_solids/solid_mesh_refinement_pb2.pyi +30 -0
- dlubal/api/rfem/types_for_special_objects/__init__.py +4 -0
- dlubal/api/rfem/types_for_special_objects/line_release_type_pb2.py +105 -0
- dlubal/api/rfem/types_for_special_objects/line_release_type_pb2.pyi +661 -0
- dlubal/api/rfem/types_for_special_objects/nodal_release_type_pb2.py +110 -0
- dlubal/api/rfem/types_for_special_objects/nodal_release_type_pb2.pyi +732 -0
- dlubal/api/rfem/types_for_special_objects/surface_release_type_pb2.py +69 -0
- dlubal/api/rfem/types_for_special_objects/surface_release_type_pb2.pyi +306 -0
- dlubal/api/rfem/types_for_special_objects/surfaces_contact_type_pb2.py +44 -0
- dlubal/api/rfem/types_for_special_objects/surfaces_contact_type_pb2.pyi +81 -0
- dlubal/api/rfem/types_for_steel_design/__init__.py +3 -0
- dlubal/api/rfem/types_for_steel_design/steel_boundary_conditions_pb2.py +42 -0
- dlubal/api/rfem/types_for_steel_design/steel_boundary_conditions_pb2.pyi +60 -0
- dlubal/api/rfem/types_for_steel_design/steel_effective_lengths_pb2.py +90 -0
- dlubal/api/rfem/types_for_steel_design/steel_effective_lengths_pb2.pyi +337 -0
- dlubal/api/rfem/types_for_steel_design/steel_member_local_section_reduction_pb2.py +38 -0
- dlubal/api/rfem/types_for_steel_design/steel_member_local_section_reduction_pb2.pyi +36 -0
- dlubal/api/rfem/types_for_surfaces/__init__.py +4 -0
- dlubal/api/rfem/types_for_surfaces/surface_eccentricity_pb2.py +42 -0
- dlubal/api/rfem/types_for_surfaces/surface_eccentricity_pb2.pyi +74 -0
- dlubal/api/rfem/types_for_surfaces/surface_mesh_refinement_pb2.py +36 -0
- dlubal/api/rfem/types_for_surfaces/surface_mesh_refinement_pb2.pyi +30 -0
- dlubal/api/rfem/types_for_surfaces/surface_stiffness_modification_pb2.py +40 -0
- dlubal/api/rfem/types_for_surfaces/surface_stiffness_modification_pb2.pyi +157 -0
- dlubal/api/rfem/types_for_surfaces/surface_support_pb2.py +43 -0
- dlubal/api/rfem/types_for_surfaces/surface_support_pb2.pyi +83 -0
- dlubal/api/rfem/types_for_timber_design/__init__.py +5 -0
- dlubal/api/rfem/types_for_timber_design/timber_effective_lengths_pb2.py +56 -0
- dlubal/api/rfem/types_for_timber_design/timber_effective_lengths_pb2.pyi +139 -0
- dlubal/api/rfem/types_for_timber_design/timber_member_local_section_reduction_pb2.py +38 -0
- dlubal/api/rfem/types_for_timber_design/timber_member_local_section_reduction_pb2.pyi +36 -0
- dlubal/api/rfem/types_for_timber_design/timber_moisture_class_pb2.py +38 -0
- dlubal/api/rfem/types_for_timber_design/timber_moisture_class_pb2.pyi +46 -0
- dlubal/api/rfem/types_for_timber_design/timber_service_class_pb2.py +38 -0
- dlubal/api/rfem/types_for_timber_design/timber_service_class_pb2.pyi +46 -0
- dlubal/api/rfem/types_for_timber_design/timber_service_conditions_pb2.py +42 -0
- dlubal/api/rfem/types_for_timber_design/timber_service_conditions_pb2.pyi +110 -0
- dlubal.api-0.1.293714a1.dist-info/METADATA +40 -0
- dlubal.api-0.1.293714a1.dist-info/RECORD +342 -0
- dlubal.api-0.1.293714a1.dist-info/WHEEL +5 -0
- dlubal.api-0.1.293714a1.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,164 @@
|
|
|
1
|
+
from dlubal.api.common import common_pb2 as _common_pb2
|
|
2
|
+
from google.protobuf.internal import containers as _containers
|
|
3
|
+
from google.protobuf.internal import enum_type_wrapper as _enum_type_wrapper
|
|
4
|
+
from google.protobuf import descriptor as _descriptor
|
|
5
|
+
from google.protobuf import message as _message
|
|
6
|
+
from typing import ClassVar as _ClassVar, Iterable as _Iterable, Mapping as _Mapping, Optional as _Optional, Union as _Union
|
|
7
|
+
|
|
8
|
+
DESCRIPTOR: _descriptor.FileDescriptor
|
|
9
|
+
|
|
10
|
+
class SurfaceSetSetType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
11
|
+
__slots__ = ()
|
|
12
|
+
SURFACE_SET_SET_TYPE_CONTINUOUS: _ClassVar[SurfaceSetSetType]
|
|
13
|
+
SURFACE_SET_SET_TYPE_GROUP: _ClassVar[SurfaceSetSetType]
|
|
14
|
+
|
|
15
|
+
class SurfaceSetDeflectionCheckSurfaceType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
16
|
+
__slots__ = ()
|
|
17
|
+
SURFACE_SET_DEFLECTION_CHECK_SURFACE_TYPE_DOUBLE_SUPPORTED: _ClassVar[SurfaceSetDeflectionCheckSurfaceType]
|
|
18
|
+
SURFACE_SET_DEFLECTION_CHECK_SURFACE_TYPE_CANTILEVER: _ClassVar[SurfaceSetDeflectionCheckSurfaceType]
|
|
19
|
+
|
|
20
|
+
class SurfaceSetDeflectionCheckDisplacementReference(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
21
|
+
__slots__ = ()
|
|
22
|
+
SURFACE_SET_DEFLECTION_CHECK_DISPLACEMENT_REFERENCE_DEFORMED_USER_DEFINED_REFERENCE_PLANE: _ClassVar[SurfaceSetDeflectionCheckDisplacementReference]
|
|
23
|
+
SURFACE_SET_DEFLECTION_CHECK_DISPLACEMENT_REFERENCE_PARALLEL_SURFACE: _ClassVar[SurfaceSetDeflectionCheckDisplacementReference]
|
|
24
|
+
SURFACE_SET_DEFLECTION_CHECK_DISPLACEMENT_REFERENCE_UNDEFORMED_SYSTEM: _ClassVar[SurfaceSetDeflectionCheckDisplacementReference]
|
|
25
|
+
|
|
26
|
+
class SurfaceSetDeflectionCheckReferenceLengthZDefinitionType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
27
|
+
__slots__ = ()
|
|
28
|
+
SURFACE_SET_DEFLECTION_CHECK_REFERENCE_LENGTH_Z_DEFINITION_TYPE_MANUALLY: _ClassVar[SurfaceSetDeflectionCheckReferenceLengthZDefinitionType]
|
|
29
|
+
SURFACE_SET_DEFLECTION_CHECK_REFERENCE_LENGTH_Z_DEFINITION_TYPE_BY_MAXIMUM_BOUNDARY_LINE: _ClassVar[SurfaceSetDeflectionCheckReferenceLengthZDefinitionType]
|
|
30
|
+
SURFACE_SET_DEFLECTION_CHECK_REFERENCE_LENGTH_Z_DEFINITION_TYPE_BY_MINIMUM_BOUNDARY_LINE: _ClassVar[SurfaceSetDeflectionCheckReferenceLengthZDefinitionType]
|
|
31
|
+
SURFACE_SET_SET_TYPE_CONTINUOUS: SurfaceSetSetType
|
|
32
|
+
SURFACE_SET_SET_TYPE_GROUP: SurfaceSetSetType
|
|
33
|
+
SURFACE_SET_DEFLECTION_CHECK_SURFACE_TYPE_DOUBLE_SUPPORTED: SurfaceSetDeflectionCheckSurfaceType
|
|
34
|
+
SURFACE_SET_DEFLECTION_CHECK_SURFACE_TYPE_CANTILEVER: SurfaceSetDeflectionCheckSurfaceType
|
|
35
|
+
SURFACE_SET_DEFLECTION_CHECK_DISPLACEMENT_REFERENCE_DEFORMED_USER_DEFINED_REFERENCE_PLANE: SurfaceSetDeflectionCheckDisplacementReference
|
|
36
|
+
SURFACE_SET_DEFLECTION_CHECK_DISPLACEMENT_REFERENCE_PARALLEL_SURFACE: SurfaceSetDeflectionCheckDisplacementReference
|
|
37
|
+
SURFACE_SET_DEFLECTION_CHECK_DISPLACEMENT_REFERENCE_UNDEFORMED_SYSTEM: SurfaceSetDeflectionCheckDisplacementReference
|
|
38
|
+
SURFACE_SET_DEFLECTION_CHECK_REFERENCE_LENGTH_Z_DEFINITION_TYPE_MANUALLY: SurfaceSetDeflectionCheckReferenceLengthZDefinitionType
|
|
39
|
+
SURFACE_SET_DEFLECTION_CHECK_REFERENCE_LENGTH_Z_DEFINITION_TYPE_BY_MAXIMUM_BOUNDARY_LINE: SurfaceSetDeflectionCheckReferenceLengthZDefinitionType
|
|
40
|
+
SURFACE_SET_DEFLECTION_CHECK_REFERENCE_LENGTH_Z_DEFINITION_TYPE_BY_MINIMUM_BOUNDARY_LINE: SurfaceSetDeflectionCheckReferenceLengthZDefinitionType
|
|
41
|
+
|
|
42
|
+
class SurfaceSet(_message.Message):
|
|
43
|
+
__slots__ = ("no", "user_defined_name_enabled", "name", "set_type", "surfaces", "surface_area", "volume", "mass", "center_of_gravity", "center_of_gravity_x", "center_of_gravity_y", "center_of_gravity_z", "position", "position_short", "stress_analysis_configuration", "design_properties_activated", "timber_service_class", "timber_moisture_class", "timber_service_conditions", "comment", "is_generated", "generating_object_info", "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", "surface_reinforcements", "surface_reinforcement_table", "surface_concrete_design_uls_configuration", "surface_concrete_design_sls_configuration", "surface_concrete_design_fr_configuration", "surface_concrete_design_seismic_configuration", "deflection_check_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_timber_design_uls_configuration", "surface_timber_design_sls_configuration", "surface_timber_design_fr_configuration", "id_for_export_import", "metadata_for_export_import")
|
|
44
|
+
NO_FIELD_NUMBER: _ClassVar[int]
|
|
45
|
+
USER_DEFINED_NAME_ENABLED_FIELD_NUMBER: _ClassVar[int]
|
|
46
|
+
NAME_FIELD_NUMBER: _ClassVar[int]
|
|
47
|
+
SET_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
48
|
+
SURFACES_FIELD_NUMBER: _ClassVar[int]
|
|
49
|
+
SURFACE_AREA_FIELD_NUMBER: _ClassVar[int]
|
|
50
|
+
VOLUME_FIELD_NUMBER: _ClassVar[int]
|
|
51
|
+
MASS_FIELD_NUMBER: _ClassVar[int]
|
|
52
|
+
CENTER_OF_GRAVITY_FIELD_NUMBER: _ClassVar[int]
|
|
53
|
+
CENTER_OF_GRAVITY_X_FIELD_NUMBER: _ClassVar[int]
|
|
54
|
+
CENTER_OF_GRAVITY_Y_FIELD_NUMBER: _ClassVar[int]
|
|
55
|
+
CENTER_OF_GRAVITY_Z_FIELD_NUMBER: _ClassVar[int]
|
|
56
|
+
POSITION_FIELD_NUMBER: _ClassVar[int]
|
|
57
|
+
POSITION_SHORT_FIELD_NUMBER: _ClassVar[int]
|
|
58
|
+
STRESS_ANALYSIS_CONFIGURATION_FIELD_NUMBER: _ClassVar[int]
|
|
59
|
+
DESIGN_PROPERTIES_ACTIVATED_FIELD_NUMBER: _ClassVar[int]
|
|
60
|
+
TIMBER_SERVICE_CLASS_FIELD_NUMBER: _ClassVar[int]
|
|
61
|
+
TIMBER_MOISTURE_CLASS_FIELD_NUMBER: _ClassVar[int]
|
|
62
|
+
TIMBER_SERVICE_CONDITIONS_FIELD_NUMBER: _ClassVar[int]
|
|
63
|
+
COMMENT_FIELD_NUMBER: _ClassVar[int]
|
|
64
|
+
IS_GENERATED_FIELD_NUMBER: _ClassVar[int]
|
|
65
|
+
GENERATING_OBJECT_INFO_FIELD_NUMBER: _ClassVar[int]
|
|
66
|
+
IS_USER_DEFINED_CONCRETE_COVER_ENABLED_FIELD_NUMBER: _ClassVar[int]
|
|
67
|
+
CONCRETE_COVER_TOP_FIELD_NUMBER: _ClassVar[int]
|
|
68
|
+
CONCRETE_COVER_BOTTOM_FIELD_NUMBER: _ClassVar[int]
|
|
69
|
+
USER_DEFINED_CONCRETE_COVER_TOP_FIELD_NUMBER: _ClassVar[int]
|
|
70
|
+
USER_DEFINED_CONCRETE_COVER_BOTTOM_FIELD_NUMBER: _ClassVar[int]
|
|
71
|
+
CONCRETE_DURABILITY_TOP_FIELD_NUMBER: _ClassVar[int]
|
|
72
|
+
CONCRETE_DURABILITY_BOTTOM_FIELD_NUMBER: _ClassVar[int]
|
|
73
|
+
REINFORCEMENT_DIRECTION_TOP_FIELD_NUMBER: _ClassVar[int]
|
|
74
|
+
REINFORCEMENT_DIRECTION_BOTTOM_FIELD_NUMBER: _ClassVar[int]
|
|
75
|
+
SURFACE_REINFORCEMENTS_FIELD_NUMBER: _ClassVar[int]
|
|
76
|
+
SURFACE_REINFORCEMENT_TABLE_FIELD_NUMBER: _ClassVar[int]
|
|
77
|
+
SURFACE_CONCRETE_DESIGN_ULS_CONFIGURATION_FIELD_NUMBER: _ClassVar[int]
|
|
78
|
+
SURFACE_CONCRETE_DESIGN_SLS_CONFIGURATION_FIELD_NUMBER: _ClassVar[int]
|
|
79
|
+
SURFACE_CONCRETE_DESIGN_FR_CONFIGURATION_FIELD_NUMBER: _ClassVar[int]
|
|
80
|
+
SURFACE_CONCRETE_DESIGN_SEISMIC_CONFIGURATION_FIELD_NUMBER: _ClassVar[int]
|
|
81
|
+
DEFLECTION_CHECK_SURFACE_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
82
|
+
DEFLECTION_CHECK_DISPLACEMENT_REFERENCE_FIELD_NUMBER: _ClassVar[int]
|
|
83
|
+
DEFLECTION_CHECK_REFERENCE_LENGTH_Z_FIELD_NUMBER: _ClassVar[int]
|
|
84
|
+
DEFLECTION_CHECK_REFERENCE_LENGTH_Z_DEFINITION_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
85
|
+
DEFLECTION_CHECK_REFERENCE_PLANE_POINT_1_FIELD_NUMBER: _ClassVar[int]
|
|
86
|
+
DEFLECTION_CHECK_REFERENCE_PLANE_POINT_1_X_FIELD_NUMBER: _ClassVar[int]
|
|
87
|
+
DEFLECTION_CHECK_REFERENCE_PLANE_POINT_1_Y_FIELD_NUMBER: _ClassVar[int]
|
|
88
|
+
DEFLECTION_CHECK_REFERENCE_PLANE_POINT_1_Z_FIELD_NUMBER: _ClassVar[int]
|
|
89
|
+
DEFLECTION_CHECK_REFERENCE_PLANE_POINT_2_FIELD_NUMBER: _ClassVar[int]
|
|
90
|
+
DEFLECTION_CHECK_REFERENCE_PLANE_POINT_2_X_FIELD_NUMBER: _ClassVar[int]
|
|
91
|
+
DEFLECTION_CHECK_REFERENCE_PLANE_POINT_2_Y_FIELD_NUMBER: _ClassVar[int]
|
|
92
|
+
DEFLECTION_CHECK_REFERENCE_PLANE_POINT_2_Z_FIELD_NUMBER: _ClassVar[int]
|
|
93
|
+
DEFLECTION_CHECK_REFERENCE_PLANE_POINT_3_FIELD_NUMBER: _ClassVar[int]
|
|
94
|
+
DEFLECTION_CHECK_REFERENCE_PLANE_POINT_3_X_FIELD_NUMBER: _ClassVar[int]
|
|
95
|
+
DEFLECTION_CHECK_REFERENCE_PLANE_POINT_3_Y_FIELD_NUMBER: _ClassVar[int]
|
|
96
|
+
DEFLECTION_CHECK_REFERENCE_PLANE_POINT_3_Z_FIELD_NUMBER: _ClassVar[int]
|
|
97
|
+
SURFACE_TIMBER_DESIGN_ULS_CONFIGURATION_FIELD_NUMBER: _ClassVar[int]
|
|
98
|
+
SURFACE_TIMBER_DESIGN_SLS_CONFIGURATION_FIELD_NUMBER: _ClassVar[int]
|
|
99
|
+
SURFACE_TIMBER_DESIGN_FR_CONFIGURATION_FIELD_NUMBER: _ClassVar[int]
|
|
100
|
+
ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
101
|
+
METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
102
|
+
no: int
|
|
103
|
+
user_defined_name_enabled: bool
|
|
104
|
+
name: str
|
|
105
|
+
set_type: SurfaceSetSetType
|
|
106
|
+
surfaces: _containers.RepeatedScalarFieldContainer[int]
|
|
107
|
+
surface_area: float
|
|
108
|
+
volume: float
|
|
109
|
+
mass: float
|
|
110
|
+
center_of_gravity: _common_pb2.Vector3d
|
|
111
|
+
center_of_gravity_x: float
|
|
112
|
+
center_of_gravity_y: float
|
|
113
|
+
center_of_gravity_z: float
|
|
114
|
+
position: str
|
|
115
|
+
position_short: str
|
|
116
|
+
stress_analysis_configuration: int
|
|
117
|
+
design_properties_activated: bool
|
|
118
|
+
timber_service_class: int
|
|
119
|
+
timber_moisture_class: int
|
|
120
|
+
timber_service_conditions: int
|
|
121
|
+
comment: str
|
|
122
|
+
is_generated: bool
|
|
123
|
+
generating_object_info: str
|
|
124
|
+
is_user_defined_concrete_cover_enabled: bool
|
|
125
|
+
concrete_cover_top: float
|
|
126
|
+
concrete_cover_bottom: float
|
|
127
|
+
user_defined_concrete_cover_top: float
|
|
128
|
+
user_defined_concrete_cover_bottom: float
|
|
129
|
+
concrete_durability_top: int
|
|
130
|
+
concrete_durability_bottom: int
|
|
131
|
+
reinforcement_direction_top: int
|
|
132
|
+
reinforcement_direction_bottom: int
|
|
133
|
+
surface_reinforcements: _containers.RepeatedScalarFieldContainer[int]
|
|
134
|
+
surface_reinforcement_table: ArrayOfSurfaceSetSurfaceReinforcementTable
|
|
135
|
+
surface_concrete_design_uls_configuration: int
|
|
136
|
+
surface_concrete_design_sls_configuration: int
|
|
137
|
+
surface_concrete_design_fr_configuration: int
|
|
138
|
+
surface_concrete_design_seismic_configuration: int
|
|
139
|
+
deflection_check_surface_type: SurfaceSetDeflectionCheckSurfaceType
|
|
140
|
+
deflection_check_displacement_reference: SurfaceSetDeflectionCheckDisplacementReference
|
|
141
|
+
deflection_check_reference_length_z: float
|
|
142
|
+
deflection_check_reference_length_z_definition_type: SurfaceSetDeflectionCheckReferenceLengthZDefinitionType
|
|
143
|
+
deflection_check_reference_plane_point_1: _common_pb2.Vector3d
|
|
144
|
+
deflection_check_reference_plane_point_1_x: float
|
|
145
|
+
deflection_check_reference_plane_point_1_y: float
|
|
146
|
+
deflection_check_reference_plane_point_1_z: float
|
|
147
|
+
deflection_check_reference_plane_point_2: _common_pb2.Vector3d
|
|
148
|
+
deflection_check_reference_plane_point_2_x: float
|
|
149
|
+
deflection_check_reference_plane_point_2_y: float
|
|
150
|
+
deflection_check_reference_plane_point_2_z: float
|
|
151
|
+
deflection_check_reference_plane_point_3: _common_pb2.Vector3d
|
|
152
|
+
deflection_check_reference_plane_point_3_x: float
|
|
153
|
+
deflection_check_reference_plane_point_3_y: float
|
|
154
|
+
deflection_check_reference_plane_point_3_z: float
|
|
155
|
+
surface_timber_design_uls_configuration: int
|
|
156
|
+
surface_timber_design_sls_configuration: int
|
|
157
|
+
surface_timber_design_fr_configuration: int
|
|
158
|
+
id_for_export_import: str
|
|
159
|
+
metadata_for_export_import: str
|
|
160
|
+
def __init__(self, no: _Optional[int] = ..., user_defined_name_enabled: bool = ..., name: _Optional[str] = ..., set_type: _Optional[_Union[SurfaceSetSetType, str]] = ..., surfaces: _Optional[_Iterable[int]] = ..., surface_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] = ..., stress_analysis_configuration: _Optional[int] = ..., design_properties_activated: bool = ..., timber_service_class: _Optional[int] = ..., timber_moisture_class: _Optional[int] = ..., timber_service_conditions: _Optional[int] = ..., comment: _Optional[str] = ..., is_generated: bool = ..., generating_object_info: _Optional[str] = ..., 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] = ..., surface_reinforcements: _Optional[_Iterable[int]] = ..., surface_reinforcement_table: _Optional[_Union[ArrayOfSurfaceSetSurfaceReinforcementTable, _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] = ..., deflection_check_surface_type: _Optional[_Union[SurfaceSetDeflectionCheckSurfaceType, str]] = ..., deflection_check_displacement_reference: _Optional[_Union[SurfaceSetDeflectionCheckDisplacementReference, str]] = ..., deflection_check_reference_length_z: _Optional[float] = ..., deflection_check_reference_length_z_definition_type: _Optional[_Union[SurfaceSetDeflectionCheckReferenceLengthZDefinitionType, 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_timber_design_uls_configuration: _Optional[int] = ..., surface_timber_design_sls_configuration: _Optional[int] = ..., surface_timber_design_fr_configuration: _Optional[int] = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
|
|
161
|
+
|
|
162
|
+
class ArrayOfSurfaceSetSurfaceReinforcementTable(_message.Message):
|
|
163
|
+
__slots__ = ()
|
|
164
|
+
def __init__(self) -> None: ...
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# NO CHECKED-IN PROTOBUF GENCODE
|
|
4
|
+
# source: dlubal/api/rfem/structure_core/thickness.proto
|
|
5
|
+
# Protobuf Python Version: 5.28.1
|
|
6
|
+
"""Generated protocol buffer code."""
|
|
7
|
+
from google.protobuf import descriptor as _descriptor
|
|
8
|
+
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
9
|
+
from google.protobuf import runtime_version as _runtime_version
|
|
10
|
+
from google.protobuf import symbol_database as _symbol_database
|
|
11
|
+
from google.protobuf.internal import builder as _builder
|
|
12
|
+
_runtime_version.ValidateProtobufRuntimeVersion(
|
|
13
|
+
_runtime_version.Domain.PUBLIC,
|
|
14
|
+
5,
|
|
15
|
+
28,
|
|
16
|
+
1,
|
|
17
|
+
'',
|
|
18
|
+
'dlubal/api/rfem/structure_core/thickness.proto'
|
|
19
|
+
)
|
|
20
|
+
# @@protoc_insertion_point(imports)
|
|
21
|
+
|
|
22
|
+
_sym_db = _symbol_database.Default()
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n.dlubal/api/rfem/structure_core/thickness.proto\x12\x1e\x64lubal.api.rfem.structure_core\"\x86R\n\tThickness\x12\n\n\x02no\x18\x01 \x01(\x05\x12&\n\x19user_defined_name_enabled\x18\x02 \x01(\x08H\x00\x88\x01\x01\x12\x11\n\x04name\x18\x03 \x01(\tH\x01\x88\x01\x01\x12\x1c\n\x14\x61ssigned_to_surfaces\x18\x04 \x03(\x05\x12@\n\x04type\x18\x05 \x01(\x0e\x32-.dlubal.api.rfem.structure_core.ThicknessTypeH\x02\x88\x01\x01\x12\x15\n\x08material\x18\x06 \x01(\x05H\x03\x88\x01\x01\x12\x1e\n\x11uniform_thickness\x18\x07 \x01(\x01H\x04\x88\x01\x01\x12,\n\x1funiform_or_fictitious_thickness\x18\x08 \x01(\x01H\x05\x88\x01\x01\x12\x43\n6advanced_time_dependent_properties_of_concrete_enabled\x18\t \x01(\x08H\x06\x88\x01\x01\x12\x1a\n\rcreep_enabled\x18\n \x01(\x08H\x07\x88\x01\x01\x12\x1e\n\x11shrinkage_enabled\x18\x0b \x01(\x08H\x08\x88\x01\x01\x12\x1e\n\x11relative_humidity\x18\x0c \x01(\x01H\t\x88\x01\x01\x12/\n\"specify_integration_method_enabled\x18\r \x01(\x08H\n\x88\x01\x01\x12\x64\n\x17integration_method_type\x18\x0e \x01(\x0e\x32>.dlubal.api.rfem.structure_core.ThicknessIntegrationMethodTypeH\x0b\x88\x01\x01\x12)\n\x1cnumber_of_integration_points\x18\x0f \x01(\x05H\x0c\x88\x01\x01\x12\x18\n\x0bthickness_1\x18\x10 \x01(\x01H\r\x88\x01\x01\x12\x13\n\x06node_1\x18\x11 \x01(\x05H\x0e\x88\x01\x01\x12\x18\n\x0bthickness_2\x18\x12 \x01(\x01H\x0f\x88\x01\x01\x12\x13\n\x06node_2\x18\x13 \x01(\x05H\x10\x88\x01\x01\x12\x18\n\x0bthickness_3\x18\x14 \x01(\x01H\x11\x88\x01\x01\x12\x13\n\x06node_3\x18\x15 \x01(\x05H\x12\x88\x01\x01\x12J\n\tdirection\x18\x16 \x01(\x0e\x32\x32.dlubal.api.rfem.structure_core.ThicknessDirectionH\x13\x88\x01\x01\x12\x18\n\x0bthickness_4\x18\x17 \x01(\x01H\x14\x88\x01\x01\x12\x13\n\x06node_4\x18\x18 \x01(\x05H\x15\x88\x01\x01\x12$\n\x17thickness_circle_center\x18\x19 \x01(\x01H\x16\x88\x01\x01\x12\"\n\x15thickness_circle_line\x18\x1a \x01(\x01H\x17\x88\x01\x01\x12\x14\n\x07\x63omment\x18\x1b \x01(\tH\x18\x88\x01\x01\x12i\n\x16layers_reference_table\x18\x1c \x01(\x0b\x32\x44.dlubal.api.rfem.structure_core.ArrayOfThicknessLayersReferenceTableH\x19\x88\x01\x01\x12\'\n\x1alayers_solid_model_enabled\x18\x1d \x01(\x08H\x1a\x88\x01\x01\x12\x1f\n\x12layers_gas_enabled\x18\x1e \x01(\x08H\x1b\x88\x01\x01\x12#\n\x16layers_total_thickness\x18\x1f \x01(\x01H\x1c\x88\x01\x01\x12 \n\x13layers_total_weight\x18 \x01(\x01H\x1d\x88\x01\x01\x12(\n\x1bstiffness_reduction_enabled\x18! \x01(\x08H\x1e\x88\x01\x01\x12)\n\x1cis_enabled_design_of_failure\x18\" \x01(\x08H\x1f\x88\x01\x01\x12\x1b\n\x0eplank_width_bx\x18# \x01(\x01H \x88\x01\x01\x12\x1b\n\x0eplank_width_by\x18$ \x01(\x01H!\x88\x01\x01\x12.\n!plank_width_including_gap_enabled\x18% \x01(\x08H\"\x88\x01\x01\x12)\n\x1cplank_width_including_gap_ex\x18& \x01(\x01H#\x88\x01\x01\x12)\n\x1cplank_width_including_gap_ey\x18\' \x01(\x01H$\x88\x01\x01\x12\x39\n,stiffness_reduction_elements_editing_enabled\x18( \x01(\x08H%\x88\x01\x01\x12\x10\n\x03K33\x18) \x01(\x01H&\x88\x01\x01\x12\x10\n\x03K44\x18* \x01(\x01H\'\x88\x01\x01\x12\x10\n\x03K55\x18+ \x01(\x01H(\x88\x01\x01\x12\x10\n\x03K88\x18, \x01(\x01H)\x88\x01\x01\x12\x15\n\x08K33_note\x18- \x01(\tH*\x88\x01\x01\x12\x15\n\x08K44_note\x18. \x01(\tH+\x88\x01\x01\x12\x15\n\x08K55_note\x18/ \x01(\tH,\x88\x01\x01\x12\x15\n\x08K88_note\x18\x30 \x01(\tH-\x88\x01\x01\x12k\n\x1b\x66unction_data_function_type\x18\x31 \x01(\x0e\x32\x41.dlubal.api.rfem.structure_core.ThicknessFunctionDataFunctionTypeH.\x88\x01\x01\x12#\n\x16\x66unction_data_layer_id\x18\x32 \x01(\x05H/\x88\x01\x01\x12\x41\n4function_data_age_of_concrete_at_the_considered_time\x18\x33 \x01(\x01H0\x88\x01\x01\x12*\n\x1d\x66unction_data_number_of_steps\x18\x34 \x01(\x05H1\x88\x01\x01\x12q\n\x1a\x66unction_data_coefficients\x18\x35 \x01(\x0b\x32H.dlubal.api.rfem.structure_core.ArrayOfThicknessFunctionDataCoefficientsH2\x88\x01\x01\x12\x1d\n\x10parent_thickness\x18\x36 \x01(\x05H3\x88\x01\x01\x12\x1f\n\x17parent_thickness_layers\x18\x37 \x03(\x05\x12\x38\n+beam_panel_sheathing_front_material_enabled\x18\x38 \x01(\x08H4\x88\x01\x01\x12\x30\n#beam_panel_sheathing_front_material\x18\x39 \x01(\x05H5\x88\x01\x01\x12\x31\n$beam_panel_sheathing_front_thickness\x18: \x01(\x01H6\x88\x01\x01\x12\x37\n*beam_panel_sheathing_back_material_enabled\x18; \x01(\x08H7\x88\x01\x01\x12/\n\"beam_panel_sheathing_back_material\x18< \x01(\x05H8\x88\x01\x01\x12\x30\n#beam_panel_sheathing_back_thickness\x18= \x01(\x01H9\x88\x01\x01\x12\x85\x01\n)beam_panel_framing_members_connector_type\x18> \x01(\x0e\x32M.dlubal.api.rfem.structure_core.ThicknessBeamPanelFramingMembersConnectorTypeH:\x88\x01\x01\x12:\n-beam_panel_framing_members_connector_diameter\x18? \x01(\x01H;\x88\x01\x01\x12=\n0beam_panel_framing_members_connector_dimension_a\x18@ \x01(\x01H<\x88\x01\x01\x12=\n0beam_panel_framing_members_connector_dimension_b\x18\x41 \x01(\x01H=\x88\x01\x01\x12\x39\n,beam_panel_framing_members_connector_spacing\x18\x42 \x01(\x01H>\x88\x01\x01\x12\x43\n6beam_panel_framing_members_connector_stiffness_front_x\x18\x43 \x01(\x01H?\x88\x01\x01\x12\x43\n6beam_panel_framing_members_connector_stiffness_front_y\x18\x44 \x01(\x01H@\x88\x01\x01\x12\x42\n5beam_panel_framing_members_connector_stiffness_back_x\x18\x45 \x01(\x01HA\x88\x01\x01\x12\x42\n5beam_panel_framing_members_connector_stiffness_back_y\x18\x46 \x01(\x01HB\x88\x01\x01\x12\x31\n$beam_panel_inner_studs_cross_section\x18G \x01(\x05HC\x88\x01\x01\x12z\n#beam_panel_inner_studs_distribution\x18H \x01(\x0e\x32H.dlubal.api.rfem.structure_core.ThicknessBeamPanelInnerStudsDistributionHD\x88\x01\x01\x12@\n3beam_panel_inner_studs_reverse_distribution_enabled\x18I \x01(\x08HE\x88\x01\x01\x12+\n\x1e\x62\x65\x61m_panel_inner_studs_spacing\x18J \x01(\x01HF\x88\x01\x01\x12\x82\x01\n$beam_panel_inner_studs_spacing_table\x18K \x01(\x0b\x32O.dlubal.api.rfem.structure_core.ArrayOfThicknessBeamPanelInnerStudsSpacingTableHG\x88\x01\x01\x12?\n2beam_panel_inner_studs_spacing_definition_relative\x18L \x01(\x08HH\x88\x01\x01\x12}\n%beam_panel_inner_studs_connector_type\x18M \x01(\x0e\x32I.dlubal.api.rfem.structure_core.ThicknessBeamPanelInnerStudsConnectorTypeHI\x88\x01\x01\x12\x36\n)beam_panel_inner_studs_connector_diameter\x18N \x01(\x01HJ\x88\x01\x01\x12\x39\n,beam_panel_inner_studs_connector_dimension_a\x18O \x01(\x01HK\x88\x01\x01\x12\x39\n,beam_panel_inner_studs_connector_dimension_b\x18P \x01(\x01HL\x88\x01\x01\x12\x35\n(beam_panel_inner_studs_connector_spacing\x18Q \x01(\x01HM\x88\x01\x01\x12=\n0beam_panel_inner_studs_connector_stiffness_front\x18R \x01(\x01HN\x88\x01\x01\x12<\n/beam_panel_inner_studs_connector_stiffness_back\x18S \x01(\x01HO\x88\x01\x01\x12U\n\x0forthotropy_type\x18T \x01(\x0e\x32\x37.dlubal.api.rfem.structure_core.ThicknessOrthotropyTypeHP\x88\x01\x01\x12%\n\x18orthotropy_rotation_beta\x18U \x01(\x01HQ\x88\x01\x01\x12,\n\x1forthotropy_fictitious_thickness\x18V \x01(\x01HR\x88\x01\x01\x12\x8b\x01\n,shape_orthotropy_self_weight_definition_type\x18W \x01(\x0e\x32P.dlubal.api.rfem.structure_core.ThicknessShapeOrthotropySelfWeightDefinitionTypeHS\x88\x01\x01\x12\x33\n&shape_orthotropy_effective_thickness_x\x18X \x01(\x01HT\x88\x01\x01\x12\x33\n&shape_orthotropy_effective_thickness_y\x18Y \x01(\x01HU\x88\x01\x01\x12)\n\x1cshape_orthotropy_self_weight\x18Z \x01(\x01HV\x88\x01\x01\x12\x8b\x01\n,stiffness_matrix_self_weight_definition_type\x18[ \x01(\x0e\x32P.dlubal.api.rfem.structure_core.ThicknessStiffnessMatrixSelfWeightDefinitionTypeHW\x88\x01\x01\x12*\n\x1dstiffness_matrix_bulk_density\x18\\ \x01(\x01HX\x88\x01\x01\x12*\n\x1dstiffness_matrix_area_density\x18] \x01(\x01HY\x88\x01\x01\x12>\n1stiffness_matrix_coefficient_of_thermal_expansion\x18^ \x01(\x01HZ\x88\x01\x01\x12\x1f\n\x12\x63oupling_thickness\x18_ \x01(\x01H[\x88\x01\x01\x12\x1d\n\x10\x63oupling_spacing\x18` \x01(\x01H\\\x88\x01\x01\x12\x1b\n\x0e\x63oupling_width\x18\x61 \x01(\x01H]\x88\x01\x01\x12\x1b\n\x0eslab_thickness\x18\x62 \x01(\x01H^\x88\x01\x01\x12\x17\n\nrib_height\x18\x63 \x01(\x01H_\x88\x01\x01\x12\x18\n\x0brib_spacing\x18\x64 \x01(\x01H`\x88\x01\x01\x12\x16\n\trib_width\x18\x65 \x01(\x01Ha\x88\x01\x01\x12\x1a\n\rrib_spacing_x\x18\x66 \x01(\x01Hb\x88\x01\x01\x12\x1a\n\rrib_spacing_y\x18g \x01(\x01Hc\x88\x01\x01\x12\x18\n\x0brib_width_x\x18h \x01(\x01Hd\x88\x01\x01\x12\x18\n\x0brib_width_y\x18i \x01(\x01He\x88\x01\x01\x12\x1c\n\x0fsheet_thickness\x18j \x01(\x01Hf\x88\x01\x01\x12!\n\x14total_profile_height\x18k \x01(\x01Hg\x88\x01\x01\x12\x1d\n\x10top_flange_width\x18l \x01(\x01Hh\x88\x01\x01\x12 \n\x13\x62ottom_flange_width\x18m \x01(\x01Hi\x88\x01\x01\x12\x19\n\x0cvoid_spacing\x18n \x01(\x01Hj\x88\x01\x01\x12\x1a\n\rvoid_diameter\x18o \x01(\x01Hk\x88\x01\x01\x12\x19\n\x0crib_height_x\x18p \x01(\x01Hl\x88\x01\x01\x12\x19\n\x0crib_height_y\x18q \x01(\x01Hm\x88\x01\x01\x12\x10\n\x03\x44\x31\x31\x18r \x01(\x01Hn\x88\x01\x01\x12\x15\n\x08\x44\x31\x31_note\x18s \x01(\tHo\x88\x01\x01\x12\x10\n\x03\x44\x31\x32\x18t \x01(\x01Hp\x88\x01\x01\x12\x15\n\x08\x44\x31\x32_note\x18u \x01(\tHq\x88\x01\x01\x12\x10\n\x03\x44\x31\x33\x18v \x01(\x01Hr\x88\x01\x01\x12\x15\n\x08\x44\x31\x33_note\x18w \x01(\tHs\x88\x01\x01\x12\x10\n\x03\x44\x31\x36\x18x \x01(\x01Ht\x88\x01\x01\x12\x15\n\x08\x44\x31\x36_note\x18y \x01(\tHu\x88\x01\x01\x12\x10\n\x03\x44\x31\x37\x18z \x01(\x01Hv\x88\x01\x01\x12\x15\n\x08\x44\x31\x37_note\x18{ \x01(\tHw\x88\x01\x01\x12\x10\n\x03\x44\x31\x38\x18| \x01(\x01Hx\x88\x01\x01\x12\x15\n\x08\x44\x31\x38_note\x18} \x01(\tHy\x88\x01\x01\x12\x10\n\x03\x44\x32\x32\x18~ \x01(\x01Hz\x88\x01\x01\x12\x15\n\x08\x44\x32\x32_note\x18\x7f \x01(\tH{\x88\x01\x01\x12\x11\n\x03\x44\x32\x33\x18\x80\x01 \x01(\x01H|\x88\x01\x01\x12\x16\n\x08\x44\x32\x33_note\x18\x81\x01 \x01(\tH}\x88\x01\x01\x12\x11\n\x03\x44\x32\x37\x18\x82\x01 \x01(\x01H~\x88\x01\x01\x12\x16\n\x08\x44\x32\x37_note\x18\x83\x01 \x01(\tH\x7f\x88\x01\x01\x12\x12\n\x03\x44\x32\x38\x18\x84\x01 \x01(\x01H\x80\x01\x88\x01\x01\x12\x17\n\x08\x44\x32\x38_note\x18\x85\x01 \x01(\tH\x81\x01\x88\x01\x01\x12\x12\n\x03\x44\x33\x33\x18\x86\x01 \x01(\x01H\x82\x01\x88\x01\x01\x12\x17\n\x08\x44\x33\x33_note\x18\x87\x01 \x01(\tH\x83\x01\x88\x01\x01\x12\x12\n\x03\x44\x33\x38\x18\x88\x01 \x01(\x01H\x84\x01\x88\x01\x01\x12\x17\n\x08\x44\x33\x38_note\x18\x89\x01 \x01(\tH\x85\x01\x88\x01\x01\x12\x12\n\x03\x44\x34\x34\x18\x8a\x01 \x01(\x01H\x86\x01\x88\x01\x01\x12\x17\n\x08\x44\x34\x34_note\x18\x8b\x01 \x01(\tH\x87\x01\x88\x01\x01\x12\x12\n\x03\x44\x34\x35\x18\x8c\x01 \x01(\x01H\x88\x01\x88\x01\x01\x12\x17\n\x08\x44\x34\x35_note\x18\x8d\x01 \x01(\tH\x89\x01\x88\x01\x01\x12\x12\n\x03\x44\x35\x35\x18\x8e\x01 \x01(\x01H\x8a\x01\x88\x01\x01\x12\x17\n\x08\x44\x35\x35_note\x18\x8f\x01 \x01(\tH\x8b\x01\x88\x01\x01\x12\x12\n\x03\x44\x36\x36\x18\x90\x01 \x01(\x01H\x8c\x01\x88\x01\x01\x12\x17\n\x08\x44\x36\x36_note\x18\x91\x01 \x01(\tH\x8d\x01\x88\x01\x01\x12\x12\n\x03\x44\x36\x37\x18\x92\x01 \x01(\x01H\x8e\x01\x88\x01\x01\x12\x17\n\x08\x44\x36\x37_note\x18\x93\x01 \x01(\tH\x8f\x01\x88\x01\x01\x12\x12\n\x03\x44\x36\x38\x18\x94\x01 \x01(\x01H\x90\x01\x88\x01\x01\x12\x17\n\x08\x44\x36\x38_note\x18\x95\x01 \x01(\tH\x91\x01\x88\x01\x01\x12\x12\n\x03\x44\x37\x37\x18\x96\x01 \x01(\x01H\x92\x01\x88\x01\x01\x12\x17\n\x08\x44\x37\x37_note\x18\x97\x01 \x01(\tH\x93\x01\x88\x01\x01\x12\x12\n\x03\x44\x37\x38\x18\x98\x01 \x01(\x01H\x94\x01\x88\x01\x01\x12\x17\n\x08\x44\x37\x38_note\x18\x99\x01 \x01(\tH\x95\x01\x88\x01\x01\x12\x12\n\x03\x44\x38\x38\x18\x9a\x01 \x01(\x01H\x96\x01\x88\x01\x01\x12\x17\n\x08\x44\x38\x38_note\x18\x9b\x01 \x01(\tH\x97\x01\x88\x01\x01\x12\x1b\n\x0cis_generated\x18\x9c\x01 \x01(\x08H\x98\x01\x88\x01\x01\x12%\n\x16generating_object_info\x18\x9d\x01 \x01(\tH\x99\x01\x88\x01\x01\x12~\n\x19time_dependent_properties\x18\x9e\x01 \x01(\x0b\x32T.dlubal.api.rfem.structure_core.ArrayOfThicknessTimeDependentPropertiesAndChildItemsH\x9a\x01\x88\x01\x01\x12#\n\x14id_for_export_import\x18\x9f\x01 \x01(\tH\x9b\x01\x88\x01\x01\x12)\n\x1ametadata_for_export_import\x18\xa0\x01 \x01(\tH\x9c\x01\x88\x01\x01\x42\x1c\n\x1a_user_defined_name_enabledB\x07\n\x05_nameB\x07\n\x05_typeB\x0b\n\t_materialB\x14\n\x12_uniform_thicknessB\"\n _uniform_or_fictitious_thicknessB9\n7_advanced_time_dependent_properties_of_concrete_enabledB\x10\n\x0e_creep_enabledB\x14\n\x12_shrinkage_enabledB\x14\n\x12_relative_humidityB%\n#_specify_integration_method_enabledB\x1a\n\x18_integration_method_typeB\x1f\n\x1d_number_of_integration_pointsB\x0e\n\x0c_thickness_1B\t\n\x07_node_1B\x0e\n\x0c_thickness_2B\t\n\x07_node_2B\x0e\n\x0c_thickness_3B\t\n\x07_node_3B\x0c\n\n_directionB\x0e\n\x0c_thickness_4B\t\n\x07_node_4B\x1a\n\x18_thickness_circle_centerB\x18\n\x16_thickness_circle_lineB\n\n\x08_commentB\x19\n\x17_layers_reference_tableB\x1d\n\x1b_layers_solid_model_enabledB\x15\n\x13_layers_gas_enabledB\x19\n\x17_layers_total_thicknessB\x16\n\x14_layers_total_weightB\x1e\n\x1c_stiffness_reduction_enabledB\x1f\n\x1d_is_enabled_design_of_failureB\x11\n\x0f_plank_width_bxB\x11\n\x0f_plank_width_byB$\n\"_plank_width_including_gap_enabledB\x1f\n\x1d_plank_width_including_gap_exB\x1f\n\x1d_plank_width_including_gap_eyB/\n-_stiffness_reduction_elements_editing_enabledB\x06\n\x04_K33B\x06\n\x04_K44B\x06\n\x04_K55B\x06\n\x04_K88B\x0b\n\t_K33_noteB\x0b\n\t_K44_noteB\x0b\n\t_K55_noteB\x0b\n\t_K88_noteB\x1e\n\x1c_function_data_function_typeB\x19\n\x17_function_data_layer_idB7\n5_function_data_age_of_concrete_at_the_considered_timeB \n\x1e_function_data_number_of_stepsB\x1d\n\x1b_function_data_coefficientsB\x13\n\x11_parent_thicknessB.\n,_beam_panel_sheathing_front_material_enabledB&\n$_beam_panel_sheathing_front_materialB\'\n%_beam_panel_sheathing_front_thicknessB-\n+_beam_panel_sheathing_back_material_enabledB%\n#_beam_panel_sheathing_back_materialB&\n$_beam_panel_sheathing_back_thicknessB,\n*_beam_panel_framing_members_connector_typeB0\n._beam_panel_framing_members_connector_diameterB3\n1_beam_panel_framing_members_connector_dimension_aB3\n1_beam_panel_framing_members_connector_dimension_bB/\n-_beam_panel_framing_members_connector_spacingB9\n7_beam_panel_framing_members_connector_stiffness_front_xB9\n7_beam_panel_framing_members_connector_stiffness_front_yB8\n6_beam_panel_framing_members_connector_stiffness_back_xB8\n6_beam_panel_framing_members_connector_stiffness_back_yB\'\n%_beam_panel_inner_studs_cross_sectionB&\n$_beam_panel_inner_studs_distributionB6\n4_beam_panel_inner_studs_reverse_distribution_enabledB!\n\x1f_beam_panel_inner_studs_spacingB\'\n%_beam_panel_inner_studs_spacing_tableB5\n3_beam_panel_inner_studs_spacing_definition_relativeB(\n&_beam_panel_inner_studs_connector_typeB,\n*_beam_panel_inner_studs_connector_diameterB/\n-_beam_panel_inner_studs_connector_dimension_aB/\n-_beam_panel_inner_studs_connector_dimension_bB+\n)_beam_panel_inner_studs_connector_spacingB3\n1_beam_panel_inner_studs_connector_stiffness_frontB2\n0_beam_panel_inner_studs_connector_stiffness_backB\x12\n\x10_orthotropy_typeB\x1b\n\x19_orthotropy_rotation_betaB\"\n _orthotropy_fictitious_thicknessB/\n-_shape_orthotropy_self_weight_definition_typeB)\n\'_shape_orthotropy_effective_thickness_xB)\n\'_shape_orthotropy_effective_thickness_yB\x1f\n\x1d_shape_orthotropy_self_weightB/\n-_stiffness_matrix_self_weight_definition_typeB \n\x1e_stiffness_matrix_bulk_densityB \n\x1e_stiffness_matrix_area_densityB4\n2_stiffness_matrix_coefficient_of_thermal_expansionB\x15\n\x13_coupling_thicknessB\x13\n\x11_coupling_spacingB\x11\n\x0f_coupling_widthB\x11\n\x0f_slab_thicknessB\r\n\x0b_rib_heightB\x0e\n\x0c_rib_spacingB\x0c\n\n_rib_widthB\x10\n\x0e_rib_spacing_xB\x10\n\x0e_rib_spacing_yB\x0e\n\x0c_rib_width_xB\x0e\n\x0c_rib_width_yB\x12\n\x10_sheet_thicknessB\x17\n\x15_total_profile_heightB\x13\n\x11_top_flange_widthB\x16\n\x14_bottom_flange_widthB\x0f\n\r_void_spacingB\x10\n\x0e_void_diameterB\x0f\n\r_rib_height_xB\x0f\n\r_rib_height_yB\x06\n\x04_D11B\x0b\n\t_D11_noteB\x06\n\x04_D12B\x0b\n\t_D12_noteB\x06\n\x04_D13B\x0b\n\t_D13_noteB\x06\n\x04_D16B\x0b\n\t_D16_noteB\x06\n\x04_D17B\x0b\n\t_D17_noteB\x06\n\x04_D18B\x0b\n\t_D18_noteB\x06\n\x04_D22B\x0b\n\t_D22_noteB\x06\n\x04_D23B\x0b\n\t_D23_noteB\x06\n\x04_D27B\x0b\n\t_D27_noteB\x06\n\x04_D28B\x0b\n\t_D28_noteB\x06\n\x04_D33B\x0b\n\t_D33_noteB\x06\n\x04_D38B\x0b\n\t_D38_noteB\x06\n\x04_D44B\x0b\n\t_D44_noteB\x06\n\x04_D45B\x0b\n\t_D45_noteB\x06\n\x04_D55B\x0b\n\t_D55_noteB\x06\n\x04_D66B\x0b\n\t_D66_noteB\x06\n\x04_D67B\x0b\n\t_D67_noteB\x06\n\x04_D68B\x0b\n\t_D68_noteB\x06\n\x04_D77B\x0b\n\t_D77_noteB\x06\n\x04_D78B\x0b\n\t_D78_noteB\x06\n\x04_D88B\x0b\n\t_D88_noteB\x0f\n\r_is_generatedB\x19\n\x17_generating_object_infoB\x1c\n\x1a_time_dependent_propertiesB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_import\"&\n$ArrayOfThicknessLayersReferenceTable\"*\n(ArrayOfThicknessFunctionDataCoefficients\"1\n/ArrayOfThicknessBeamPanelInnerStudsSpacingTable\"6\n4ArrayOfThicknessTimeDependentPropertiesAndChildItems*\xbf\x04\n\rThicknessType\x12\x1a\n\x16THICKNESS_TYPE_UNKNOWN\x10\x00\x12\x1d\n\x19THICKNESS_TYPE_BEAM_PANEL\x10\r\x12$\n THICKNESS_TYPE_GLASS_COMPOSITION\x10\x0e\x12\x19\n\x15THICKNESS_TYPE_LAYERS\x10\x06\x12#\n\x1fTHICKNESS_TYPE_SHAPE_ORTHOTROPY\x10\x07\x12#\n\x1fTHICKNESS_TYPE_STIFFNESS_MATRIX\x10\x08\x12\"\n\x1eTHICKNESS_TYPE_THICKNESS_PHASE\x10\x0c\x12\x1a\n\x16THICKNESS_TYPE_UNIFORM\x10\x01\x12\"\n\x1eTHICKNESS_TYPE_VARIABLE_CIRCLE\x10\x05\x12\x30\n,THICKNESS_TYPE_VARIABLE_FOUR_SURFACE_CORNERS\x10\x04\x12\'\n#THICKNESS_TYPE_VARIABLE_THREE_NODES\x10\x02\x12\x33\n/THICKNESS_TYPE_VARIABLE_TWO_NODES_AND_DIRECTION\x10\x03\x12\"\n\x1eTHICKNESS_TYPE_WALL_SHEAR_FREE\x10\t\x12\'\n#THICKNESS_TYPE_WALL_SHEAR_FREE_IN_X\x10\n\x12\'\n#THICKNESS_TYPE_WALL_SHEAR_FREE_IN_Y\x10\x0b*\xcd\x01\n\x1eThicknessIntegrationMethodType\x12>\n:THICKNESS_INTEGRATION_METHOD_TYPE_GAUSS_LOBATTO_QUADRATURE\x10\x00\x12\x33\n/THICKNESS_INTEGRATION_METHOD_TYPE_SIMPSONS_RULE\x10\x01\x12\x36\n2THICKNESS_INTEGRATION_METHOD_TYPE_TRAPEZOIDAL_RULE\x10\x02*\xcb\x01\n\x12ThicknessDirection\x12#\n\x1fTHICKNESS_DIRECTION_GLOBAL_IN_X\x10\x00\x12#\n\x1fTHICKNESS_DIRECTION_GLOBAL_IN_Y\x10\x01\x12#\n\x1fTHICKNESS_DIRECTION_GLOBAL_IN_Z\x10\x02\x12\"\n\x1eTHICKNESS_DIRECTION_LOCAL_IN_X\x10\x03\x12\"\n\x1eTHICKNESS_DIRECTION_LOCAL_IN_Y\x10\x04*\x9d\x02\n!ThicknessFunctionDataFunctionType\x12;\n7THICKNESS_FUNCTION_DATA_FUNCTION_TYPE_CREEP_COEFFICIENT\x10\x00\x12=\n9THICKNESS_FUNCTION_DATA_FUNCTION_TYPE_SHRINKAGE_STRAIN_CA\x10\x02\x12=\n9THICKNESS_FUNCTION_DATA_FUNCTION_TYPE_SHRINKAGE_STRAIN_CD\x10\x03\x12=\n9THICKNESS_FUNCTION_DATA_FUNCTION_TYPE_SHRINKAGE_STRAIN_CS\x10\x01*\xf3\x01\n-ThicknessBeamPanelFramingMembersConnectorType\x12<\n8THICKNESS_BEAM_PANEL_FRAMING_MEMBERS_CONNECTOR_TYPE_NAIL\x10\x00\x12>\n:THICKNESS_BEAM_PANEL_FRAMING_MEMBERS_CONNECTOR_TYPE_STAPLE\x10\x01\x12\x44\n@THICKNESS_BEAM_PANEL_FRAMING_MEMBERS_CONNECTOR_TYPE_USER_DEFINED\x10\x02*\xa0\x02\n(ThicknessBeamPanelInnerStudsDistribution\x12\x42\n>THICKNESS_BEAM_PANEL_INNER_STUDS_DISTRIBUTION_CENTER_TO_CENTER\x10\x00\x12\x35\n1THICKNESS_BEAM_PANEL_INNER_STUDS_DISTRIBUTION_GAP\x10\x01\x12\x39\n5THICKNESS_BEAM_PANEL_INNER_STUDS_DISTRIBUTION_UNIFORM\x10\x02\x12>\n:THICKNESS_BEAM_PANEL_INNER_STUDS_DISTRIBUTION_USER_DEFINED\x10\x03*\xe3\x01\n)ThicknessBeamPanelInnerStudsConnectorType\x12\x38\n4THICKNESS_BEAM_PANEL_INNER_STUDS_CONNECTOR_TYPE_NAIL\x10\x00\x12:\n6THICKNESS_BEAM_PANEL_INNER_STUDS_CONNECTOR_TYPE_STAPLE\x10\x01\x12@\n<THICKNESS_BEAM_PANEL_INNER_STUDS_CONNECTOR_TYPE_USER_DEFINED\x10\x02*\xac\x03\n\x17ThicknessOrthotropyType\x12\x33\n/THICKNESS_ORTHOTROPY_TYPE_EFFECTIVE_THICKNESSES\x10\x00\x12\x38\n4THICKNESS_ORTHOTROPY_TYPE_BIDIRECTIONAL_RIBBED_PLATE\x10\x03\x12&\n\"THICKNESS_ORTHOTROPY_TYPE_COUPLING\x10\x01\x12&\n\"THICKNESS_ORTHOTROPY_TYPE_GRILLAGE\x10\x06\x12.\n*THICKNESS_ORTHOTROPY_TYPE_HOLLOW_CORE_SLAB\x10\x05\x12/\n+THICKNESS_ORTHOTROPY_TYPE_TRAPEZOIDAL_SHEET\x10\x04\x12\x36\n2THICKNESS_ORTHOTROPY_TYPE_UNIDIRECTIONAL_BOX_FLOOR\x10\x07\x12\x39\n5THICKNESS_ORTHOTROPY_TYPE_UNIDIRECTIONAL_RIBBED_PLATE\x10\x02*\xd4\x02\n0ThicknessShapeOrthotropySelfWeightDefinitionType\x12t\npTHICKNESS_SHAPE_ORTHOTROPY_SELF_WEIGHT_DEFINITION_TYPE_DEFINED_VIA_FICTITIOUS_THICKNESS_COMPUTED_FROM_PARAMETERS\x10\x00\x12[\nWTHICKNESS_SHAPE_ORTHOTROPY_SELF_WEIGHT_DEFINITION_TYPE_DEFINED_VIA_FICTITIOUS_THICKNESS\x10\x01\x12M\nITHICKNESS_SHAPE_ORTHOTROPY_SELF_WEIGHT_DEFINITION_TYPE_DEFINED_VIA_WEIGHT\x10\x02*\xf4\x02\n0ThicknessStiffnessMatrixSelfWeightDefinitionType\x12l\nhTHICKNESS_STIFFNESS_MATRIX_SELF_WEIGHT_DEFINITION_TYPE_DEFINED_VIA_FICTITIOUS_THICKNESS_AND_BULK_DENSITY\x10\x00\x12\x64\n`THICKNESS_STIFFNESS_MATRIX_SELF_WEIGHT_DEFINITION_TYPE_DEFINED_VIA_BULK_DENSITY_AND_AREA_DENSITY\x10\x02\x12l\nhTHICKNESS_STIFFNESS_MATRIX_SELF_WEIGHT_DEFINITION_TYPE_DEFINED_VIA_FICTITIOUS_THICKNESS_AND_AREA_DENSITY\x10\x01\x62\x06proto3')
|
|
28
|
+
|
|
29
|
+
_globals = globals()
|
|
30
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
31
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.structure_core.thickness_pb2', _globals)
|
|
32
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
33
|
+
DESCRIPTOR._loaded_options = None
|
|
34
|
+
_globals['_THICKNESSTYPE']._serialized_start=10779
|
|
35
|
+
_globals['_THICKNESSTYPE']._serialized_end=11354
|
|
36
|
+
_globals['_THICKNESSINTEGRATIONMETHODTYPE']._serialized_start=11357
|
|
37
|
+
_globals['_THICKNESSINTEGRATIONMETHODTYPE']._serialized_end=11562
|
|
38
|
+
_globals['_THICKNESSDIRECTION']._serialized_start=11565
|
|
39
|
+
_globals['_THICKNESSDIRECTION']._serialized_end=11768
|
|
40
|
+
_globals['_THICKNESSFUNCTIONDATAFUNCTIONTYPE']._serialized_start=11771
|
|
41
|
+
_globals['_THICKNESSFUNCTIONDATAFUNCTIONTYPE']._serialized_end=12056
|
|
42
|
+
_globals['_THICKNESSBEAMPANELFRAMINGMEMBERSCONNECTORTYPE']._serialized_start=12059
|
|
43
|
+
_globals['_THICKNESSBEAMPANELFRAMINGMEMBERSCONNECTORTYPE']._serialized_end=12302
|
|
44
|
+
_globals['_THICKNESSBEAMPANELINNERSTUDSDISTRIBUTION']._serialized_start=12305
|
|
45
|
+
_globals['_THICKNESSBEAMPANELINNERSTUDSDISTRIBUTION']._serialized_end=12593
|
|
46
|
+
_globals['_THICKNESSBEAMPANELINNERSTUDSCONNECTORTYPE']._serialized_start=12596
|
|
47
|
+
_globals['_THICKNESSBEAMPANELINNERSTUDSCONNECTORTYPE']._serialized_end=12823
|
|
48
|
+
_globals['_THICKNESSORTHOTROPYTYPE']._serialized_start=12826
|
|
49
|
+
_globals['_THICKNESSORTHOTROPYTYPE']._serialized_end=13254
|
|
50
|
+
_globals['_THICKNESSSHAPEORTHOTROPYSELFWEIGHTDEFINITIONTYPE']._serialized_start=13257
|
|
51
|
+
_globals['_THICKNESSSHAPEORTHOTROPYSELFWEIGHTDEFINITIONTYPE']._serialized_end=13597
|
|
52
|
+
_globals['_THICKNESSSTIFFNESSMATRIXSELFWEIGHTDEFINITIONTYPE']._serialized_start=13600
|
|
53
|
+
_globals['_THICKNESSSTIFFNESSMATRIXSELFWEIGHTDEFINITIONTYPE']._serialized_end=13972
|
|
54
|
+
_globals['_THICKNESS']._serialized_start=83
|
|
55
|
+
_globals['_THICKNESS']._serialized_end=10585
|
|
56
|
+
_globals['_ARRAYOFTHICKNESSLAYERSREFERENCETABLE']._serialized_start=10587
|
|
57
|
+
_globals['_ARRAYOFTHICKNESSLAYERSREFERENCETABLE']._serialized_end=10625
|
|
58
|
+
_globals['_ARRAYOFTHICKNESSFUNCTIONDATACOEFFICIENTS']._serialized_start=10627
|
|
59
|
+
_globals['_ARRAYOFTHICKNESSFUNCTIONDATACOEFFICIENTS']._serialized_end=10669
|
|
60
|
+
_globals['_ARRAYOFTHICKNESSBEAMPANELINNERSTUDSSPACINGTABLE']._serialized_start=10671
|
|
61
|
+
_globals['_ARRAYOFTHICKNESSBEAMPANELINNERSTUDSSPACINGTABLE']._serialized_end=10720
|
|
62
|
+
_globals['_ARRAYOFTHICKNESSTIMEDEPENDENTPROPERTIESANDCHILDITEMS']._serialized_start=10722
|
|
63
|
+
_globals['_ARRAYOFTHICKNESSTIMEDEPENDENTPROPERTIESANDCHILDITEMS']._serialized_end=10776
|
|
64
|
+
# @@protoc_insertion_point(module_scope)
|