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,479 @@
|
|
|
1
|
+
from google.protobuf.internal import containers as _containers
|
|
2
|
+
from google.protobuf.internal import enum_type_wrapper as _enum_type_wrapper
|
|
3
|
+
from google.protobuf import descriptor as _descriptor
|
|
4
|
+
from google.protobuf import message as _message
|
|
5
|
+
from typing import ClassVar as _ClassVar, Iterable as _Iterable, Mapping as _Mapping, Optional as _Optional, Union as _Union
|
|
6
|
+
|
|
7
|
+
DESCRIPTOR: _descriptor.FileDescriptor
|
|
8
|
+
|
|
9
|
+
class ThicknessType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
10
|
+
__slots__ = ()
|
|
11
|
+
THICKNESS_TYPE_UNKNOWN: _ClassVar[ThicknessType]
|
|
12
|
+
THICKNESS_TYPE_BEAM_PANEL: _ClassVar[ThicknessType]
|
|
13
|
+
THICKNESS_TYPE_GLASS_COMPOSITION: _ClassVar[ThicknessType]
|
|
14
|
+
THICKNESS_TYPE_LAYERS: _ClassVar[ThicknessType]
|
|
15
|
+
THICKNESS_TYPE_SHAPE_ORTHOTROPY: _ClassVar[ThicknessType]
|
|
16
|
+
THICKNESS_TYPE_STIFFNESS_MATRIX: _ClassVar[ThicknessType]
|
|
17
|
+
THICKNESS_TYPE_THICKNESS_PHASE: _ClassVar[ThicknessType]
|
|
18
|
+
THICKNESS_TYPE_UNIFORM: _ClassVar[ThicknessType]
|
|
19
|
+
THICKNESS_TYPE_VARIABLE_CIRCLE: _ClassVar[ThicknessType]
|
|
20
|
+
THICKNESS_TYPE_VARIABLE_FOUR_SURFACE_CORNERS: _ClassVar[ThicknessType]
|
|
21
|
+
THICKNESS_TYPE_VARIABLE_THREE_NODES: _ClassVar[ThicknessType]
|
|
22
|
+
THICKNESS_TYPE_VARIABLE_TWO_NODES_AND_DIRECTION: _ClassVar[ThicknessType]
|
|
23
|
+
THICKNESS_TYPE_WALL_SHEAR_FREE: _ClassVar[ThicknessType]
|
|
24
|
+
THICKNESS_TYPE_WALL_SHEAR_FREE_IN_X: _ClassVar[ThicknessType]
|
|
25
|
+
THICKNESS_TYPE_WALL_SHEAR_FREE_IN_Y: _ClassVar[ThicknessType]
|
|
26
|
+
|
|
27
|
+
class ThicknessIntegrationMethodType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
28
|
+
__slots__ = ()
|
|
29
|
+
THICKNESS_INTEGRATION_METHOD_TYPE_GAUSS_LOBATTO_QUADRATURE: _ClassVar[ThicknessIntegrationMethodType]
|
|
30
|
+
THICKNESS_INTEGRATION_METHOD_TYPE_SIMPSONS_RULE: _ClassVar[ThicknessIntegrationMethodType]
|
|
31
|
+
THICKNESS_INTEGRATION_METHOD_TYPE_TRAPEZOIDAL_RULE: _ClassVar[ThicknessIntegrationMethodType]
|
|
32
|
+
|
|
33
|
+
class ThicknessDirection(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
34
|
+
__slots__ = ()
|
|
35
|
+
THICKNESS_DIRECTION_GLOBAL_IN_X: _ClassVar[ThicknessDirection]
|
|
36
|
+
THICKNESS_DIRECTION_GLOBAL_IN_Y: _ClassVar[ThicknessDirection]
|
|
37
|
+
THICKNESS_DIRECTION_GLOBAL_IN_Z: _ClassVar[ThicknessDirection]
|
|
38
|
+
THICKNESS_DIRECTION_LOCAL_IN_X: _ClassVar[ThicknessDirection]
|
|
39
|
+
THICKNESS_DIRECTION_LOCAL_IN_Y: _ClassVar[ThicknessDirection]
|
|
40
|
+
|
|
41
|
+
class ThicknessFunctionDataFunctionType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
42
|
+
__slots__ = ()
|
|
43
|
+
THICKNESS_FUNCTION_DATA_FUNCTION_TYPE_CREEP_COEFFICIENT: _ClassVar[ThicknessFunctionDataFunctionType]
|
|
44
|
+
THICKNESS_FUNCTION_DATA_FUNCTION_TYPE_SHRINKAGE_STRAIN_CA: _ClassVar[ThicknessFunctionDataFunctionType]
|
|
45
|
+
THICKNESS_FUNCTION_DATA_FUNCTION_TYPE_SHRINKAGE_STRAIN_CD: _ClassVar[ThicknessFunctionDataFunctionType]
|
|
46
|
+
THICKNESS_FUNCTION_DATA_FUNCTION_TYPE_SHRINKAGE_STRAIN_CS: _ClassVar[ThicknessFunctionDataFunctionType]
|
|
47
|
+
|
|
48
|
+
class ThicknessBeamPanelFramingMembersConnectorType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
49
|
+
__slots__ = ()
|
|
50
|
+
THICKNESS_BEAM_PANEL_FRAMING_MEMBERS_CONNECTOR_TYPE_NAIL: _ClassVar[ThicknessBeamPanelFramingMembersConnectorType]
|
|
51
|
+
THICKNESS_BEAM_PANEL_FRAMING_MEMBERS_CONNECTOR_TYPE_STAPLE: _ClassVar[ThicknessBeamPanelFramingMembersConnectorType]
|
|
52
|
+
THICKNESS_BEAM_PANEL_FRAMING_MEMBERS_CONNECTOR_TYPE_USER_DEFINED: _ClassVar[ThicknessBeamPanelFramingMembersConnectorType]
|
|
53
|
+
|
|
54
|
+
class ThicknessBeamPanelInnerStudsDistribution(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
55
|
+
__slots__ = ()
|
|
56
|
+
THICKNESS_BEAM_PANEL_INNER_STUDS_DISTRIBUTION_CENTER_TO_CENTER: _ClassVar[ThicknessBeamPanelInnerStudsDistribution]
|
|
57
|
+
THICKNESS_BEAM_PANEL_INNER_STUDS_DISTRIBUTION_GAP: _ClassVar[ThicknessBeamPanelInnerStudsDistribution]
|
|
58
|
+
THICKNESS_BEAM_PANEL_INNER_STUDS_DISTRIBUTION_UNIFORM: _ClassVar[ThicknessBeamPanelInnerStudsDistribution]
|
|
59
|
+
THICKNESS_BEAM_PANEL_INNER_STUDS_DISTRIBUTION_USER_DEFINED: _ClassVar[ThicknessBeamPanelInnerStudsDistribution]
|
|
60
|
+
|
|
61
|
+
class ThicknessBeamPanelInnerStudsConnectorType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
62
|
+
__slots__ = ()
|
|
63
|
+
THICKNESS_BEAM_PANEL_INNER_STUDS_CONNECTOR_TYPE_NAIL: _ClassVar[ThicknessBeamPanelInnerStudsConnectorType]
|
|
64
|
+
THICKNESS_BEAM_PANEL_INNER_STUDS_CONNECTOR_TYPE_STAPLE: _ClassVar[ThicknessBeamPanelInnerStudsConnectorType]
|
|
65
|
+
THICKNESS_BEAM_PANEL_INNER_STUDS_CONNECTOR_TYPE_USER_DEFINED: _ClassVar[ThicknessBeamPanelInnerStudsConnectorType]
|
|
66
|
+
|
|
67
|
+
class ThicknessOrthotropyType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
68
|
+
__slots__ = ()
|
|
69
|
+
THICKNESS_ORTHOTROPY_TYPE_EFFECTIVE_THICKNESSES: _ClassVar[ThicknessOrthotropyType]
|
|
70
|
+
THICKNESS_ORTHOTROPY_TYPE_BIDIRECTIONAL_RIBBED_PLATE: _ClassVar[ThicknessOrthotropyType]
|
|
71
|
+
THICKNESS_ORTHOTROPY_TYPE_COUPLING: _ClassVar[ThicknessOrthotropyType]
|
|
72
|
+
THICKNESS_ORTHOTROPY_TYPE_GRILLAGE: _ClassVar[ThicknessOrthotropyType]
|
|
73
|
+
THICKNESS_ORTHOTROPY_TYPE_HOLLOW_CORE_SLAB: _ClassVar[ThicknessOrthotropyType]
|
|
74
|
+
THICKNESS_ORTHOTROPY_TYPE_TRAPEZOIDAL_SHEET: _ClassVar[ThicknessOrthotropyType]
|
|
75
|
+
THICKNESS_ORTHOTROPY_TYPE_UNIDIRECTIONAL_BOX_FLOOR: _ClassVar[ThicknessOrthotropyType]
|
|
76
|
+
THICKNESS_ORTHOTROPY_TYPE_UNIDIRECTIONAL_RIBBED_PLATE: _ClassVar[ThicknessOrthotropyType]
|
|
77
|
+
|
|
78
|
+
class ThicknessShapeOrthotropySelfWeightDefinitionType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
79
|
+
__slots__ = ()
|
|
80
|
+
THICKNESS_SHAPE_ORTHOTROPY_SELF_WEIGHT_DEFINITION_TYPE_DEFINED_VIA_FICTITIOUS_THICKNESS_COMPUTED_FROM_PARAMETERS: _ClassVar[ThicknessShapeOrthotropySelfWeightDefinitionType]
|
|
81
|
+
THICKNESS_SHAPE_ORTHOTROPY_SELF_WEIGHT_DEFINITION_TYPE_DEFINED_VIA_FICTITIOUS_THICKNESS: _ClassVar[ThicknessShapeOrthotropySelfWeightDefinitionType]
|
|
82
|
+
THICKNESS_SHAPE_ORTHOTROPY_SELF_WEIGHT_DEFINITION_TYPE_DEFINED_VIA_WEIGHT: _ClassVar[ThicknessShapeOrthotropySelfWeightDefinitionType]
|
|
83
|
+
|
|
84
|
+
class ThicknessStiffnessMatrixSelfWeightDefinitionType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
85
|
+
__slots__ = ()
|
|
86
|
+
THICKNESS_STIFFNESS_MATRIX_SELF_WEIGHT_DEFINITION_TYPE_DEFINED_VIA_FICTITIOUS_THICKNESS_AND_BULK_DENSITY: _ClassVar[ThicknessStiffnessMatrixSelfWeightDefinitionType]
|
|
87
|
+
THICKNESS_STIFFNESS_MATRIX_SELF_WEIGHT_DEFINITION_TYPE_DEFINED_VIA_BULK_DENSITY_AND_AREA_DENSITY: _ClassVar[ThicknessStiffnessMatrixSelfWeightDefinitionType]
|
|
88
|
+
THICKNESS_STIFFNESS_MATRIX_SELF_WEIGHT_DEFINITION_TYPE_DEFINED_VIA_FICTITIOUS_THICKNESS_AND_AREA_DENSITY: _ClassVar[ThicknessStiffnessMatrixSelfWeightDefinitionType]
|
|
89
|
+
THICKNESS_TYPE_UNKNOWN: ThicknessType
|
|
90
|
+
THICKNESS_TYPE_BEAM_PANEL: ThicknessType
|
|
91
|
+
THICKNESS_TYPE_GLASS_COMPOSITION: ThicknessType
|
|
92
|
+
THICKNESS_TYPE_LAYERS: ThicknessType
|
|
93
|
+
THICKNESS_TYPE_SHAPE_ORTHOTROPY: ThicknessType
|
|
94
|
+
THICKNESS_TYPE_STIFFNESS_MATRIX: ThicknessType
|
|
95
|
+
THICKNESS_TYPE_THICKNESS_PHASE: ThicknessType
|
|
96
|
+
THICKNESS_TYPE_UNIFORM: ThicknessType
|
|
97
|
+
THICKNESS_TYPE_VARIABLE_CIRCLE: ThicknessType
|
|
98
|
+
THICKNESS_TYPE_VARIABLE_FOUR_SURFACE_CORNERS: ThicknessType
|
|
99
|
+
THICKNESS_TYPE_VARIABLE_THREE_NODES: ThicknessType
|
|
100
|
+
THICKNESS_TYPE_VARIABLE_TWO_NODES_AND_DIRECTION: ThicknessType
|
|
101
|
+
THICKNESS_TYPE_WALL_SHEAR_FREE: ThicknessType
|
|
102
|
+
THICKNESS_TYPE_WALL_SHEAR_FREE_IN_X: ThicknessType
|
|
103
|
+
THICKNESS_TYPE_WALL_SHEAR_FREE_IN_Y: ThicknessType
|
|
104
|
+
THICKNESS_INTEGRATION_METHOD_TYPE_GAUSS_LOBATTO_QUADRATURE: ThicknessIntegrationMethodType
|
|
105
|
+
THICKNESS_INTEGRATION_METHOD_TYPE_SIMPSONS_RULE: ThicknessIntegrationMethodType
|
|
106
|
+
THICKNESS_INTEGRATION_METHOD_TYPE_TRAPEZOIDAL_RULE: ThicknessIntegrationMethodType
|
|
107
|
+
THICKNESS_DIRECTION_GLOBAL_IN_X: ThicknessDirection
|
|
108
|
+
THICKNESS_DIRECTION_GLOBAL_IN_Y: ThicknessDirection
|
|
109
|
+
THICKNESS_DIRECTION_GLOBAL_IN_Z: ThicknessDirection
|
|
110
|
+
THICKNESS_DIRECTION_LOCAL_IN_X: ThicknessDirection
|
|
111
|
+
THICKNESS_DIRECTION_LOCAL_IN_Y: ThicknessDirection
|
|
112
|
+
THICKNESS_FUNCTION_DATA_FUNCTION_TYPE_CREEP_COEFFICIENT: ThicknessFunctionDataFunctionType
|
|
113
|
+
THICKNESS_FUNCTION_DATA_FUNCTION_TYPE_SHRINKAGE_STRAIN_CA: ThicknessFunctionDataFunctionType
|
|
114
|
+
THICKNESS_FUNCTION_DATA_FUNCTION_TYPE_SHRINKAGE_STRAIN_CD: ThicknessFunctionDataFunctionType
|
|
115
|
+
THICKNESS_FUNCTION_DATA_FUNCTION_TYPE_SHRINKAGE_STRAIN_CS: ThicknessFunctionDataFunctionType
|
|
116
|
+
THICKNESS_BEAM_PANEL_FRAMING_MEMBERS_CONNECTOR_TYPE_NAIL: ThicknessBeamPanelFramingMembersConnectorType
|
|
117
|
+
THICKNESS_BEAM_PANEL_FRAMING_MEMBERS_CONNECTOR_TYPE_STAPLE: ThicknessBeamPanelFramingMembersConnectorType
|
|
118
|
+
THICKNESS_BEAM_PANEL_FRAMING_MEMBERS_CONNECTOR_TYPE_USER_DEFINED: ThicknessBeamPanelFramingMembersConnectorType
|
|
119
|
+
THICKNESS_BEAM_PANEL_INNER_STUDS_DISTRIBUTION_CENTER_TO_CENTER: ThicknessBeamPanelInnerStudsDistribution
|
|
120
|
+
THICKNESS_BEAM_PANEL_INNER_STUDS_DISTRIBUTION_GAP: ThicknessBeamPanelInnerStudsDistribution
|
|
121
|
+
THICKNESS_BEAM_PANEL_INNER_STUDS_DISTRIBUTION_UNIFORM: ThicknessBeamPanelInnerStudsDistribution
|
|
122
|
+
THICKNESS_BEAM_PANEL_INNER_STUDS_DISTRIBUTION_USER_DEFINED: ThicknessBeamPanelInnerStudsDistribution
|
|
123
|
+
THICKNESS_BEAM_PANEL_INNER_STUDS_CONNECTOR_TYPE_NAIL: ThicknessBeamPanelInnerStudsConnectorType
|
|
124
|
+
THICKNESS_BEAM_PANEL_INNER_STUDS_CONNECTOR_TYPE_STAPLE: ThicknessBeamPanelInnerStudsConnectorType
|
|
125
|
+
THICKNESS_BEAM_PANEL_INNER_STUDS_CONNECTOR_TYPE_USER_DEFINED: ThicknessBeamPanelInnerStudsConnectorType
|
|
126
|
+
THICKNESS_ORTHOTROPY_TYPE_EFFECTIVE_THICKNESSES: ThicknessOrthotropyType
|
|
127
|
+
THICKNESS_ORTHOTROPY_TYPE_BIDIRECTIONAL_RIBBED_PLATE: ThicknessOrthotropyType
|
|
128
|
+
THICKNESS_ORTHOTROPY_TYPE_COUPLING: ThicknessOrthotropyType
|
|
129
|
+
THICKNESS_ORTHOTROPY_TYPE_GRILLAGE: ThicknessOrthotropyType
|
|
130
|
+
THICKNESS_ORTHOTROPY_TYPE_HOLLOW_CORE_SLAB: ThicknessOrthotropyType
|
|
131
|
+
THICKNESS_ORTHOTROPY_TYPE_TRAPEZOIDAL_SHEET: ThicknessOrthotropyType
|
|
132
|
+
THICKNESS_ORTHOTROPY_TYPE_UNIDIRECTIONAL_BOX_FLOOR: ThicknessOrthotropyType
|
|
133
|
+
THICKNESS_ORTHOTROPY_TYPE_UNIDIRECTIONAL_RIBBED_PLATE: ThicknessOrthotropyType
|
|
134
|
+
THICKNESS_SHAPE_ORTHOTROPY_SELF_WEIGHT_DEFINITION_TYPE_DEFINED_VIA_FICTITIOUS_THICKNESS_COMPUTED_FROM_PARAMETERS: ThicknessShapeOrthotropySelfWeightDefinitionType
|
|
135
|
+
THICKNESS_SHAPE_ORTHOTROPY_SELF_WEIGHT_DEFINITION_TYPE_DEFINED_VIA_FICTITIOUS_THICKNESS: ThicknessShapeOrthotropySelfWeightDefinitionType
|
|
136
|
+
THICKNESS_SHAPE_ORTHOTROPY_SELF_WEIGHT_DEFINITION_TYPE_DEFINED_VIA_WEIGHT: ThicknessShapeOrthotropySelfWeightDefinitionType
|
|
137
|
+
THICKNESS_STIFFNESS_MATRIX_SELF_WEIGHT_DEFINITION_TYPE_DEFINED_VIA_FICTITIOUS_THICKNESS_AND_BULK_DENSITY: ThicknessStiffnessMatrixSelfWeightDefinitionType
|
|
138
|
+
THICKNESS_STIFFNESS_MATRIX_SELF_WEIGHT_DEFINITION_TYPE_DEFINED_VIA_BULK_DENSITY_AND_AREA_DENSITY: ThicknessStiffnessMatrixSelfWeightDefinitionType
|
|
139
|
+
THICKNESS_STIFFNESS_MATRIX_SELF_WEIGHT_DEFINITION_TYPE_DEFINED_VIA_FICTITIOUS_THICKNESS_AND_AREA_DENSITY: ThicknessStiffnessMatrixSelfWeightDefinitionType
|
|
140
|
+
|
|
141
|
+
class Thickness(_message.Message):
|
|
142
|
+
__slots__ = ("no", "user_defined_name_enabled", "name", "assigned_to_surfaces", "type", "material", "uniform_thickness", "uniform_or_fictitious_thickness", "advanced_time_dependent_properties_of_concrete_enabled", "creep_enabled", "shrinkage_enabled", "relative_humidity", "specify_integration_method_enabled", "integration_method_type", "number_of_integration_points", "thickness_1", "node_1", "thickness_2", "node_2", "thickness_3", "node_3", "direction", "thickness_4", "node_4", "thickness_circle_center", "thickness_circle_line", "comment", "layers_reference_table", "layers_solid_model_enabled", "layers_gas_enabled", "layers_total_thickness", "layers_total_weight", "stiffness_reduction_enabled", "is_enabled_design_of_failure", "plank_width_bx", "plank_width_by", "plank_width_including_gap_enabled", "plank_width_including_gap_ex", "plank_width_including_gap_ey", "stiffness_reduction_elements_editing_enabled", "K33", "K44", "K55", "K88", "K33_note", "K44_note", "K55_note", "K88_note", "function_data_function_type", "function_data_layer_id", "function_data_age_of_concrete_at_the_considered_time", "function_data_number_of_steps", "function_data_coefficients", "parent_thickness", "parent_thickness_layers", "beam_panel_sheathing_front_material_enabled", "beam_panel_sheathing_front_material", "beam_panel_sheathing_front_thickness", "beam_panel_sheathing_back_material_enabled", "beam_panel_sheathing_back_material", "beam_panel_sheathing_back_thickness", "beam_panel_framing_members_connector_type", "beam_panel_framing_members_connector_diameter", "beam_panel_framing_members_connector_dimension_a", "beam_panel_framing_members_connector_dimension_b", "beam_panel_framing_members_connector_spacing", "beam_panel_framing_members_connector_stiffness_front_x", "beam_panel_framing_members_connector_stiffness_front_y", "beam_panel_framing_members_connector_stiffness_back_x", "beam_panel_framing_members_connector_stiffness_back_y", "beam_panel_inner_studs_cross_section", "beam_panel_inner_studs_distribution", "beam_panel_inner_studs_reverse_distribution_enabled", "beam_panel_inner_studs_spacing", "beam_panel_inner_studs_spacing_table", "beam_panel_inner_studs_spacing_definition_relative", "beam_panel_inner_studs_connector_type", "beam_panel_inner_studs_connector_diameter", "beam_panel_inner_studs_connector_dimension_a", "beam_panel_inner_studs_connector_dimension_b", "beam_panel_inner_studs_connector_spacing", "beam_panel_inner_studs_connector_stiffness_front", "beam_panel_inner_studs_connector_stiffness_back", "orthotropy_type", "orthotropy_rotation_beta", "orthotropy_fictitious_thickness", "shape_orthotropy_self_weight_definition_type", "shape_orthotropy_effective_thickness_x", "shape_orthotropy_effective_thickness_y", "shape_orthotropy_self_weight", "stiffness_matrix_self_weight_definition_type", "stiffness_matrix_bulk_density", "stiffness_matrix_area_density", "stiffness_matrix_coefficient_of_thermal_expansion", "coupling_thickness", "coupling_spacing", "coupling_width", "slab_thickness", "rib_height", "rib_spacing", "rib_width", "rib_spacing_x", "rib_spacing_y", "rib_width_x", "rib_width_y", "sheet_thickness", "total_profile_height", "top_flange_width", "bottom_flange_width", "void_spacing", "void_diameter", "rib_height_x", "rib_height_y", "D11", "D11_note", "D12", "D12_note", "D13", "D13_note", "D16", "D16_note", "D17", "D17_note", "D18", "D18_note", "D22", "D22_note", "D23", "D23_note", "D27", "D27_note", "D28", "D28_note", "D33", "D33_note", "D38", "D38_note", "D44", "D44_note", "D45", "D45_note", "D55", "D55_note", "D66", "D66_note", "D67", "D67_note", "D68", "D68_note", "D77", "D77_note", "D78", "D78_note", "D88", "D88_note", "is_generated", "generating_object_info", "time_dependent_properties", "id_for_export_import", "metadata_for_export_import")
|
|
143
|
+
NO_FIELD_NUMBER: _ClassVar[int]
|
|
144
|
+
USER_DEFINED_NAME_ENABLED_FIELD_NUMBER: _ClassVar[int]
|
|
145
|
+
NAME_FIELD_NUMBER: _ClassVar[int]
|
|
146
|
+
ASSIGNED_TO_SURFACES_FIELD_NUMBER: _ClassVar[int]
|
|
147
|
+
TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
148
|
+
MATERIAL_FIELD_NUMBER: _ClassVar[int]
|
|
149
|
+
UNIFORM_THICKNESS_FIELD_NUMBER: _ClassVar[int]
|
|
150
|
+
UNIFORM_OR_FICTITIOUS_THICKNESS_FIELD_NUMBER: _ClassVar[int]
|
|
151
|
+
ADVANCED_TIME_DEPENDENT_PROPERTIES_OF_CONCRETE_ENABLED_FIELD_NUMBER: _ClassVar[int]
|
|
152
|
+
CREEP_ENABLED_FIELD_NUMBER: _ClassVar[int]
|
|
153
|
+
SHRINKAGE_ENABLED_FIELD_NUMBER: _ClassVar[int]
|
|
154
|
+
RELATIVE_HUMIDITY_FIELD_NUMBER: _ClassVar[int]
|
|
155
|
+
SPECIFY_INTEGRATION_METHOD_ENABLED_FIELD_NUMBER: _ClassVar[int]
|
|
156
|
+
INTEGRATION_METHOD_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
157
|
+
NUMBER_OF_INTEGRATION_POINTS_FIELD_NUMBER: _ClassVar[int]
|
|
158
|
+
THICKNESS_1_FIELD_NUMBER: _ClassVar[int]
|
|
159
|
+
NODE_1_FIELD_NUMBER: _ClassVar[int]
|
|
160
|
+
THICKNESS_2_FIELD_NUMBER: _ClassVar[int]
|
|
161
|
+
NODE_2_FIELD_NUMBER: _ClassVar[int]
|
|
162
|
+
THICKNESS_3_FIELD_NUMBER: _ClassVar[int]
|
|
163
|
+
NODE_3_FIELD_NUMBER: _ClassVar[int]
|
|
164
|
+
DIRECTION_FIELD_NUMBER: _ClassVar[int]
|
|
165
|
+
THICKNESS_4_FIELD_NUMBER: _ClassVar[int]
|
|
166
|
+
NODE_4_FIELD_NUMBER: _ClassVar[int]
|
|
167
|
+
THICKNESS_CIRCLE_CENTER_FIELD_NUMBER: _ClassVar[int]
|
|
168
|
+
THICKNESS_CIRCLE_LINE_FIELD_NUMBER: _ClassVar[int]
|
|
169
|
+
COMMENT_FIELD_NUMBER: _ClassVar[int]
|
|
170
|
+
LAYERS_REFERENCE_TABLE_FIELD_NUMBER: _ClassVar[int]
|
|
171
|
+
LAYERS_SOLID_MODEL_ENABLED_FIELD_NUMBER: _ClassVar[int]
|
|
172
|
+
LAYERS_GAS_ENABLED_FIELD_NUMBER: _ClassVar[int]
|
|
173
|
+
LAYERS_TOTAL_THICKNESS_FIELD_NUMBER: _ClassVar[int]
|
|
174
|
+
LAYERS_TOTAL_WEIGHT_FIELD_NUMBER: _ClassVar[int]
|
|
175
|
+
STIFFNESS_REDUCTION_ENABLED_FIELD_NUMBER: _ClassVar[int]
|
|
176
|
+
IS_ENABLED_DESIGN_OF_FAILURE_FIELD_NUMBER: _ClassVar[int]
|
|
177
|
+
PLANK_WIDTH_BX_FIELD_NUMBER: _ClassVar[int]
|
|
178
|
+
PLANK_WIDTH_BY_FIELD_NUMBER: _ClassVar[int]
|
|
179
|
+
PLANK_WIDTH_INCLUDING_GAP_ENABLED_FIELD_NUMBER: _ClassVar[int]
|
|
180
|
+
PLANK_WIDTH_INCLUDING_GAP_EX_FIELD_NUMBER: _ClassVar[int]
|
|
181
|
+
PLANK_WIDTH_INCLUDING_GAP_EY_FIELD_NUMBER: _ClassVar[int]
|
|
182
|
+
STIFFNESS_REDUCTION_ELEMENTS_EDITING_ENABLED_FIELD_NUMBER: _ClassVar[int]
|
|
183
|
+
K33_FIELD_NUMBER: _ClassVar[int]
|
|
184
|
+
K44_FIELD_NUMBER: _ClassVar[int]
|
|
185
|
+
K55_FIELD_NUMBER: _ClassVar[int]
|
|
186
|
+
K88_FIELD_NUMBER: _ClassVar[int]
|
|
187
|
+
K33_NOTE_FIELD_NUMBER: _ClassVar[int]
|
|
188
|
+
K44_NOTE_FIELD_NUMBER: _ClassVar[int]
|
|
189
|
+
K55_NOTE_FIELD_NUMBER: _ClassVar[int]
|
|
190
|
+
K88_NOTE_FIELD_NUMBER: _ClassVar[int]
|
|
191
|
+
FUNCTION_DATA_FUNCTION_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
192
|
+
FUNCTION_DATA_LAYER_ID_FIELD_NUMBER: _ClassVar[int]
|
|
193
|
+
FUNCTION_DATA_AGE_OF_CONCRETE_AT_THE_CONSIDERED_TIME_FIELD_NUMBER: _ClassVar[int]
|
|
194
|
+
FUNCTION_DATA_NUMBER_OF_STEPS_FIELD_NUMBER: _ClassVar[int]
|
|
195
|
+
FUNCTION_DATA_COEFFICIENTS_FIELD_NUMBER: _ClassVar[int]
|
|
196
|
+
PARENT_THICKNESS_FIELD_NUMBER: _ClassVar[int]
|
|
197
|
+
PARENT_THICKNESS_LAYERS_FIELD_NUMBER: _ClassVar[int]
|
|
198
|
+
BEAM_PANEL_SHEATHING_FRONT_MATERIAL_ENABLED_FIELD_NUMBER: _ClassVar[int]
|
|
199
|
+
BEAM_PANEL_SHEATHING_FRONT_MATERIAL_FIELD_NUMBER: _ClassVar[int]
|
|
200
|
+
BEAM_PANEL_SHEATHING_FRONT_THICKNESS_FIELD_NUMBER: _ClassVar[int]
|
|
201
|
+
BEAM_PANEL_SHEATHING_BACK_MATERIAL_ENABLED_FIELD_NUMBER: _ClassVar[int]
|
|
202
|
+
BEAM_PANEL_SHEATHING_BACK_MATERIAL_FIELD_NUMBER: _ClassVar[int]
|
|
203
|
+
BEAM_PANEL_SHEATHING_BACK_THICKNESS_FIELD_NUMBER: _ClassVar[int]
|
|
204
|
+
BEAM_PANEL_FRAMING_MEMBERS_CONNECTOR_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
205
|
+
BEAM_PANEL_FRAMING_MEMBERS_CONNECTOR_DIAMETER_FIELD_NUMBER: _ClassVar[int]
|
|
206
|
+
BEAM_PANEL_FRAMING_MEMBERS_CONNECTOR_DIMENSION_A_FIELD_NUMBER: _ClassVar[int]
|
|
207
|
+
BEAM_PANEL_FRAMING_MEMBERS_CONNECTOR_DIMENSION_B_FIELD_NUMBER: _ClassVar[int]
|
|
208
|
+
BEAM_PANEL_FRAMING_MEMBERS_CONNECTOR_SPACING_FIELD_NUMBER: _ClassVar[int]
|
|
209
|
+
BEAM_PANEL_FRAMING_MEMBERS_CONNECTOR_STIFFNESS_FRONT_X_FIELD_NUMBER: _ClassVar[int]
|
|
210
|
+
BEAM_PANEL_FRAMING_MEMBERS_CONNECTOR_STIFFNESS_FRONT_Y_FIELD_NUMBER: _ClassVar[int]
|
|
211
|
+
BEAM_PANEL_FRAMING_MEMBERS_CONNECTOR_STIFFNESS_BACK_X_FIELD_NUMBER: _ClassVar[int]
|
|
212
|
+
BEAM_PANEL_FRAMING_MEMBERS_CONNECTOR_STIFFNESS_BACK_Y_FIELD_NUMBER: _ClassVar[int]
|
|
213
|
+
BEAM_PANEL_INNER_STUDS_CROSS_SECTION_FIELD_NUMBER: _ClassVar[int]
|
|
214
|
+
BEAM_PANEL_INNER_STUDS_DISTRIBUTION_FIELD_NUMBER: _ClassVar[int]
|
|
215
|
+
BEAM_PANEL_INNER_STUDS_REVERSE_DISTRIBUTION_ENABLED_FIELD_NUMBER: _ClassVar[int]
|
|
216
|
+
BEAM_PANEL_INNER_STUDS_SPACING_FIELD_NUMBER: _ClassVar[int]
|
|
217
|
+
BEAM_PANEL_INNER_STUDS_SPACING_TABLE_FIELD_NUMBER: _ClassVar[int]
|
|
218
|
+
BEAM_PANEL_INNER_STUDS_SPACING_DEFINITION_RELATIVE_FIELD_NUMBER: _ClassVar[int]
|
|
219
|
+
BEAM_PANEL_INNER_STUDS_CONNECTOR_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
220
|
+
BEAM_PANEL_INNER_STUDS_CONNECTOR_DIAMETER_FIELD_NUMBER: _ClassVar[int]
|
|
221
|
+
BEAM_PANEL_INNER_STUDS_CONNECTOR_DIMENSION_A_FIELD_NUMBER: _ClassVar[int]
|
|
222
|
+
BEAM_PANEL_INNER_STUDS_CONNECTOR_DIMENSION_B_FIELD_NUMBER: _ClassVar[int]
|
|
223
|
+
BEAM_PANEL_INNER_STUDS_CONNECTOR_SPACING_FIELD_NUMBER: _ClassVar[int]
|
|
224
|
+
BEAM_PANEL_INNER_STUDS_CONNECTOR_STIFFNESS_FRONT_FIELD_NUMBER: _ClassVar[int]
|
|
225
|
+
BEAM_PANEL_INNER_STUDS_CONNECTOR_STIFFNESS_BACK_FIELD_NUMBER: _ClassVar[int]
|
|
226
|
+
ORTHOTROPY_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
227
|
+
ORTHOTROPY_ROTATION_BETA_FIELD_NUMBER: _ClassVar[int]
|
|
228
|
+
ORTHOTROPY_FICTITIOUS_THICKNESS_FIELD_NUMBER: _ClassVar[int]
|
|
229
|
+
SHAPE_ORTHOTROPY_SELF_WEIGHT_DEFINITION_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
230
|
+
SHAPE_ORTHOTROPY_EFFECTIVE_THICKNESS_X_FIELD_NUMBER: _ClassVar[int]
|
|
231
|
+
SHAPE_ORTHOTROPY_EFFECTIVE_THICKNESS_Y_FIELD_NUMBER: _ClassVar[int]
|
|
232
|
+
SHAPE_ORTHOTROPY_SELF_WEIGHT_FIELD_NUMBER: _ClassVar[int]
|
|
233
|
+
STIFFNESS_MATRIX_SELF_WEIGHT_DEFINITION_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
234
|
+
STIFFNESS_MATRIX_BULK_DENSITY_FIELD_NUMBER: _ClassVar[int]
|
|
235
|
+
STIFFNESS_MATRIX_AREA_DENSITY_FIELD_NUMBER: _ClassVar[int]
|
|
236
|
+
STIFFNESS_MATRIX_COEFFICIENT_OF_THERMAL_EXPANSION_FIELD_NUMBER: _ClassVar[int]
|
|
237
|
+
COUPLING_THICKNESS_FIELD_NUMBER: _ClassVar[int]
|
|
238
|
+
COUPLING_SPACING_FIELD_NUMBER: _ClassVar[int]
|
|
239
|
+
COUPLING_WIDTH_FIELD_NUMBER: _ClassVar[int]
|
|
240
|
+
SLAB_THICKNESS_FIELD_NUMBER: _ClassVar[int]
|
|
241
|
+
RIB_HEIGHT_FIELD_NUMBER: _ClassVar[int]
|
|
242
|
+
RIB_SPACING_FIELD_NUMBER: _ClassVar[int]
|
|
243
|
+
RIB_WIDTH_FIELD_NUMBER: _ClassVar[int]
|
|
244
|
+
RIB_SPACING_X_FIELD_NUMBER: _ClassVar[int]
|
|
245
|
+
RIB_SPACING_Y_FIELD_NUMBER: _ClassVar[int]
|
|
246
|
+
RIB_WIDTH_X_FIELD_NUMBER: _ClassVar[int]
|
|
247
|
+
RIB_WIDTH_Y_FIELD_NUMBER: _ClassVar[int]
|
|
248
|
+
SHEET_THICKNESS_FIELD_NUMBER: _ClassVar[int]
|
|
249
|
+
TOTAL_PROFILE_HEIGHT_FIELD_NUMBER: _ClassVar[int]
|
|
250
|
+
TOP_FLANGE_WIDTH_FIELD_NUMBER: _ClassVar[int]
|
|
251
|
+
BOTTOM_FLANGE_WIDTH_FIELD_NUMBER: _ClassVar[int]
|
|
252
|
+
VOID_SPACING_FIELD_NUMBER: _ClassVar[int]
|
|
253
|
+
VOID_DIAMETER_FIELD_NUMBER: _ClassVar[int]
|
|
254
|
+
RIB_HEIGHT_X_FIELD_NUMBER: _ClassVar[int]
|
|
255
|
+
RIB_HEIGHT_Y_FIELD_NUMBER: _ClassVar[int]
|
|
256
|
+
D11_FIELD_NUMBER: _ClassVar[int]
|
|
257
|
+
D11_NOTE_FIELD_NUMBER: _ClassVar[int]
|
|
258
|
+
D12_FIELD_NUMBER: _ClassVar[int]
|
|
259
|
+
D12_NOTE_FIELD_NUMBER: _ClassVar[int]
|
|
260
|
+
D13_FIELD_NUMBER: _ClassVar[int]
|
|
261
|
+
D13_NOTE_FIELD_NUMBER: _ClassVar[int]
|
|
262
|
+
D16_FIELD_NUMBER: _ClassVar[int]
|
|
263
|
+
D16_NOTE_FIELD_NUMBER: _ClassVar[int]
|
|
264
|
+
D17_FIELD_NUMBER: _ClassVar[int]
|
|
265
|
+
D17_NOTE_FIELD_NUMBER: _ClassVar[int]
|
|
266
|
+
D18_FIELD_NUMBER: _ClassVar[int]
|
|
267
|
+
D18_NOTE_FIELD_NUMBER: _ClassVar[int]
|
|
268
|
+
D22_FIELD_NUMBER: _ClassVar[int]
|
|
269
|
+
D22_NOTE_FIELD_NUMBER: _ClassVar[int]
|
|
270
|
+
D23_FIELD_NUMBER: _ClassVar[int]
|
|
271
|
+
D23_NOTE_FIELD_NUMBER: _ClassVar[int]
|
|
272
|
+
D27_FIELD_NUMBER: _ClassVar[int]
|
|
273
|
+
D27_NOTE_FIELD_NUMBER: _ClassVar[int]
|
|
274
|
+
D28_FIELD_NUMBER: _ClassVar[int]
|
|
275
|
+
D28_NOTE_FIELD_NUMBER: _ClassVar[int]
|
|
276
|
+
D33_FIELD_NUMBER: _ClassVar[int]
|
|
277
|
+
D33_NOTE_FIELD_NUMBER: _ClassVar[int]
|
|
278
|
+
D38_FIELD_NUMBER: _ClassVar[int]
|
|
279
|
+
D38_NOTE_FIELD_NUMBER: _ClassVar[int]
|
|
280
|
+
D44_FIELD_NUMBER: _ClassVar[int]
|
|
281
|
+
D44_NOTE_FIELD_NUMBER: _ClassVar[int]
|
|
282
|
+
D45_FIELD_NUMBER: _ClassVar[int]
|
|
283
|
+
D45_NOTE_FIELD_NUMBER: _ClassVar[int]
|
|
284
|
+
D55_FIELD_NUMBER: _ClassVar[int]
|
|
285
|
+
D55_NOTE_FIELD_NUMBER: _ClassVar[int]
|
|
286
|
+
D66_FIELD_NUMBER: _ClassVar[int]
|
|
287
|
+
D66_NOTE_FIELD_NUMBER: _ClassVar[int]
|
|
288
|
+
D67_FIELD_NUMBER: _ClassVar[int]
|
|
289
|
+
D67_NOTE_FIELD_NUMBER: _ClassVar[int]
|
|
290
|
+
D68_FIELD_NUMBER: _ClassVar[int]
|
|
291
|
+
D68_NOTE_FIELD_NUMBER: _ClassVar[int]
|
|
292
|
+
D77_FIELD_NUMBER: _ClassVar[int]
|
|
293
|
+
D77_NOTE_FIELD_NUMBER: _ClassVar[int]
|
|
294
|
+
D78_FIELD_NUMBER: _ClassVar[int]
|
|
295
|
+
D78_NOTE_FIELD_NUMBER: _ClassVar[int]
|
|
296
|
+
D88_FIELD_NUMBER: _ClassVar[int]
|
|
297
|
+
D88_NOTE_FIELD_NUMBER: _ClassVar[int]
|
|
298
|
+
IS_GENERATED_FIELD_NUMBER: _ClassVar[int]
|
|
299
|
+
GENERATING_OBJECT_INFO_FIELD_NUMBER: _ClassVar[int]
|
|
300
|
+
TIME_DEPENDENT_PROPERTIES_FIELD_NUMBER: _ClassVar[int]
|
|
301
|
+
ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
302
|
+
METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
303
|
+
no: int
|
|
304
|
+
user_defined_name_enabled: bool
|
|
305
|
+
name: str
|
|
306
|
+
assigned_to_surfaces: _containers.RepeatedScalarFieldContainer[int]
|
|
307
|
+
type: ThicknessType
|
|
308
|
+
material: int
|
|
309
|
+
uniform_thickness: float
|
|
310
|
+
uniform_or_fictitious_thickness: float
|
|
311
|
+
advanced_time_dependent_properties_of_concrete_enabled: bool
|
|
312
|
+
creep_enabled: bool
|
|
313
|
+
shrinkage_enabled: bool
|
|
314
|
+
relative_humidity: float
|
|
315
|
+
specify_integration_method_enabled: bool
|
|
316
|
+
integration_method_type: ThicknessIntegrationMethodType
|
|
317
|
+
number_of_integration_points: int
|
|
318
|
+
thickness_1: float
|
|
319
|
+
node_1: int
|
|
320
|
+
thickness_2: float
|
|
321
|
+
node_2: int
|
|
322
|
+
thickness_3: float
|
|
323
|
+
node_3: int
|
|
324
|
+
direction: ThicknessDirection
|
|
325
|
+
thickness_4: float
|
|
326
|
+
node_4: int
|
|
327
|
+
thickness_circle_center: float
|
|
328
|
+
thickness_circle_line: float
|
|
329
|
+
comment: str
|
|
330
|
+
layers_reference_table: ArrayOfThicknessLayersReferenceTable
|
|
331
|
+
layers_solid_model_enabled: bool
|
|
332
|
+
layers_gas_enabled: bool
|
|
333
|
+
layers_total_thickness: float
|
|
334
|
+
layers_total_weight: float
|
|
335
|
+
stiffness_reduction_enabled: bool
|
|
336
|
+
is_enabled_design_of_failure: bool
|
|
337
|
+
plank_width_bx: float
|
|
338
|
+
plank_width_by: float
|
|
339
|
+
plank_width_including_gap_enabled: bool
|
|
340
|
+
plank_width_including_gap_ex: float
|
|
341
|
+
plank_width_including_gap_ey: float
|
|
342
|
+
stiffness_reduction_elements_editing_enabled: bool
|
|
343
|
+
K33: float
|
|
344
|
+
K44: float
|
|
345
|
+
K55: float
|
|
346
|
+
K88: float
|
|
347
|
+
K33_note: str
|
|
348
|
+
K44_note: str
|
|
349
|
+
K55_note: str
|
|
350
|
+
K88_note: str
|
|
351
|
+
function_data_function_type: ThicknessFunctionDataFunctionType
|
|
352
|
+
function_data_layer_id: int
|
|
353
|
+
function_data_age_of_concrete_at_the_considered_time: float
|
|
354
|
+
function_data_number_of_steps: int
|
|
355
|
+
function_data_coefficients: ArrayOfThicknessFunctionDataCoefficients
|
|
356
|
+
parent_thickness: int
|
|
357
|
+
parent_thickness_layers: _containers.RepeatedScalarFieldContainer[int]
|
|
358
|
+
beam_panel_sheathing_front_material_enabled: bool
|
|
359
|
+
beam_panel_sheathing_front_material: int
|
|
360
|
+
beam_panel_sheathing_front_thickness: float
|
|
361
|
+
beam_panel_sheathing_back_material_enabled: bool
|
|
362
|
+
beam_panel_sheathing_back_material: int
|
|
363
|
+
beam_panel_sheathing_back_thickness: float
|
|
364
|
+
beam_panel_framing_members_connector_type: ThicknessBeamPanelFramingMembersConnectorType
|
|
365
|
+
beam_panel_framing_members_connector_diameter: float
|
|
366
|
+
beam_panel_framing_members_connector_dimension_a: float
|
|
367
|
+
beam_panel_framing_members_connector_dimension_b: float
|
|
368
|
+
beam_panel_framing_members_connector_spacing: float
|
|
369
|
+
beam_panel_framing_members_connector_stiffness_front_x: float
|
|
370
|
+
beam_panel_framing_members_connector_stiffness_front_y: float
|
|
371
|
+
beam_panel_framing_members_connector_stiffness_back_x: float
|
|
372
|
+
beam_panel_framing_members_connector_stiffness_back_y: float
|
|
373
|
+
beam_panel_inner_studs_cross_section: int
|
|
374
|
+
beam_panel_inner_studs_distribution: ThicknessBeamPanelInnerStudsDistribution
|
|
375
|
+
beam_panel_inner_studs_reverse_distribution_enabled: bool
|
|
376
|
+
beam_panel_inner_studs_spacing: float
|
|
377
|
+
beam_panel_inner_studs_spacing_table: ArrayOfThicknessBeamPanelInnerStudsSpacingTable
|
|
378
|
+
beam_panel_inner_studs_spacing_definition_relative: bool
|
|
379
|
+
beam_panel_inner_studs_connector_type: ThicknessBeamPanelInnerStudsConnectorType
|
|
380
|
+
beam_panel_inner_studs_connector_diameter: float
|
|
381
|
+
beam_panel_inner_studs_connector_dimension_a: float
|
|
382
|
+
beam_panel_inner_studs_connector_dimension_b: float
|
|
383
|
+
beam_panel_inner_studs_connector_spacing: float
|
|
384
|
+
beam_panel_inner_studs_connector_stiffness_front: float
|
|
385
|
+
beam_panel_inner_studs_connector_stiffness_back: float
|
|
386
|
+
orthotropy_type: ThicknessOrthotropyType
|
|
387
|
+
orthotropy_rotation_beta: float
|
|
388
|
+
orthotropy_fictitious_thickness: float
|
|
389
|
+
shape_orthotropy_self_weight_definition_type: ThicknessShapeOrthotropySelfWeightDefinitionType
|
|
390
|
+
shape_orthotropy_effective_thickness_x: float
|
|
391
|
+
shape_orthotropy_effective_thickness_y: float
|
|
392
|
+
shape_orthotropy_self_weight: float
|
|
393
|
+
stiffness_matrix_self_weight_definition_type: ThicknessStiffnessMatrixSelfWeightDefinitionType
|
|
394
|
+
stiffness_matrix_bulk_density: float
|
|
395
|
+
stiffness_matrix_area_density: float
|
|
396
|
+
stiffness_matrix_coefficient_of_thermal_expansion: float
|
|
397
|
+
coupling_thickness: float
|
|
398
|
+
coupling_spacing: float
|
|
399
|
+
coupling_width: float
|
|
400
|
+
slab_thickness: float
|
|
401
|
+
rib_height: float
|
|
402
|
+
rib_spacing: float
|
|
403
|
+
rib_width: float
|
|
404
|
+
rib_spacing_x: float
|
|
405
|
+
rib_spacing_y: float
|
|
406
|
+
rib_width_x: float
|
|
407
|
+
rib_width_y: float
|
|
408
|
+
sheet_thickness: float
|
|
409
|
+
total_profile_height: float
|
|
410
|
+
top_flange_width: float
|
|
411
|
+
bottom_flange_width: float
|
|
412
|
+
void_spacing: float
|
|
413
|
+
void_diameter: float
|
|
414
|
+
rib_height_x: float
|
|
415
|
+
rib_height_y: float
|
|
416
|
+
D11: float
|
|
417
|
+
D11_note: str
|
|
418
|
+
D12: float
|
|
419
|
+
D12_note: str
|
|
420
|
+
D13: float
|
|
421
|
+
D13_note: str
|
|
422
|
+
D16: float
|
|
423
|
+
D16_note: str
|
|
424
|
+
D17: float
|
|
425
|
+
D17_note: str
|
|
426
|
+
D18: float
|
|
427
|
+
D18_note: str
|
|
428
|
+
D22: float
|
|
429
|
+
D22_note: str
|
|
430
|
+
D23: float
|
|
431
|
+
D23_note: str
|
|
432
|
+
D27: float
|
|
433
|
+
D27_note: str
|
|
434
|
+
D28: float
|
|
435
|
+
D28_note: str
|
|
436
|
+
D33: float
|
|
437
|
+
D33_note: str
|
|
438
|
+
D38: float
|
|
439
|
+
D38_note: str
|
|
440
|
+
D44: float
|
|
441
|
+
D44_note: str
|
|
442
|
+
D45: float
|
|
443
|
+
D45_note: str
|
|
444
|
+
D55: float
|
|
445
|
+
D55_note: str
|
|
446
|
+
D66: float
|
|
447
|
+
D66_note: str
|
|
448
|
+
D67: float
|
|
449
|
+
D67_note: str
|
|
450
|
+
D68: float
|
|
451
|
+
D68_note: str
|
|
452
|
+
D77: float
|
|
453
|
+
D77_note: str
|
|
454
|
+
D78: float
|
|
455
|
+
D78_note: str
|
|
456
|
+
D88: float
|
|
457
|
+
D88_note: str
|
|
458
|
+
is_generated: bool
|
|
459
|
+
generating_object_info: str
|
|
460
|
+
time_dependent_properties: ArrayOfThicknessTimeDependentPropertiesAndChildItems
|
|
461
|
+
id_for_export_import: str
|
|
462
|
+
metadata_for_export_import: str
|
|
463
|
+
def __init__(self, no: _Optional[int] = ..., user_defined_name_enabled: bool = ..., name: _Optional[str] = ..., assigned_to_surfaces: _Optional[_Iterable[int]] = ..., type: _Optional[_Union[ThicknessType, str]] = ..., material: _Optional[int] = ..., uniform_thickness: _Optional[float] = ..., uniform_or_fictitious_thickness: _Optional[float] = ..., advanced_time_dependent_properties_of_concrete_enabled: bool = ..., creep_enabled: bool = ..., shrinkage_enabled: bool = ..., relative_humidity: _Optional[float] = ..., specify_integration_method_enabled: bool = ..., integration_method_type: _Optional[_Union[ThicknessIntegrationMethodType, str]] = ..., number_of_integration_points: _Optional[int] = ..., thickness_1: _Optional[float] = ..., node_1: _Optional[int] = ..., thickness_2: _Optional[float] = ..., node_2: _Optional[int] = ..., thickness_3: _Optional[float] = ..., node_3: _Optional[int] = ..., direction: _Optional[_Union[ThicknessDirection, str]] = ..., thickness_4: _Optional[float] = ..., node_4: _Optional[int] = ..., thickness_circle_center: _Optional[float] = ..., thickness_circle_line: _Optional[float] = ..., comment: _Optional[str] = ..., layers_reference_table: _Optional[_Union[ArrayOfThicknessLayersReferenceTable, _Mapping]] = ..., layers_solid_model_enabled: bool = ..., layers_gas_enabled: bool = ..., layers_total_thickness: _Optional[float] = ..., layers_total_weight: _Optional[float] = ..., stiffness_reduction_enabled: bool = ..., is_enabled_design_of_failure: bool = ..., plank_width_bx: _Optional[float] = ..., plank_width_by: _Optional[float] = ..., plank_width_including_gap_enabled: bool = ..., plank_width_including_gap_ex: _Optional[float] = ..., plank_width_including_gap_ey: _Optional[float] = ..., stiffness_reduction_elements_editing_enabled: bool = ..., K33: _Optional[float] = ..., K44: _Optional[float] = ..., K55: _Optional[float] = ..., K88: _Optional[float] = ..., K33_note: _Optional[str] = ..., K44_note: _Optional[str] = ..., K55_note: _Optional[str] = ..., K88_note: _Optional[str] = ..., function_data_function_type: _Optional[_Union[ThicknessFunctionDataFunctionType, str]] = ..., function_data_layer_id: _Optional[int] = ..., function_data_age_of_concrete_at_the_considered_time: _Optional[float] = ..., function_data_number_of_steps: _Optional[int] = ..., function_data_coefficients: _Optional[_Union[ArrayOfThicknessFunctionDataCoefficients, _Mapping]] = ..., parent_thickness: _Optional[int] = ..., parent_thickness_layers: _Optional[_Iterable[int]] = ..., beam_panel_sheathing_front_material_enabled: bool = ..., beam_panel_sheathing_front_material: _Optional[int] = ..., beam_panel_sheathing_front_thickness: _Optional[float] = ..., beam_panel_sheathing_back_material_enabled: bool = ..., beam_panel_sheathing_back_material: _Optional[int] = ..., beam_panel_sheathing_back_thickness: _Optional[float] = ..., beam_panel_framing_members_connector_type: _Optional[_Union[ThicknessBeamPanelFramingMembersConnectorType, str]] = ..., beam_panel_framing_members_connector_diameter: _Optional[float] = ..., beam_panel_framing_members_connector_dimension_a: _Optional[float] = ..., beam_panel_framing_members_connector_dimension_b: _Optional[float] = ..., beam_panel_framing_members_connector_spacing: _Optional[float] = ..., beam_panel_framing_members_connector_stiffness_front_x: _Optional[float] = ..., beam_panel_framing_members_connector_stiffness_front_y: _Optional[float] = ..., beam_panel_framing_members_connector_stiffness_back_x: _Optional[float] = ..., beam_panel_framing_members_connector_stiffness_back_y: _Optional[float] = ..., beam_panel_inner_studs_cross_section: _Optional[int] = ..., beam_panel_inner_studs_distribution: _Optional[_Union[ThicknessBeamPanelInnerStudsDistribution, str]] = ..., beam_panel_inner_studs_reverse_distribution_enabled: bool = ..., beam_panel_inner_studs_spacing: _Optional[float] = ..., beam_panel_inner_studs_spacing_table: _Optional[_Union[ArrayOfThicknessBeamPanelInnerStudsSpacingTable, _Mapping]] = ..., beam_panel_inner_studs_spacing_definition_relative: bool = ..., beam_panel_inner_studs_connector_type: _Optional[_Union[ThicknessBeamPanelInnerStudsConnectorType, str]] = ..., beam_panel_inner_studs_connector_diameter: _Optional[float] = ..., beam_panel_inner_studs_connector_dimension_a: _Optional[float] = ..., beam_panel_inner_studs_connector_dimension_b: _Optional[float] = ..., beam_panel_inner_studs_connector_spacing: _Optional[float] = ..., beam_panel_inner_studs_connector_stiffness_front: _Optional[float] = ..., beam_panel_inner_studs_connector_stiffness_back: _Optional[float] = ..., orthotropy_type: _Optional[_Union[ThicknessOrthotropyType, str]] = ..., orthotropy_rotation_beta: _Optional[float] = ..., orthotropy_fictitious_thickness: _Optional[float] = ..., shape_orthotropy_self_weight_definition_type: _Optional[_Union[ThicknessShapeOrthotropySelfWeightDefinitionType, str]] = ..., shape_orthotropy_effective_thickness_x: _Optional[float] = ..., shape_orthotropy_effective_thickness_y: _Optional[float] = ..., shape_orthotropy_self_weight: _Optional[float] = ..., stiffness_matrix_self_weight_definition_type: _Optional[_Union[ThicknessStiffnessMatrixSelfWeightDefinitionType, str]] = ..., stiffness_matrix_bulk_density: _Optional[float] = ..., stiffness_matrix_area_density: _Optional[float] = ..., stiffness_matrix_coefficient_of_thermal_expansion: _Optional[float] = ..., coupling_thickness: _Optional[float] = ..., coupling_spacing: _Optional[float] = ..., coupling_width: _Optional[float] = ..., slab_thickness: _Optional[float] = ..., rib_height: _Optional[float] = ..., rib_spacing: _Optional[float] = ..., rib_width: _Optional[float] = ..., rib_spacing_x: _Optional[float] = ..., rib_spacing_y: _Optional[float] = ..., rib_width_x: _Optional[float] = ..., rib_width_y: _Optional[float] = ..., sheet_thickness: _Optional[float] = ..., total_profile_height: _Optional[float] = ..., top_flange_width: _Optional[float] = ..., bottom_flange_width: _Optional[float] = ..., void_spacing: _Optional[float] = ..., void_diameter: _Optional[float] = ..., rib_height_x: _Optional[float] = ..., rib_height_y: _Optional[float] = ..., D11: _Optional[float] = ..., D11_note: _Optional[str] = ..., D12: _Optional[float] = ..., D12_note: _Optional[str] = ..., D13: _Optional[float] = ..., D13_note: _Optional[str] = ..., D16: _Optional[float] = ..., D16_note: _Optional[str] = ..., D17: _Optional[float] = ..., D17_note: _Optional[str] = ..., D18: _Optional[float] = ..., D18_note: _Optional[str] = ..., D22: _Optional[float] = ..., D22_note: _Optional[str] = ..., D23: _Optional[float] = ..., D23_note: _Optional[str] = ..., D27: _Optional[float] = ..., D27_note: _Optional[str] = ..., D28: _Optional[float] = ..., D28_note: _Optional[str] = ..., D33: _Optional[float] = ..., D33_note: _Optional[str] = ..., D38: _Optional[float] = ..., D38_note: _Optional[str] = ..., D44: _Optional[float] = ..., D44_note: _Optional[str] = ..., D45: _Optional[float] = ..., D45_note: _Optional[str] = ..., D55: _Optional[float] = ..., D55_note: _Optional[str] = ..., D66: _Optional[float] = ..., D66_note: _Optional[str] = ..., D67: _Optional[float] = ..., D67_note: _Optional[str] = ..., D68: _Optional[float] = ..., D68_note: _Optional[str] = ..., D77: _Optional[float] = ..., D77_note: _Optional[str] = ..., D78: _Optional[float] = ..., D78_note: _Optional[str] = ..., D88: _Optional[float] = ..., D88_note: _Optional[str] = ..., is_generated: bool = ..., generating_object_info: _Optional[str] = ..., time_dependent_properties: _Optional[_Union[ArrayOfThicknessTimeDependentPropertiesAndChildItems, _Mapping]] = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
|
|
464
|
+
|
|
465
|
+
class ArrayOfThicknessLayersReferenceTable(_message.Message):
|
|
466
|
+
__slots__ = ()
|
|
467
|
+
def __init__(self) -> None: ...
|
|
468
|
+
|
|
469
|
+
class ArrayOfThicknessFunctionDataCoefficients(_message.Message):
|
|
470
|
+
__slots__ = ()
|
|
471
|
+
def __init__(self) -> None: ...
|
|
472
|
+
|
|
473
|
+
class ArrayOfThicknessBeamPanelInnerStudsSpacingTable(_message.Message):
|
|
474
|
+
__slots__ = ()
|
|
475
|
+
def __init__(self) -> None: ...
|
|
476
|
+
|
|
477
|
+
class ArrayOfThicknessTimeDependentPropertiesAndChildItems(_message.Message):
|
|
478
|
+
__slots__ = ()
|
|
479
|
+
def __init__(self) -> None: ...
|
|
@@ -0,0 +1,36 @@
|
|
|
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/timber_design_objects/timber_design_fr_configuration.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/timber_design_objects/timber_design_fr_configuration.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'\nJdlubal/api/rfem/timber_design_objects/timber_design_fr_configuration.proto\x12%dlubal.api.rfem.timber_design_objects\"\xfb\x03\n\x1bTimberDesignFrConfiguration\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$\n\x17\x61ssigned_to_all_members\x18\x04 \x01(\x08H\x02\x88\x01\x01\x12\x1b\n\x13\x61ssigned_to_members\x18\x05 \x03(\x05\x12(\n\x1b\x61ssigned_to_all_member_sets\x18\x06 \x01(\x08H\x03\x88\x01\x01\x12\x1f\n\x17\x61ssigned_to_member_sets\x18\x07 \x03(\x05\x12\x14\n\x07\x63omment\x18\x08 \x01(\tH\x04\x88\x01\x01\x12!\n\x14id_for_export_import\x18\t \x01(\tH\x05\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\n \x01(\tH\x06\x88\x01\x01\x42\x1c\n\x1a_user_defined_name_enabledB\x07\n\x05_nameB\x1a\n\x18_assigned_to_all_membersB\x1e\n\x1c_assigned_to_all_member_setsB\n\n\x08_commentB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_importb\x06proto3')
|
|
28
|
+
|
|
29
|
+
_globals = globals()
|
|
30
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
31
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.timber_design_objects.timber_design_fr_configuration_pb2', _globals)
|
|
32
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
33
|
+
DESCRIPTOR._loaded_options = None
|
|
34
|
+
_globals['_TIMBERDESIGNFRCONFIGURATION']._serialized_start=118
|
|
35
|
+
_globals['_TIMBERDESIGNFRCONFIGURATION']._serialized_end=625
|
|
36
|
+
# @@protoc_insertion_point(module_scope)
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
from google.protobuf.internal import containers as _containers
|
|
2
|
+
from google.protobuf import descriptor as _descriptor
|
|
3
|
+
from google.protobuf import message as _message
|
|
4
|
+
from typing import ClassVar as _ClassVar, Iterable as _Iterable, Optional as _Optional
|
|
5
|
+
|
|
6
|
+
DESCRIPTOR: _descriptor.FileDescriptor
|
|
7
|
+
|
|
8
|
+
class TimberDesignFrConfiguration(_message.Message):
|
|
9
|
+
__slots__ = ("no", "user_defined_name_enabled", "name", "assigned_to_all_members", "assigned_to_members", "assigned_to_all_member_sets", "assigned_to_member_sets", "comment", "id_for_export_import", "metadata_for_export_import")
|
|
10
|
+
NO_FIELD_NUMBER: _ClassVar[int]
|
|
11
|
+
USER_DEFINED_NAME_ENABLED_FIELD_NUMBER: _ClassVar[int]
|
|
12
|
+
NAME_FIELD_NUMBER: _ClassVar[int]
|
|
13
|
+
ASSIGNED_TO_ALL_MEMBERS_FIELD_NUMBER: _ClassVar[int]
|
|
14
|
+
ASSIGNED_TO_MEMBERS_FIELD_NUMBER: _ClassVar[int]
|
|
15
|
+
ASSIGNED_TO_ALL_MEMBER_SETS_FIELD_NUMBER: _ClassVar[int]
|
|
16
|
+
ASSIGNED_TO_MEMBER_SETS_FIELD_NUMBER: _ClassVar[int]
|
|
17
|
+
COMMENT_FIELD_NUMBER: _ClassVar[int]
|
|
18
|
+
ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
19
|
+
METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
20
|
+
no: int
|
|
21
|
+
user_defined_name_enabled: bool
|
|
22
|
+
name: str
|
|
23
|
+
assigned_to_all_members: bool
|
|
24
|
+
assigned_to_members: _containers.RepeatedScalarFieldContainer[int]
|
|
25
|
+
assigned_to_all_member_sets: bool
|
|
26
|
+
assigned_to_member_sets: _containers.RepeatedScalarFieldContainer[int]
|
|
27
|
+
comment: str
|
|
28
|
+
id_for_export_import: str
|
|
29
|
+
metadata_for_export_import: str
|
|
30
|
+
def __init__(self, no: _Optional[int] = ..., user_defined_name_enabled: bool = ..., name: _Optional[str] = ..., assigned_to_all_members: bool = ..., assigned_to_members: _Optional[_Iterable[int]] = ..., assigned_to_all_member_sets: bool = ..., assigned_to_member_sets: _Optional[_Iterable[int]] = ..., comment: _Optional[str] = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
|
|
@@ -0,0 +1,36 @@
|
|
|
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/timber_design_objects/timber_design_sls_configuration.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/timber_design_objects/timber_design_sls_configuration.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'\nKdlubal/api/rfem/timber_design_objects/timber_design_sls_configuration.proto\x12%dlubal.api.rfem.timber_design_objects\"\xfc\x03\n\x1cTimberDesignSlsConfiguration\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$\n\x17\x61ssigned_to_all_members\x18\x04 \x01(\x08H\x02\x88\x01\x01\x12\x1b\n\x13\x61ssigned_to_members\x18\x05 \x03(\x05\x12(\n\x1b\x61ssigned_to_all_member_sets\x18\x06 \x01(\x08H\x03\x88\x01\x01\x12\x1f\n\x17\x61ssigned_to_member_sets\x18\x07 \x03(\x05\x12\x14\n\x07\x63omment\x18\x08 \x01(\tH\x04\x88\x01\x01\x12!\n\x14id_for_export_import\x18\t \x01(\tH\x05\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\n \x01(\tH\x06\x88\x01\x01\x42\x1c\n\x1a_user_defined_name_enabledB\x07\n\x05_nameB\x1a\n\x18_assigned_to_all_membersB\x1e\n\x1c_assigned_to_all_member_setsB\n\n\x08_commentB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_importb\x06proto3')
|
|
28
|
+
|
|
29
|
+
_globals = globals()
|
|
30
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
31
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.timber_design_objects.timber_design_sls_configuration_pb2', _globals)
|
|
32
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
33
|
+
DESCRIPTOR._loaded_options = None
|
|
34
|
+
_globals['_TIMBERDESIGNSLSCONFIGURATION']._serialized_start=119
|
|
35
|
+
_globals['_TIMBERDESIGNSLSCONFIGURATION']._serialized_end=627
|
|
36
|
+
# @@protoc_insertion_point(module_scope)
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
from google.protobuf.internal import containers as _containers
|
|
2
|
+
from google.protobuf import descriptor as _descriptor
|
|
3
|
+
from google.protobuf import message as _message
|
|
4
|
+
from typing import ClassVar as _ClassVar, Iterable as _Iterable, Optional as _Optional
|
|
5
|
+
|
|
6
|
+
DESCRIPTOR: _descriptor.FileDescriptor
|
|
7
|
+
|
|
8
|
+
class TimberDesignSlsConfiguration(_message.Message):
|
|
9
|
+
__slots__ = ("no", "user_defined_name_enabled", "name", "assigned_to_all_members", "assigned_to_members", "assigned_to_all_member_sets", "assigned_to_member_sets", "comment", "id_for_export_import", "metadata_for_export_import")
|
|
10
|
+
NO_FIELD_NUMBER: _ClassVar[int]
|
|
11
|
+
USER_DEFINED_NAME_ENABLED_FIELD_NUMBER: _ClassVar[int]
|
|
12
|
+
NAME_FIELD_NUMBER: _ClassVar[int]
|
|
13
|
+
ASSIGNED_TO_ALL_MEMBERS_FIELD_NUMBER: _ClassVar[int]
|
|
14
|
+
ASSIGNED_TO_MEMBERS_FIELD_NUMBER: _ClassVar[int]
|
|
15
|
+
ASSIGNED_TO_ALL_MEMBER_SETS_FIELD_NUMBER: _ClassVar[int]
|
|
16
|
+
ASSIGNED_TO_MEMBER_SETS_FIELD_NUMBER: _ClassVar[int]
|
|
17
|
+
COMMENT_FIELD_NUMBER: _ClassVar[int]
|
|
18
|
+
ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
19
|
+
METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
20
|
+
no: int
|
|
21
|
+
user_defined_name_enabled: bool
|
|
22
|
+
name: str
|
|
23
|
+
assigned_to_all_members: bool
|
|
24
|
+
assigned_to_members: _containers.RepeatedScalarFieldContainer[int]
|
|
25
|
+
assigned_to_all_member_sets: bool
|
|
26
|
+
assigned_to_member_sets: _containers.RepeatedScalarFieldContainer[int]
|
|
27
|
+
comment: str
|
|
28
|
+
id_for_export_import: str
|
|
29
|
+
metadata_for_export_import: str
|
|
30
|
+
def __init__(self, no: _Optional[int] = ..., user_defined_name_enabled: bool = ..., name: _Optional[str] = ..., assigned_to_all_members: bool = ..., assigned_to_members: _Optional[_Iterable[int]] = ..., assigned_to_all_member_sets: bool = ..., assigned_to_member_sets: _Optional[_Iterable[int]] = ..., comment: _Optional[str] = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
|