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 @@
|
|
|
1
|
+
from .terrain_pb2 import *
|
|
@@ -0,0 +1,40 @@
|
|
|
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/base_data/terrain.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/base_data/terrain.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/base_data/terrain.proto\x12\x19\x64lubal.api.rfem.base_data\"\xbe\x05\n\x07Terrain\x12\n\n\x02no\x18\x01 \x01(\x05\x12\x39\n\x04type\x18\x02 \x01(\x0e\x32&.dlubal.api.rfem.base_data.TerrainTypeH\x00\x88\x01\x01\x12\x14\n\x07\x63omment\x18\x03 \x01(\tH\x01\x88\x01\x01\x12\"\n\x15\x62ounding_box_offset_x\x18\x04 \x01(\x01H\x02\x88\x01\x01\x12\"\n\x15\x62ounding_box_offset_y\x18\x05 \x01(\x01H\x03\x88\x01\x01\x12 \n\x13\x63\x65nter_of_terrain_z\x18\x06 \x01(\x01H\x04\x88\x01\x01\x12\x1e\n\x11rotation_around_Z\x18\x07 \x01(\x01H\x05\x88\x01\x01\x12\x1f\n\x12\x63onsider_boreholes\x18\x08 \x01(\x08H\x06\x88\x01\x01\x12\x1e\n\x11\x63oordinate_system\x18\t \x01(\x05H\x07\x88\x01\x01\x12Q\n\rterrain_table\x18\n \x01(\x0b\x32\x35.dlubal.api.rfem.base_data.ArrayOfTerrainTerrainTableH\x08\x88\x01\x01\x12!\n\x14id_for_export_import\x18\x0b \x01(\tH\t\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\x0c \x01(\tH\n\x88\x01\x01\x42\x07\n\x05_typeB\n\n\x08_commentB\x18\n\x16_bounding_box_offset_xB\x18\n\x16_bounding_box_offset_yB\x16\n\x14_center_of_terrain_zB\x14\n\x12_rotation_around_ZB\x15\n\x13_consider_boreholesB\x14\n\x12_coordinate_systemB\x10\n\x0e_terrain_tableB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_import\"\x1c\n\x1a\x41rrayOfTerrainTerrainTable*\xbc\x01\n\x0bTerrainType\x12\x18\n\x14TERRAIN_TYPE_UNKNOWN\x10\x00\x12\x1a\n\x16TERRAIN_TYPE_BOREHOLES\x10\x05\x12!\n\x1dTERRAIN_TYPE_HORIZONTAL_PLANE\x10\x02\x12\x1f\n\x1bTERRAIN_TYPE_INCLINED_PLANE\x10\x03\x12\x1b\n\x17TERRAIN_TYPE_NO_TERRAIN\x10\x01\x12\x16\n\x12TERRAIN_TYPE_TABLE\x10\x04\x62\x06proto3')
|
|
28
|
+
|
|
29
|
+
_globals = globals()
|
|
30
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
31
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.base_data.terrain_pb2', _globals)
|
|
32
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
33
|
+
DESCRIPTOR._loaded_options = None
|
|
34
|
+
_globals['_TERRAINTYPE']._serialized_start=806
|
|
35
|
+
_globals['_TERRAINTYPE']._serialized_end=994
|
|
36
|
+
_globals['_TERRAIN']._serialized_start=71
|
|
37
|
+
_globals['_TERRAIN']._serialized_end=773
|
|
38
|
+
_globals['_ARRAYOFTERRAINTERRAINTABLE']._serialized_start=775
|
|
39
|
+
_globals['_ARRAYOFTERRAINTERRAINTABLE']._serialized_end=803
|
|
40
|
+
# @@protoc_insertion_point(module_scope)
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
from google.protobuf.internal import enum_type_wrapper as _enum_type_wrapper
|
|
2
|
+
from google.protobuf import descriptor as _descriptor
|
|
3
|
+
from google.protobuf import message as _message
|
|
4
|
+
from typing import ClassVar as _ClassVar, Mapping as _Mapping, Optional as _Optional, Union as _Union
|
|
5
|
+
|
|
6
|
+
DESCRIPTOR: _descriptor.FileDescriptor
|
|
7
|
+
|
|
8
|
+
class TerrainType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
9
|
+
__slots__ = ()
|
|
10
|
+
TERRAIN_TYPE_UNKNOWN: _ClassVar[TerrainType]
|
|
11
|
+
TERRAIN_TYPE_BOREHOLES: _ClassVar[TerrainType]
|
|
12
|
+
TERRAIN_TYPE_HORIZONTAL_PLANE: _ClassVar[TerrainType]
|
|
13
|
+
TERRAIN_TYPE_INCLINED_PLANE: _ClassVar[TerrainType]
|
|
14
|
+
TERRAIN_TYPE_NO_TERRAIN: _ClassVar[TerrainType]
|
|
15
|
+
TERRAIN_TYPE_TABLE: _ClassVar[TerrainType]
|
|
16
|
+
TERRAIN_TYPE_UNKNOWN: TerrainType
|
|
17
|
+
TERRAIN_TYPE_BOREHOLES: TerrainType
|
|
18
|
+
TERRAIN_TYPE_HORIZONTAL_PLANE: TerrainType
|
|
19
|
+
TERRAIN_TYPE_INCLINED_PLANE: TerrainType
|
|
20
|
+
TERRAIN_TYPE_NO_TERRAIN: TerrainType
|
|
21
|
+
TERRAIN_TYPE_TABLE: TerrainType
|
|
22
|
+
|
|
23
|
+
class Terrain(_message.Message):
|
|
24
|
+
__slots__ = ("no", "type", "comment", "bounding_box_offset_x", "bounding_box_offset_y", "center_of_terrain_z", "rotation_around_Z", "consider_boreholes", "coordinate_system", "terrain_table", "id_for_export_import", "metadata_for_export_import")
|
|
25
|
+
NO_FIELD_NUMBER: _ClassVar[int]
|
|
26
|
+
TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
27
|
+
COMMENT_FIELD_NUMBER: _ClassVar[int]
|
|
28
|
+
BOUNDING_BOX_OFFSET_X_FIELD_NUMBER: _ClassVar[int]
|
|
29
|
+
BOUNDING_BOX_OFFSET_Y_FIELD_NUMBER: _ClassVar[int]
|
|
30
|
+
CENTER_OF_TERRAIN_Z_FIELD_NUMBER: _ClassVar[int]
|
|
31
|
+
ROTATION_AROUND_Z_FIELD_NUMBER: _ClassVar[int]
|
|
32
|
+
CONSIDER_BOREHOLES_FIELD_NUMBER: _ClassVar[int]
|
|
33
|
+
COORDINATE_SYSTEM_FIELD_NUMBER: _ClassVar[int]
|
|
34
|
+
TERRAIN_TABLE_FIELD_NUMBER: _ClassVar[int]
|
|
35
|
+
ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
36
|
+
METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
37
|
+
no: int
|
|
38
|
+
type: TerrainType
|
|
39
|
+
comment: str
|
|
40
|
+
bounding_box_offset_x: float
|
|
41
|
+
bounding_box_offset_y: float
|
|
42
|
+
center_of_terrain_z: float
|
|
43
|
+
rotation_around_Z: float
|
|
44
|
+
consider_boreholes: bool
|
|
45
|
+
coordinate_system: int
|
|
46
|
+
terrain_table: ArrayOfTerrainTerrainTable
|
|
47
|
+
id_for_export_import: str
|
|
48
|
+
metadata_for_export_import: str
|
|
49
|
+
def __init__(self, no: _Optional[int] = ..., type: _Optional[_Union[TerrainType, str]] = ..., comment: _Optional[str] = ..., bounding_box_offset_x: _Optional[float] = ..., bounding_box_offset_y: _Optional[float] = ..., center_of_terrain_z: _Optional[float] = ..., rotation_around_Z: _Optional[float] = ..., consider_boreholes: bool = ..., coordinate_system: _Optional[int] = ..., terrain_table: _Optional[_Union[ArrayOfTerrainTerrainTable, _Mapping]] = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
|
|
50
|
+
|
|
51
|
+
class ArrayOfTerrainTerrainTable(_message.Message):
|
|
52
|
+
__slots__ = ()
|
|
53
|
+
def __init__(self) -> None: ...
|
|
@@ -0,0 +1,54 @@
|
|
|
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/building_model/building_story.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/building_model/building_story.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'\n3dlubal/api/rfem/building_model/building_story.proto\x12\x1e\x64lubal.api.rfem.building_model\"\xee\x11\n\rBuildingStory\x12\n\n\x02no\x18\x01 \x01(\x05\x12\x44\n\x04type\x18\x02 \x01(\x0e\x32\x31.dlubal.api.rfem.building_model.BuildingStoryTypeH\x00\x88\x01\x01\x12&\n\x19user_defined_name_enabled\x18\x03 \x01(\x08H\x01\x88\x01\x01\x12\x11\n\x04name\x18\x04 \x01(\tH\x02\x88\x01\x01\x12\x15\n\x08story_no\x18\x05 \x01(\x05H\x03\x88\x01\x01\x12\x16\n\televation\x18\x06 \x01(\x01H\x04\x88\x01\x01\x12\x1d\n\x10\x62ottom_elevation\x18\x07 \x01(\x01H\x05\x88\x01\x01\x12\x13\n\x06height\x18\x08 \x01(\x01H\x06\x88\x01\x01\x12\x1c\n\x0fmodified_height\x18\t \x01(\x01H\x07\x88\x01\x01\x12\x16\n\tthickness\x18\n \x01(\x01H\x08\x88\x01\x01\x12X\n\x04info\x18\x0b \x01(\x0b\x32\x45.dlubal.api.rfem.building_model.ArrayOfBuildingStoryInfoAndChildItemsH\t\x88\x01\x01\x12\x14\n\x07\x63omment\x18\x0c \x01(\tH\n\x88\x01\x01\x12\x63\n\ntotal_info\x18\r \x01(\x0b\x32J.dlubal.api.rfem.building_model.ArrayOfBuildingStoryTotalInfoAndChildItemsH\x0b\x88\x01\x01\x12\x62\n\x14modify_geometry_type\x18\x0e \x01(\x0e\x32?.dlubal.api.rfem.building_model.BuildingStoryModifyGeometryTypeH\x0c\x88\x01\x01\x12W\n\x0ethickness_type\x18\x0f \x01(\x0e\x32:.dlubal.api.rfem.building_model.BuildingStoryThicknessTypeH\r\x88\x01\x01\x12`\n\x13slab_stiffness_type\x18\x10 \x01(\x0e\x32>.dlubal.api.rfem.building_model.BuildingStorySlabStiffnessTypeH\x0e\x88\x01\x01\x12\x62\n\x14\x66loor_stiffness_type\x18\x11 \x01(\x0e\x32?.dlubal.api.rfem.building_model.BuildingStoryFloorStiffnessTypeH\x0f\x88\x01\x01\x12(\n\x1bvertical_result_line_active\x18\x12 \x01(\x08H\x10\x88\x01\x01\x12,\n\x1fvertical_result_line_position_x\x18\x13 \x01(\x01H\x11\x88\x01\x01\x12,\n\x1fvertical_result_line_position_y\x18\x14 \x01(\x01H\x12\x88\x01\x01\x12*\n\x1dvertical_result_line_relative\x18\x15 \x01(\x08H\x13\x88\x01\x01\x12\x35\n(vertical_result_line_relative_position_x\x18\x16 \x01(\x01H\x14\x88\x01\x01\x12\x35\n(vertical_result_line_relative_position_y\x18\x17 \x01(\x01H\x15\x88\x01\x01\x12\x11\n\x04mass\x18\x18 \x01(\x01H\x16\x88\x01\x01\x12 \n\x13\x63\x65nter_of_gravity_x\x18\x19 \x01(\x01H\x17\x88\x01\x01\x12 \n\x13\x63\x65nter_of_gravity_y\x18\x1a \x01(\x01H\x18\x88\x01\x01\x12^\n\x12line_support_model\x18\x1b \x01(\x0e\x32=.dlubal.api.rfem.building_model.BuildingStoryLineSupportModelH\x19\x88\x01\x01\x12`\n\x13nodal_support_model\x18\x1c \x01(\x0e\x32>.dlubal.api.rfem.building_model.BuildingStoryNodalSupportModelH\x1a\x88\x01\x01\x12(\n\x1b\x62uilding_stories_zero_value\x18\x1d \x01(\x01H\x1b\x88\x01\x01\x12!\n\x14id_for_export_import\x18\x1e \x01(\tH\x1c\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\x1f \x01(\tH\x1d\x88\x01\x01\x42\x07\n\x05_typeB\x1c\n\x1a_user_defined_name_enabledB\x07\n\x05_nameB\x0b\n\t_story_noB\x0c\n\n_elevationB\x13\n\x11_bottom_elevationB\t\n\x07_heightB\x12\n\x10_modified_heightB\x0c\n\n_thicknessB\x07\n\x05_infoB\n\n\x08_commentB\r\n\x0b_total_infoB\x17\n\x15_modify_geometry_typeB\x11\n\x0f_thickness_typeB\x16\n\x14_slab_stiffness_typeB\x17\n\x15_floor_stiffness_typeB\x1e\n\x1c_vertical_result_line_activeB\"\n _vertical_result_line_position_xB\"\n _vertical_result_line_position_yB \n\x1e_vertical_result_line_relativeB+\n)_vertical_result_line_relative_position_xB+\n)_vertical_result_line_relative_position_yB\x07\n\x05_massB\x16\n\x14_center_of_gravity_xB\x16\n\x14_center_of_gravity_yB\x15\n\x13_line_support_modelB\x16\n\x14_nodal_support_modelB\x1e\n\x1c_building_stories_zero_valueB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_import\"\'\n%ArrayOfBuildingStoryInfoAndChildItems\",\n*ArrayOfBuildingStoryTotalInfoAndChildItems*V\n\x11\x42uildingStoryType\x12\x1f\n\x1b\x42UILDING_STORY_TYPE_UNKNOWN\x10\x00\x12 \n\x1c\x42UILDING_STORY_TYPE_STANDARD\x10\x01*\x8b\x02\n\x1f\x42uildingStoryModifyGeometryType\x12\x32\n.BUILDING_STORY_MODIFY_GEOMETRY_TYPE_DO_NOTHING\x10\x00\x12?\n;BUILDING_STORY_MODIFY_GEOMETRY_TYPE_CONST_FROM_STORY_GROUND\x10\x02\x12=\n9BUILDING_STORY_MODIFY_GEOMETRY_TYPE_CONST_FROM_STORY_ROOF\x10\x01\x12\x34\n0BUILDING_STORY_MODIFY_GEOMETRY_TYPE_PROPORTIONAL\x10\x03*\x80\x01\n\x1a\x42uildingStoryThicknessType\x12\x32\n.BUILDING_STORY_THICKNESS_TYPE_EFFECTIVE_HEIGHT\x10\x00\x12.\n*BUILDING_STORY_THICKNESS_TYPE_CLEAR_HEIGHT\x10\x01*\x89\x01\n\x1e\x42uildingStorySlabStiffnessType\x12/\n+BUILDING_STORY_SLAB_STIFFNESS_TYPE_STANDARD\x10\x00\x12\x36\n2BUILDING_STORY_SLAB_STIFFNESS_TYPE_RIGID_DIAPHRAGM\x10\x01*\xfb\x01\n\x1f\x42uildingStoryFloorStiffnessType\x12\x30\n,BUILDING_STORY_FLOOR_STIFFNESS_TYPE_STANDARD\x10\x00\x12:\n6BUILDING_STORY_FLOOR_STIFFNESS_TYPE_FLEXIBLE_DIAPHRAGM\x10\x04\x12\x37\n3BUILDING_STORY_FLOOR_STIFFNESS_TYPE_RIGID_DIAPHRAGM\x10\x02\x12\x31\n-BUILDING_STORY_FLOOR_STIFFNESS_TYPE_SEMIRIGID\x10\x03*\x99\x02\n\x1d\x42uildingStoryLineSupportModel\x12,\n(BUILDING_STORY_LINE_SUPPORT_MODEL_HINGED\x10\x00\x12\x31\n-BUILDING_STORY_LINE_SUPPORT_MODEL_HINGE_HINGE\x10\x04\x12\x31\n-BUILDING_STORY_LINE_SUPPORT_MODEL_HINGE_RIGID\x10\x02\x12\x31\n-BUILDING_STORY_LINE_SUPPORT_MODEL_RIGID_HINGE\x10\x03\x12\x31\n-BUILDING_STORY_LINE_SUPPORT_MODEL_RIGID_RIGID\x10\x01*\xe0\x02\n\x1e\x42uildingStoryNodalSupportModel\x12-\n)BUILDING_STORY_NODAL_SUPPORT_MODEL_HINGED\x10\x00\x12?\n;BUILDING_STORY_NODAL_SUPPORT_MODEL_ACCORDING_TO_MEMBER_TYPE\x10\x05\x12\x32\n.BUILDING_STORY_NODAL_SUPPORT_MODEL_HINGE_HINGE\x10\x04\x12\x32\n.BUILDING_STORY_NODAL_SUPPORT_MODEL_HINGE_RIGID\x10\x02\x12\x32\n.BUILDING_STORY_NODAL_SUPPORT_MODEL_RIGID_HINGE\x10\x03\x12\x32\n.BUILDING_STORY_NODAL_SUPPORT_MODEL_RIGID_RIGID\x10\x01\x62\x06proto3')
|
|
28
|
+
|
|
29
|
+
_globals = globals()
|
|
30
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
31
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.building_model.building_story_pb2', _globals)
|
|
32
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
33
|
+
DESCRIPTOR._loaded_options = None
|
|
34
|
+
_globals['_BUILDINGSTORYTYPE']._serialized_start=2463
|
|
35
|
+
_globals['_BUILDINGSTORYTYPE']._serialized_end=2549
|
|
36
|
+
_globals['_BUILDINGSTORYMODIFYGEOMETRYTYPE']._serialized_start=2552
|
|
37
|
+
_globals['_BUILDINGSTORYMODIFYGEOMETRYTYPE']._serialized_end=2819
|
|
38
|
+
_globals['_BUILDINGSTORYTHICKNESSTYPE']._serialized_start=2822
|
|
39
|
+
_globals['_BUILDINGSTORYTHICKNESSTYPE']._serialized_end=2950
|
|
40
|
+
_globals['_BUILDINGSTORYSLABSTIFFNESSTYPE']._serialized_start=2953
|
|
41
|
+
_globals['_BUILDINGSTORYSLABSTIFFNESSTYPE']._serialized_end=3090
|
|
42
|
+
_globals['_BUILDINGSTORYFLOORSTIFFNESSTYPE']._serialized_start=3093
|
|
43
|
+
_globals['_BUILDINGSTORYFLOORSTIFFNESSTYPE']._serialized_end=3344
|
|
44
|
+
_globals['_BUILDINGSTORYLINESUPPORTMODEL']._serialized_start=3347
|
|
45
|
+
_globals['_BUILDINGSTORYLINESUPPORTMODEL']._serialized_end=3628
|
|
46
|
+
_globals['_BUILDINGSTORYNODALSUPPORTMODEL']._serialized_start=3631
|
|
47
|
+
_globals['_BUILDINGSTORYNODALSUPPORTMODEL']._serialized_end=3983
|
|
48
|
+
_globals['_BUILDINGSTORY']._serialized_start=88
|
|
49
|
+
_globals['_BUILDINGSTORY']._serialized_end=2374
|
|
50
|
+
_globals['_ARRAYOFBUILDINGSTORYINFOANDCHILDITEMS']._serialized_start=2376
|
|
51
|
+
_globals['_ARRAYOFBUILDINGSTORYINFOANDCHILDITEMS']._serialized_end=2415
|
|
52
|
+
_globals['_ARRAYOFBUILDINGSTORYTOTALINFOANDCHILDITEMS']._serialized_start=2417
|
|
53
|
+
_globals['_ARRAYOFBUILDINGSTORYTOTALINFOANDCHILDITEMS']._serialized_end=2461
|
|
54
|
+
# @@protoc_insertion_point(module_scope)
|
|
@@ -0,0 +1,151 @@
|
|
|
1
|
+
from google.protobuf.internal import enum_type_wrapper as _enum_type_wrapper
|
|
2
|
+
from google.protobuf import descriptor as _descriptor
|
|
3
|
+
from google.protobuf import message as _message
|
|
4
|
+
from typing import ClassVar as _ClassVar, Mapping as _Mapping, Optional as _Optional, Union as _Union
|
|
5
|
+
|
|
6
|
+
DESCRIPTOR: _descriptor.FileDescriptor
|
|
7
|
+
|
|
8
|
+
class BuildingStoryType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
9
|
+
__slots__ = ()
|
|
10
|
+
BUILDING_STORY_TYPE_UNKNOWN: _ClassVar[BuildingStoryType]
|
|
11
|
+
BUILDING_STORY_TYPE_STANDARD: _ClassVar[BuildingStoryType]
|
|
12
|
+
|
|
13
|
+
class BuildingStoryModifyGeometryType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
14
|
+
__slots__ = ()
|
|
15
|
+
BUILDING_STORY_MODIFY_GEOMETRY_TYPE_DO_NOTHING: _ClassVar[BuildingStoryModifyGeometryType]
|
|
16
|
+
BUILDING_STORY_MODIFY_GEOMETRY_TYPE_CONST_FROM_STORY_GROUND: _ClassVar[BuildingStoryModifyGeometryType]
|
|
17
|
+
BUILDING_STORY_MODIFY_GEOMETRY_TYPE_CONST_FROM_STORY_ROOF: _ClassVar[BuildingStoryModifyGeometryType]
|
|
18
|
+
BUILDING_STORY_MODIFY_GEOMETRY_TYPE_PROPORTIONAL: _ClassVar[BuildingStoryModifyGeometryType]
|
|
19
|
+
|
|
20
|
+
class BuildingStoryThicknessType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
21
|
+
__slots__ = ()
|
|
22
|
+
BUILDING_STORY_THICKNESS_TYPE_EFFECTIVE_HEIGHT: _ClassVar[BuildingStoryThicknessType]
|
|
23
|
+
BUILDING_STORY_THICKNESS_TYPE_CLEAR_HEIGHT: _ClassVar[BuildingStoryThicknessType]
|
|
24
|
+
|
|
25
|
+
class BuildingStorySlabStiffnessType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
26
|
+
__slots__ = ()
|
|
27
|
+
BUILDING_STORY_SLAB_STIFFNESS_TYPE_STANDARD: _ClassVar[BuildingStorySlabStiffnessType]
|
|
28
|
+
BUILDING_STORY_SLAB_STIFFNESS_TYPE_RIGID_DIAPHRAGM: _ClassVar[BuildingStorySlabStiffnessType]
|
|
29
|
+
|
|
30
|
+
class BuildingStoryFloorStiffnessType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
31
|
+
__slots__ = ()
|
|
32
|
+
BUILDING_STORY_FLOOR_STIFFNESS_TYPE_STANDARD: _ClassVar[BuildingStoryFloorStiffnessType]
|
|
33
|
+
BUILDING_STORY_FLOOR_STIFFNESS_TYPE_FLEXIBLE_DIAPHRAGM: _ClassVar[BuildingStoryFloorStiffnessType]
|
|
34
|
+
BUILDING_STORY_FLOOR_STIFFNESS_TYPE_RIGID_DIAPHRAGM: _ClassVar[BuildingStoryFloorStiffnessType]
|
|
35
|
+
BUILDING_STORY_FLOOR_STIFFNESS_TYPE_SEMIRIGID: _ClassVar[BuildingStoryFloorStiffnessType]
|
|
36
|
+
|
|
37
|
+
class BuildingStoryLineSupportModel(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
38
|
+
__slots__ = ()
|
|
39
|
+
BUILDING_STORY_LINE_SUPPORT_MODEL_HINGED: _ClassVar[BuildingStoryLineSupportModel]
|
|
40
|
+
BUILDING_STORY_LINE_SUPPORT_MODEL_HINGE_HINGE: _ClassVar[BuildingStoryLineSupportModel]
|
|
41
|
+
BUILDING_STORY_LINE_SUPPORT_MODEL_HINGE_RIGID: _ClassVar[BuildingStoryLineSupportModel]
|
|
42
|
+
BUILDING_STORY_LINE_SUPPORT_MODEL_RIGID_HINGE: _ClassVar[BuildingStoryLineSupportModel]
|
|
43
|
+
BUILDING_STORY_LINE_SUPPORT_MODEL_RIGID_RIGID: _ClassVar[BuildingStoryLineSupportModel]
|
|
44
|
+
|
|
45
|
+
class BuildingStoryNodalSupportModel(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
46
|
+
__slots__ = ()
|
|
47
|
+
BUILDING_STORY_NODAL_SUPPORT_MODEL_HINGED: _ClassVar[BuildingStoryNodalSupportModel]
|
|
48
|
+
BUILDING_STORY_NODAL_SUPPORT_MODEL_ACCORDING_TO_MEMBER_TYPE: _ClassVar[BuildingStoryNodalSupportModel]
|
|
49
|
+
BUILDING_STORY_NODAL_SUPPORT_MODEL_HINGE_HINGE: _ClassVar[BuildingStoryNodalSupportModel]
|
|
50
|
+
BUILDING_STORY_NODAL_SUPPORT_MODEL_HINGE_RIGID: _ClassVar[BuildingStoryNodalSupportModel]
|
|
51
|
+
BUILDING_STORY_NODAL_SUPPORT_MODEL_RIGID_HINGE: _ClassVar[BuildingStoryNodalSupportModel]
|
|
52
|
+
BUILDING_STORY_NODAL_SUPPORT_MODEL_RIGID_RIGID: _ClassVar[BuildingStoryNodalSupportModel]
|
|
53
|
+
BUILDING_STORY_TYPE_UNKNOWN: BuildingStoryType
|
|
54
|
+
BUILDING_STORY_TYPE_STANDARD: BuildingStoryType
|
|
55
|
+
BUILDING_STORY_MODIFY_GEOMETRY_TYPE_DO_NOTHING: BuildingStoryModifyGeometryType
|
|
56
|
+
BUILDING_STORY_MODIFY_GEOMETRY_TYPE_CONST_FROM_STORY_GROUND: BuildingStoryModifyGeometryType
|
|
57
|
+
BUILDING_STORY_MODIFY_GEOMETRY_TYPE_CONST_FROM_STORY_ROOF: BuildingStoryModifyGeometryType
|
|
58
|
+
BUILDING_STORY_MODIFY_GEOMETRY_TYPE_PROPORTIONAL: BuildingStoryModifyGeometryType
|
|
59
|
+
BUILDING_STORY_THICKNESS_TYPE_EFFECTIVE_HEIGHT: BuildingStoryThicknessType
|
|
60
|
+
BUILDING_STORY_THICKNESS_TYPE_CLEAR_HEIGHT: BuildingStoryThicknessType
|
|
61
|
+
BUILDING_STORY_SLAB_STIFFNESS_TYPE_STANDARD: BuildingStorySlabStiffnessType
|
|
62
|
+
BUILDING_STORY_SLAB_STIFFNESS_TYPE_RIGID_DIAPHRAGM: BuildingStorySlabStiffnessType
|
|
63
|
+
BUILDING_STORY_FLOOR_STIFFNESS_TYPE_STANDARD: BuildingStoryFloorStiffnessType
|
|
64
|
+
BUILDING_STORY_FLOOR_STIFFNESS_TYPE_FLEXIBLE_DIAPHRAGM: BuildingStoryFloorStiffnessType
|
|
65
|
+
BUILDING_STORY_FLOOR_STIFFNESS_TYPE_RIGID_DIAPHRAGM: BuildingStoryFloorStiffnessType
|
|
66
|
+
BUILDING_STORY_FLOOR_STIFFNESS_TYPE_SEMIRIGID: BuildingStoryFloorStiffnessType
|
|
67
|
+
BUILDING_STORY_LINE_SUPPORT_MODEL_HINGED: BuildingStoryLineSupportModel
|
|
68
|
+
BUILDING_STORY_LINE_SUPPORT_MODEL_HINGE_HINGE: BuildingStoryLineSupportModel
|
|
69
|
+
BUILDING_STORY_LINE_SUPPORT_MODEL_HINGE_RIGID: BuildingStoryLineSupportModel
|
|
70
|
+
BUILDING_STORY_LINE_SUPPORT_MODEL_RIGID_HINGE: BuildingStoryLineSupportModel
|
|
71
|
+
BUILDING_STORY_LINE_SUPPORT_MODEL_RIGID_RIGID: BuildingStoryLineSupportModel
|
|
72
|
+
BUILDING_STORY_NODAL_SUPPORT_MODEL_HINGED: BuildingStoryNodalSupportModel
|
|
73
|
+
BUILDING_STORY_NODAL_SUPPORT_MODEL_ACCORDING_TO_MEMBER_TYPE: BuildingStoryNodalSupportModel
|
|
74
|
+
BUILDING_STORY_NODAL_SUPPORT_MODEL_HINGE_HINGE: BuildingStoryNodalSupportModel
|
|
75
|
+
BUILDING_STORY_NODAL_SUPPORT_MODEL_HINGE_RIGID: BuildingStoryNodalSupportModel
|
|
76
|
+
BUILDING_STORY_NODAL_SUPPORT_MODEL_RIGID_HINGE: BuildingStoryNodalSupportModel
|
|
77
|
+
BUILDING_STORY_NODAL_SUPPORT_MODEL_RIGID_RIGID: BuildingStoryNodalSupportModel
|
|
78
|
+
|
|
79
|
+
class BuildingStory(_message.Message):
|
|
80
|
+
__slots__ = ("no", "type", "user_defined_name_enabled", "name", "story_no", "elevation", "bottom_elevation", "height", "modified_height", "thickness", "info", "comment", "total_info", "modify_geometry_type", "thickness_type", "slab_stiffness_type", "floor_stiffness_type", "vertical_result_line_active", "vertical_result_line_position_x", "vertical_result_line_position_y", "vertical_result_line_relative", "vertical_result_line_relative_position_x", "vertical_result_line_relative_position_y", "mass", "center_of_gravity_x", "center_of_gravity_y", "line_support_model", "nodal_support_model", "building_stories_zero_value", "id_for_export_import", "metadata_for_export_import")
|
|
81
|
+
NO_FIELD_NUMBER: _ClassVar[int]
|
|
82
|
+
TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
83
|
+
USER_DEFINED_NAME_ENABLED_FIELD_NUMBER: _ClassVar[int]
|
|
84
|
+
NAME_FIELD_NUMBER: _ClassVar[int]
|
|
85
|
+
STORY_NO_FIELD_NUMBER: _ClassVar[int]
|
|
86
|
+
ELEVATION_FIELD_NUMBER: _ClassVar[int]
|
|
87
|
+
BOTTOM_ELEVATION_FIELD_NUMBER: _ClassVar[int]
|
|
88
|
+
HEIGHT_FIELD_NUMBER: _ClassVar[int]
|
|
89
|
+
MODIFIED_HEIGHT_FIELD_NUMBER: _ClassVar[int]
|
|
90
|
+
THICKNESS_FIELD_NUMBER: _ClassVar[int]
|
|
91
|
+
INFO_FIELD_NUMBER: _ClassVar[int]
|
|
92
|
+
COMMENT_FIELD_NUMBER: _ClassVar[int]
|
|
93
|
+
TOTAL_INFO_FIELD_NUMBER: _ClassVar[int]
|
|
94
|
+
MODIFY_GEOMETRY_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
95
|
+
THICKNESS_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
96
|
+
SLAB_STIFFNESS_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
97
|
+
FLOOR_STIFFNESS_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
98
|
+
VERTICAL_RESULT_LINE_ACTIVE_FIELD_NUMBER: _ClassVar[int]
|
|
99
|
+
VERTICAL_RESULT_LINE_POSITION_X_FIELD_NUMBER: _ClassVar[int]
|
|
100
|
+
VERTICAL_RESULT_LINE_POSITION_Y_FIELD_NUMBER: _ClassVar[int]
|
|
101
|
+
VERTICAL_RESULT_LINE_RELATIVE_FIELD_NUMBER: _ClassVar[int]
|
|
102
|
+
VERTICAL_RESULT_LINE_RELATIVE_POSITION_X_FIELD_NUMBER: _ClassVar[int]
|
|
103
|
+
VERTICAL_RESULT_LINE_RELATIVE_POSITION_Y_FIELD_NUMBER: _ClassVar[int]
|
|
104
|
+
MASS_FIELD_NUMBER: _ClassVar[int]
|
|
105
|
+
CENTER_OF_GRAVITY_X_FIELD_NUMBER: _ClassVar[int]
|
|
106
|
+
CENTER_OF_GRAVITY_Y_FIELD_NUMBER: _ClassVar[int]
|
|
107
|
+
LINE_SUPPORT_MODEL_FIELD_NUMBER: _ClassVar[int]
|
|
108
|
+
NODAL_SUPPORT_MODEL_FIELD_NUMBER: _ClassVar[int]
|
|
109
|
+
BUILDING_STORIES_ZERO_VALUE_FIELD_NUMBER: _ClassVar[int]
|
|
110
|
+
ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
111
|
+
METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
112
|
+
no: int
|
|
113
|
+
type: BuildingStoryType
|
|
114
|
+
user_defined_name_enabled: bool
|
|
115
|
+
name: str
|
|
116
|
+
story_no: int
|
|
117
|
+
elevation: float
|
|
118
|
+
bottom_elevation: float
|
|
119
|
+
height: float
|
|
120
|
+
modified_height: float
|
|
121
|
+
thickness: float
|
|
122
|
+
info: ArrayOfBuildingStoryInfoAndChildItems
|
|
123
|
+
comment: str
|
|
124
|
+
total_info: ArrayOfBuildingStoryTotalInfoAndChildItems
|
|
125
|
+
modify_geometry_type: BuildingStoryModifyGeometryType
|
|
126
|
+
thickness_type: BuildingStoryThicknessType
|
|
127
|
+
slab_stiffness_type: BuildingStorySlabStiffnessType
|
|
128
|
+
floor_stiffness_type: BuildingStoryFloorStiffnessType
|
|
129
|
+
vertical_result_line_active: bool
|
|
130
|
+
vertical_result_line_position_x: float
|
|
131
|
+
vertical_result_line_position_y: float
|
|
132
|
+
vertical_result_line_relative: bool
|
|
133
|
+
vertical_result_line_relative_position_x: float
|
|
134
|
+
vertical_result_line_relative_position_y: float
|
|
135
|
+
mass: float
|
|
136
|
+
center_of_gravity_x: float
|
|
137
|
+
center_of_gravity_y: float
|
|
138
|
+
line_support_model: BuildingStoryLineSupportModel
|
|
139
|
+
nodal_support_model: BuildingStoryNodalSupportModel
|
|
140
|
+
building_stories_zero_value: float
|
|
141
|
+
id_for_export_import: str
|
|
142
|
+
metadata_for_export_import: str
|
|
143
|
+
def __init__(self, no: _Optional[int] = ..., type: _Optional[_Union[BuildingStoryType, str]] = ..., user_defined_name_enabled: bool = ..., name: _Optional[str] = ..., story_no: _Optional[int] = ..., elevation: _Optional[float] = ..., bottom_elevation: _Optional[float] = ..., height: _Optional[float] = ..., modified_height: _Optional[float] = ..., thickness: _Optional[float] = ..., info: _Optional[_Union[ArrayOfBuildingStoryInfoAndChildItems, _Mapping]] = ..., comment: _Optional[str] = ..., total_info: _Optional[_Union[ArrayOfBuildingStoryTotalInfoAndChildItems, _Mapping]] = ..., modify_geometry_type: _Optional[_Union[BuildingStoryModifyGeometryType, str]] = ..., thickness_type: _Optional[_Union[BuildingStoryThicknessType, str]] = ..., slab_stiffness_type: _Optional[_Union[BuildingStorySlabStiffnessType, str]] = ..., floor_stiffness_type: _Optional[_Union[BuildingStoryFloorStiffnessType, str]] = ..., vertical_result_line_active: bool = ..., vertical_result_line_position_x: _Optional[float] = ..., vertical_result_line_position_y: _Optional[float] = ..., vertical_result_line_relative: bool = ..., vertical_result_line_relative_position_x: _Optional[float] = ..., vertical_result_line_relative_position_y: _Optional[float] = ..., mass: _Optional[float] = ..., center_of_gravity_x: _Optional[float] = ..., center_of_gravity_y: _Optional[float] = ..., line_support_model: _Optional[_Union[BuildingStoryLineSupportModel, str]] = ..., nodal_support_model: _Optional[_Union[BuildingStoryNodalSupportModel, str]] = ..., building_stories_zero_value: _Optional[float] = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
|
|
144
|
+
|
|
145
|
+
class ArrayOfBuildingStoryInfoAndChildItems(_message.Message):
|
|
146
|
+
__slots__ = ()
|
|
147
|
+
def __init__(self) -> None: ...
|
|
148
|
+
|
|
149
|
+
class ArrayOfBuildingStoryTotalInfoAndChildItems(_message.Message):
|
|
150
|
+
__slots__ = ()
|
|
151
|
+
def __init__(self) -> None: ...
|
|
@@ -0,0 +1,41 @@
|
|
|
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/building_model/deep_beam.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/building_model/deep_beam.proto'
|
|
19
|
+
)
|
|
20
|
+
# @@protoc_insertion_point(imports)
|
|
21
|
+
|
|
22
|
+
_sym_db = _symbol_database.Default()
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
from dlubal.api.common import common_pb2 as dlubal_dot_api_dot_common_dot_common__pb2
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n.dlubal/api/rfem/building_model/deep_beam.proto\x12\x1e\x64lubal.api.rfem.building_model\x1a\x1e\x64lubal/api/common/common.proto\"\xb1\t\n\x08\x44\x65\x65pBeam\x12\x11\n\x04\x61rea\x18\x01 \x01(\x01H\x00\x88\x01\x01\x12;\n\x11\x63\x65nter_of_gravity\x18\x02 \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x01\x88\x01\x01\x12 \n\x13\x63\x65nter_of_gravity_x\x18\x03 \x01(\x01H\x02\x88\x01\x01\x12 \n\x13\x63\x65nter_of_gravity_y\x18\x04 \x01(\x01H\x03\x88\x01\x01\x12 \n\x13\x63\x65nter_of_gravity_z\x18\x05 \x01(\x01H\x04\x88\x01\x01\x12\x14\n\x07\x63omment\x18\x06 \x01(\tH\x05\x88\x01\x01\x12#\n\x16\x63reate_result_sections\x18\x07 \x01(\x08H\x06\x88\x01\x01\x12:\n-create_result_sections_in_all_member_location\x18\x08 \x01(\x08H\x07\x88\x01\x01\x12#\n\x16generating_object_info\x18\t \x01(\tH\x08\x88\x01\x01\x12\x19\n\x0cis_generated\x18\n \x01(\x08H\t\x88\x01\x01\x12\x11\n\x04mass\x18\x0b \x01(\x01H\n\x88\x01\x01\x12\x12\n\nmember_set\x18\x0c \x03(\x05\x12\x0f\n\x07members\x18\r \x03(\x05\x12\x11\n\x04name\x18\x0e \x01(\tH\x0b\x88\x01\x01\x12\n\n\x02no\x18\x0f \x01(\x05\x12\x17\n\x0fresult_sections\x18\x10 \x03(\x05\x12\x10\n\x08sections\x18\x11 \x03(\x05\x12N\n\x08segments\x18\x12 \x01(\x0b\x32\x37.dlubal.api.rfem.building_model.ArrayOfDeepBeamSegmentsH\x0c\x88\x01\x01\x12\x15\n\rsurface_cells\x18\x13 \x03(\x05\x12\x10\n\x08surfaces\x18\x14 \x03(\x05\x12?\n\x04type\x18\x15 \x01(\x0e\x32,.dlubal.api.rfem.building_model.DeepBeamTypeH\r\x88\x01\x01\x12&\n\x19user_defined_name_enabled\x18\x16 \x01(\x08H\x0e\x88\x01\x01\x12\x13\n\x06volume\x18\x17 \x01(\x01H\x0f\x88\x01\x01\x12!\n\x14id_for_export_import\x18\x18 \x01(\tH\x10\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\x19 \x01(\tH\x11\x88\x01\x01\x42\x07\n\x05_areaB\x14\n\x12_center_of_gravityB\x16\n\x14_center_of_gravity_xB\x16\n\x14_center_of_gravity_yB\x16\n\x14_center_of_gravity_zB\n\n\x08_commentB\x19\n\x17_create_result_sectionsB0\n._create_result_sections_in_all_member_locationB\x19\n\x17_generating_object_infoB\x0f\n\r_is_generatedB\x07\n\x05_massB\x07\n\x05_nameB\x0b\n\t_segmentsB\x07\n\x05_typeB\x1c\n\x1a_user_defined_name_enabledB\t\n\x07_volumeB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_import\"\x19\n\x17\x41rrayOfDeepBeamSegments*G\n\x0c\x44\x65\x65pBeamType\x12\x1a\n\x16\x44\x45\x45P_BEAM_TYPE_UNKNOWN\x10\x00\x12\x1b\n\x17\x44\x45\x45P_BEAM_TYPE_STANDARD\x10\x01\x62\x06proto3')
|
|
29
|
+
|
|
30
|
+
_globals = globals()
|
|
31
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
32
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.building_model.deep_beam_pb2', _globals)
|
|
33
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
34
|
+
DESCRIPTOR._loaded_options = None
|
|
35
|
+
_globals['_DEEPBEAMTYPE']._serialized_start=1345
|
|
36
|
+
_globals['_DEEPBEAMTYPE']._serialized_end=1416
|
|
37
|
+
_globals['_DEEPBEAM']._serialized_start=115
|
|
38
|
+
_globals['_DEEPBEAM']._serialized_end=1316
|
|
39
|
+
_globals['_ARRAYOFDEEPBEAMSEGMENTS']._serialized_start=1318
|
|
40
|
+
_globals['_ARRAYOFDEEPBEAMSEGMENTS']._serialized_end=1343
|
|
41
|
+
# @@protoc_insertion_point(module_scope)
|
|
@@ -0,0 +1,73 @@
|
|
|
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 DeepBeamType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
11
|
+
__slots__ = ()
|
|
12
|
+
DEEP_BEAM_TYPE_UNKNOWN: _ClassVar[DeepBeamType]
|
|
13
|
+
DEEP_BEAM_TYPE_STANDARD: _ClassVar[DeepBeamType]
|
|
14
|
+
DEEP_BEAM_TYPE_UNKNOWN: DeepBeamType
|
|
15
|
+
DEEP_BEAM_TYPE_STANDARD: DeepBeamType
|
|
16
|
+
|
|
17
|
+
class DeepBeam(_message.Message):
|
|
18
|
+
__slots__ = ("area", "center_of_gravity", "center_of_gravity_x", "center_of_gravity_y", "center_of_gravity_z", "comment", "create_result_sections", "create_result_sections_in_all_member_location", "generating_object_info", "is_generated", "mass", "member_set", "members", "name", "no", "result_sections", "sections", "segments", "surface_cells", "surfaces", "type", "user_defined_name_enabled", "volume", "id_for_export_import", "metadata_for_export_import")
|
|
19
|
+
AREA_FIELD_NUMBER: _ClassVar[int]
|
|
20
|
+
CENTER_OF_GRAVITY_FIELD_NUMBER: _ClassVar[int]
|
|
21
|
+
CENTER_OF_GRAVITY_X_FIELD_NUMBER: _ClassVar[int]
|
|
22
|
+
CENTER_OF_GRAVITY_Y_FIELD_NUMBER: _ClassVar[int]
|
|
23
|
+
CENTER_OF_GRAVITY_Z_FIELD_NUMBER: _ClassVar[int]
|
|
24
|
+
COMMENT_FIELD_NUMBER: _ClassVar[int]
|
|
25
|
+
CREATE_RESULT_SECTIONS_FIELD_NUMBER: _ClassVar[int]
|
|
26
|
+
CREATE_RESULT_SECTIONS_IN_ALL_MEMBER_LOCATION_FIELD_NUMBER: _ClassVar[int]
|
|
27
|
+
GENERATING_OBJECT_INFO_FIELD_NUMBER: _ClassVar[int]
|
|
28
|
+
IS_GENERATED_FIELD_NUMBER: _ClassVar[int]
|
|
29
|
+
MASS_FIELD_NUMBER: _ClassVar[int]
|
|
30
|
+
MEMBER_SET_FIELD_NUMBER: _ClassVar[int]
|
|
31
|
+
MEMBERS_FIELD_NUMBER: _ClassVar[int]
|
|
32
|
+
NAME_FIELD_NUMBER: _ClassVar[int]
|
|
33
|
+
NO_FIELD_NUMBER: _ClassVar[int]
|
|
34
|
+
RESULT_SECTIONS_FIELD_NUMBER: _ClassVar[int]
|
|
35
|
+
SECTIONS_FIELD_NUMBER: _ClassVar[int]
|
|
36
|
+
SEGMENTS_FIELD_NUMBER: _ClassVar[int]
|
|
37
|
+
SURFACE_CELLS_FIELD_NUMBER: _ClassVar[int]
|
|
38
|
+
SURFACES_FIELD_NUMBER: _ClassVar[int]
|
|
39
|
+
TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
40
|
+
USER_DEFINED_NAME_ENABLED_FIELD_NUMBER: _ClassVar[int]
|
|
41
|
+
VOLUME_FIELD_NUMBER: _ClassVar[int]
|
|
42
|
+
ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
43
|
+
METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
44
|
+
area: float
|
|
45
|
+
center_of_gravity: _common_pb2.Vector3d
|
|
46
|
+
center_of_gravity_x: float
|
|
47
|
+
center_of_gravity_y: float
|
|
48
|
+
center_of_gravity_z: float
|
|
49
|
+
comment: str
|
|
50
|
+
create_result_sections: bool
|
|
51
|
+
create_result_sections_in_all_member_location: bool
|
|
52
|
+
generating_object_info: str
|
|
53
|
+
is_generated: bool
|
|
54
|
+
mass: float
|
|
55
|
+
member_set: _containers.RepeatedScalarFieldContainer[int]
|
|
56
|
+
members: _containers.RepeatedScalarFieldContainer[int]
|
|
57
|
+
name: str
|
|
58
|
+
no: int
|
|
59
|
+
result_sections: _containers.RepeatedScalarFieldContainer[int]
|
|
60
|
+
sections: _containers.RepeatedScalarFieldContainer[int]
|
|
61
|
+
segments: ArrayOfDeepBeamSegments
|
|
62
|
+
surface_cells: _containers.RepeatedScalarFieldContainer[int]
|
|
63
|
+
surfaces: _containers.RepeatedScalarFieldContainer[int]
|
|
64
|
+
type: DeepBeamType
|
|
65
|
+
user_defined_name_enabled: bool
|
|
66
|
+
volume: float
|
|
67
|
+
id_for_export_import: str
|
|
68
|
+
metadata_for_export_import: str
|
|
69
|
+
def __init__(self, area: _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] = ..., comment: _Optional[str] = ..., create_result_sections: bool = ..., create_result_sections_in_all_member_location: bool = ..., generating_object_info: _Optional[str] = ..., is_generated: bool = ..., mass: _Optional[float] = ..., member_set: _Optional[_Iterable[int]] = ..., members: _Optional[_Iterable[int]] = ..., name: _Optional[str] = ..., no: _Optional[int] = ..., result_sections: _Optional[_Iterable[int]] = ..., sections: _Optional[_Iterable[int]] = ..., segments: _Optional[_Union[ArrayOfDeepBeamSegments, _Mapping]] = ..., surface_cells: _Optional[_Iterable[int]] = ..., surfaces: _Optional[_Iterable[int]] = ..., type: _Optional[_Union[DeepBeamType, str]] = ..., user_defined_name_enabled: bool = ..., volume: _Optional[float] = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
|
|
70
|
+
|
|
71
|
+
class ArrayOfDeepBeamSegments(_message.Message):
|
|
72
|
+
__slots__ = ()
|
|
73
|
+
def __init__(self) -> None: ...
|
|
@@ -0,0 +1,39 @@
|
|
|
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/building_model/floor_set.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/building_model/floor_set.proto'
|
|
19
|
+
)
|
|
20
|
+
# @@protoc_insertion_point(imports)
|
|
21
|
+
|
|
22
|
+
_sym_db = _symbol_database.Default()
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
from dlubal.api.common import common_pb2 as dlubal_dot_api_dot_common_dot_common__pb2
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n.dlubal/api/rfem/building_model/floor_set.proto\x12\x1e\x64lubal.api.rfem.building_model\x1a\x1e\x64lubal/api/common/common.proto\"\xf7\x06\n\x08\x46loorSet\x12\n\n\x02no\x18\x01 \x01(\x05\x12?\n\x04type\x18\x02 \x01(\x0e\x32,.dlubal.api.rfem.building_model.FloorSetTypeH\x00\x88\x01\x01\x12\x1b\n\x0e\x62uilding_story\x18\x03 \x01(\x05H\x01\x88\x01\x01\x12\x16\n\x0e\x66loor_surfaces\x18\x04 \x03(\x05\x12\x15\n\rfloor_members\x18\x05 \x03(\x05\x12\x1a\n\x12\x63onnected_surfaces\x18\x06 \x03(\x05\x12\x19\n\x11\x63onnected_members\x18\x07 \x03(\x05\x12\x14\n\x0c\x66loor_solids\x18\x08 \x03(\x05\x12\x11\n\x04\x61rea\x18\t \x01(\x01H\x02\x88\x01\x01\x12\x11\n\x04mass\x18\n \x01(\x01H\x03\x88\x01\x01\x12\x13\n\x06volume\x18\x0b \x01(\x01H\x04\x88\x01\x01\x12;\n\x11\x63\x65nter_of_gravity\x18\x0c \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x05\x88\x01\x01\x12 \n\x13\x63\x65nter_of_gravity_x\x18\r \x01(\x01H\x06\x88\x01\x01\x12 \n\x13\x63\x65nter_of_gravity_y\x18\x0e \x01(\x01H\x07\x88\x01\x01\x12 \n\x13\x63\x65nter_of_gravity_z\x18\x0f \x01(\x01H\x08\x88\x01\x01\x12\x14\n\x07\x63omment\x18\x10 \x01(\tH\t\x88\x01\x01\x12\x19\n\x0cis_generated\x18\x11 \x01(\x08H\n\x88\x01\x01\x12#\n\x16generating_object_info\x18\x12 \x01(\tH\x0b\x88\x01\x01\x12!\n\x14id_for_export_import\x18\x13 \x01(\tH\x0c\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\x14 \x01(\tH\r\x88\x01\x01\x42\x07\n\x05_typeB\x11\n\x0f_building_storyB\x07\n\x05_areaB\x07\n\x05_massB\t\n\x07_volumeB\x14\n\x12_center_of_gravityB\x16\n\x14_center_of_gravity_xB\x16\n\x14_center_of_gravity_yB\x16\n\x14_center_of_gravity_zB\n\n\x08_commentB\x0f\n\r_is_generatedB\x19\n\x17_generating_object_infoB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_import*G\n\x0c\x46loorSetType\x12\x1a\n\x16\x46LOOR_SET_TYPE_UNKNOWN\x10\x00\x12\x1b\n\x17\x46LOOR_SET_TYPE_STANDARD\x10\x01\x62\x06proto3')
|
|
29
|
+
|
|
30
|
+
_globals = globals()
|
|
31
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
32
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.building_model.floor_set_pb2', _globals)
|
|
33
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
34
|
+
DESCRIPTOR._loaded_options = None
|
|
35
|
+
_globals['_FLOORSETTYPE']._serialized_start=1004
|
|
36
|
+
_globals['_FLOORSETTYPE']._serialized_end=1075
|
|
37
|
+
_globals['_FLOORSET']._serialized_start=115
|
|
38
|
+
_globals['_FLOORSET']._serialized_end=1002
|
|
39
|
+
# @@protoc_insertion_point(module_scope)
|
|
@@ -0,0 +1,59 @@
|
|
|
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 FloorSetType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
11
|
+
__slots__ = ()
|
|
12
|
+
FLOOR_SET_TYPE_UNKNOWN: _ClassVar[FloorSetType]
|
|
13
|
+
FLOOR_SET_TYPE_STANDARD: _ClassVar[FloorSetType]
|
|
14
|
+
FLOOR_SET_TYPE_UNKNOWN: FloorSetType
|
|
15
|
+
FLOOR_SET_TYPE_STANDARD: FloorSetType
|
|
16
|
+
|
|
17
|
+
class FloorSet(_message.Message):
|
|
18
|
+
__slots__ = ("no", "type", "building_story", "floor_surfaces", "floor_members", "connected_surfaces", "connected_members", "floor_solids", "area", "mass", "volume", "center_of_gravity", "center_of_gravity_x", "center_of_gravity_y", "center_of_gravity_z", "comment", "is_generated", "generating_object_info", "id_for_export_import", "metadata_for_export_import")
|
|
19
|
+
NO_FIELD_NUMBER: _ClassVar[int]
|
|
20
|
+
TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
21
|
+
BUILDING_STORY_FIELD_NUMBER: _ClassVar[int]
|
|
22
|
+
FLOOR_SURFACES_FIELD_NUMBER: _ClassVar[int]
|
|
23
|
+
FLOOR_MEMBERS_FIELD_NUMBER: _ClassVar[int]
|
|
24
|
+
CONNECTED_SURFACES_FIELD_NUMBER: _ClassVar[int]
|
|
25
|
+
CONNECTED_MEMBERS_FIELD_NUMBER: _ClassVar[int]
|
|
26
|
+
FLOOR_SOLIDS_FIELD_NUMBER: _ClassVar[int]
|
|
27
|
+
AREA_FIELD_NUMBER: _ClassVar[int]
|
|
28
|
+
MASS_FIELD_NUMBER: _ClassVar[int]
|
|
29
|
+
VOLUME_FIELD_NUMBER: _ClassVar[int]
|
|
30
|
+
CENTER_OF_GRAVITY_FIELD_NUMBER: _ClassVar[int]
|
|
31
|
+
CENTER_OF_GRAVITY_X_FIELD_NUMBER: _ClassVar[int]
|
|
32
|
+
CENTER_OF_GRAVITY_Y_FIELD_NUMBER: _ClassVar[int]
|
|
33
|
+
CENTER_OF_GRAVITY_Z_FIELD_NUMBER: _ClassVar[int]
|
|
34
|
+
COMMENT_FIELD_NUMBER: _ClassVar[int]
|
|
35
|
+
IS_GENERATED_FIELD_NUMBER: _ClassVar[int]
|
|
36
|
+
GENERATING_OBJECT_INFO_FIELD_NUMBER: _ClassVar[int]
|
|
37
|
+
ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
38
|
+
METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
39
|
+
no: int
|
|
40
|
+
type: FloorSetType
|
|
41
|
+
building_story: int
|
|
42
|
+
floor_surfaces: _containers.RepeatedScalarFieldContainer[int]
|
|
43
|
+
floor_members: _containers.RepeatedScalarFieldContainer[int]
|
|
44
|
+
connected_surfaces: _containers.RepeatedScalarFieldContainer[int]
|
|
45
|
+
connected_members: _containers.RepeatedScalarFieldContainer[int]
|
|
46
|
+
floor_solids: _containers.RepeatedScalarFieldContainer[int]
|
|
47
|
+
area: float
|
|
48
|
+
mass: float
|
|
49
|
+
volume: float
|
|
50
|
+
center_of_gravity: _common_pb2.Vector3d
|
|
51
|
+
center_of_gravity_x: float
|
|
52
|
+
center_of_gravity_y: float
|
|
53
|
+
center_of_gravity_z: float
|
|
54
|
+
comment: str
|
|
55
|
+
is_generated: bool
|
|
56
|
+
generating_object_info: str
|
|
57
|
+
id_for_export_import: str
|
|
58
|
+
metadata_for_export_import: str
|
|
59
|
+
def __init__(self, no: _Optional[int] = ..., type: _Optional[_Union[FloorSetType, str]] = ..., building_story: _Optional[int] = ..., floor_surfaces: _Optional[_Iterable[int]] = ..., floor_members: _Optional[_Iterable[int]] = ..., connected_surfaces: _Optional[_Iterable[int]] = ..., connected_members: _Optional[_Iterable[int]] = ..., floor_solids: _Optional[_Iterable[int]] = ..., area: _Optional[float] = ..., mass: _Optional[float] = ..., volume: _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] = ..., comment: _Optional[str] = ..., is_generated: bool = ..., generating_object_info: _Optional[str] = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
|
|
@@ -0,0 +1,41 @@
|
|
|
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/building_model/shear_wall.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/building_model/shear_wall.proto'
|
|
19
|
+
)
|
|
20
|
+
# @@protoc_insertion_point(imports)
|
|
21
|
+
|
|
22
|
+
_sym_db = _symbol_database.Default()
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
from dlubal.api.common import common_pb2 as dlubal_dot_api_dot_common_dot_common__pb2
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n/dlubal/api/rfem/building_model/shear_wall.proto\x12\x1e\x64lubal.api.rfem.building_model\x1a\x1e\x64lubal/api/common/common.proto\"\xb4\t\n\tShearWall\x12\n\n\x02no\x18\x01 \x01(\x05\x12@\n\x04type\x18\x02 \x01(\x0e\x32-.dlubal.api.rfem.building_model.ShearWallTypeH\x00\x88\x01\x01\x12&\n\x19user_defined_name_enabled\x18\x03 \x01(\x08H\x01\x88\x01\x01\x12\x11\n\x04name\x18\x04 \x01(\tH\x02\x88\x01\x01\x12\x10\n\x08surfaces\x18\x05 \x03(\x05\x12\x15\n\rsurface_cells\x18\x06 \x03(\x05\x12\x11\n\x04\x61rea\x18\x07 \x01(\x01H\x03\x88\x01\x01\x12\x11\n\x04mass\x18\x08 \x01(\x01H\x04\x88\x01\x01\x12\x13\n\x06volume\x18\t \x01(\x01H\x05\x88\x01\x01\x12;\n\x11\x63\x65nter_of_gravity\x18\n \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x06\x88\x01\x01\x12 \n\x13\x63\x65nter_of_gravity_x\x18\x0b \x01(\x01H\x07\x88\x01\x01\x12 \n\x13\x63\x65nter_of_gravity_y\x18\x0c \x01(\x01H\x08\x88\x01\x01\x12 \n\x13\x63\x65nter_of_gravity_z\x18\r \x01(\x01H\t\x88\x01\x01\x12O\n\x08segments\x18\x0e \x01(\x0b\x32\x38.dlubal.api.rfem.building_model.ArrayOfShearWallSegmentsH\n\x88\x01\x01\x12\x12\n\nmember_set\x18\x0f \x03(\x05\x12\x0f\n\x07members\x18\x10 \x03(\x05\x12\x10\n\x08sections\x18\x11 \x03(\x05\x12\x17\n\x0fresult_sections\x18\x12 \x03(\x05\x12\x14\n\x07\x63omment\x18\x13 \x01(\tH\x0b\x88\x01\x01\x12\x19\n\x0cis_generated\x18\x14 \x01(\x08H\x0c\x88\x01\x01\x12#\n\x16generating_object_info\x18\x15 \x01(\tH\r\x88\x01\x01\x12#\n\x16\x63reate_result_sections\x18\x16 \x01(\x08H\x0e\x88\x01\x01\x12:\n-create_result_sections_in_all_member_location\x18\x17 \x01(\x08H\x0f\x88\x01\x01\x12!\n\x14id_for_export_import\x18\x18 \x01(\tH\x10\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\x19 \x01(\tH\x11\x88\x01\x01\x42\x07\n\x05_typeB\x1c\n\x1a_user_defined_name_enabledB\x07\n\x05_nameB\x07\n\x05_areaB\x07\n\x05_massB\t\n\x07_volumeB\x14\n\x12_center_of_gravityB\x16\n\x14_center_of_gravity_xB\x16\n\x14_center_of_gravity_yB\x16\n\x14_center_of_gravity_zB\x0b\n\t_segmentsB\n\n\x08_commentB\x0f\n\r_is_generatedB\x19\n\x17_generating_object_infoB\x19\n\x17_create_result_sectionsB0\n._create_result_sections_in_all_member_locationB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_import\"\x1a\n\x18\x41rrayOfShearWallSegments*J\n\rShearWallType\x12\x1b\n\x17SHEAR_WALL_TYPE_UNKNOWN\x10\x00\x12\x1c\n\x18SHEAR_WALL_TYPE_STANDARD\x10\x01\x62\x06proto3')
|
|
29
|
+
|
|
30
|
+
_globals = globals()
|
|
31
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
32
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.building_model.shear_wall_pb2', _globals)
|
|
33
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
34
|
+
DESCRIPTOR._loaded_options = None
|
|
35
|
+
_globals['_SHEARWALLTYPE']._serialized_start=1350
|
|
36
|
+
_globals['_SHEARWALLTYPE']._serialized_end=1424
|
|
37
|
+
_globals['_SHEARWALL']._serialized_start=116
|
|
38
|
+
_globals['_SHEARWALL']._serialized_end=1320
|
|
39
|
+
_globals['_ARRAYOFSHEARWALLSEGMENTS']._serialized_start=1322
|
|
40
|
+
_globals['_ARRAYOFSHEARWALLSEGMENTS']._serialized_end=1348
|
|
41
|
+
# @@protoc_insertion_point(module_scope)
|