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,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/structure_advanced/intersection.proto
|
|
5
|
+
# Protobuf Python Version: 5.28.1
|
|
6
|
+
"""Generated protocol buffer code."""
|
|
7
|
+
from google.protobuf import descriptor as _descriptor
|
|
8
|
+
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
9
|
+
from google.protobuf import runtime_version as _runtime_version
|
|
10
|
+
from google.protobuf import symbol_database as _symbol_database
|
|
11
|
+
from google.protobuf.internal import builder as _builder
|
|
12
|
+
_runtime_version.ValidateProtobufRuntimeVersion(
|
|
13
|
+
_runtime_version.Domain.PUBLIC,
|
|
14
|
+
5,
|
|
15
|
+
28,
|
|
16
|
+
1,
|
|
17
|
+
'',
|
|
18
|
+
'dlubal/api/rfem/structure_advanced/intersection.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'\n5dlubal/api/rfem/structure_advanced/intersection.proto\x12\"dlubal.api.rfem.structure_advanced\"\xbe\x02\n\x0cIntersection\x12\n\n\x02no\x18\x01 \x01(\x05\x12\x14\n\x07\x63omment\x18\x02 \x01(\tH\x00\x88\x01\x01\x12\x17\n\x0fgenerated_lines\x18\x03 \x03(\x05\x12\x17\n\x0fgenerated_nodes\x18\x04 \x03(\x05\x12\x16\n\tsurface_a\x18\x05 \x01(\x05H\x01\x88\x01\x01\x12\x16\n\tsurface_b\x18\x06 \x01(\x05H\x02\x88\x01\x01\x12!\n\x14id_for_export_import\x18\x07 \x01(\tH\x03\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\x08 \x01(\tH\x04\x88\x01\x01\x42\n\n\x08_commentB\x0c\n\n_surface_aB\x0c\n\n_surface_bB\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.structure_advanced.intersection_pb2', _globals)
|
|
32
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
33
|
+
DESCRIPTOR._loaded_options = None
|
|
34
|
+
_globals['_INTERSECTION']._serialized_start=94
|
|
35
|
+
_globals['_INTERSECTION']._serialized_end=412
|
|
36
|
+
# @@protoc_insertion_point(module_scope)
|
|
@@ -0,0 +1,26 @@
|
|
|
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 Intersection(_message.Message):
|
|
9
|
+
__slots__ = ("no", "comment", "generated_lines", "generated_nodes", "surface_a", "surface_b", "id_for_export_import", "metadata_for_export_import")
|
|
10
|
+
NO_FIELD_NUMBER: _ClassVar[int]
|
|
11
|
+
COMMENT_FIELD_NUMBER: _ClassVar[int]
|
|
12
|
+
GENERATED_LINES_FIELD_NUMBER: _ClassVar[int]
|
|
13
|
+
GENERATED_NODES_FIELD_NUMBER: _ClassVar[int]
|
|
14
|
+
SURFACE_A_FIELD_NUMBER: _ClassVar[int]
|
|
15
|
+
SURFACE_B_FIELD_NUMBER: _ClassVar[int]
|
|
16
|
+
ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
17
|
+
METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
18
|
+
no: int
|
|
19
|
+
comment: str
|
|
20
|
+
generated_lines: _containers.RepeatedScalarFieldContainer[int]
|
|
21
|
+
generated_nodes: _containers.RepeatedScalarFieldContainer[int]
|
|
22
|
+
surface_a: int
|
|
23
|
+
surface_b: int
|
|
24
|
+
id_for_export_import: str
|
|
25
|
+
metadata_for_export_import: str
|
|
26
|
+
def __init__(self, no: _Optional[int] = ..., comment: _Optional[str] = ..., generated_lines: _Optional[_Iterable[int]] = ..., generated_nodes: _Optional[_Iterable[int]] = ..., surface_a: _Optional[int] = ..., surface_b: _Optional[int] = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
|
|
@@ -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/structure_advanced/line_release.proto
|
|
5
|
+
# Protobuf Python Version: 5.28.1
|
|
6
|
+
"""Generated protocol buffer code."""
|
|
7
|
+
from google.protobuf import descriptor as _descriptor
|
|
8
|
+
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
9
|
+
from google.protobuf import runtime_version as _runtime_version
|
|
10
|
+
from google.protobuf import symbol_database as _symbol_database
|
|
11
|
+
from google.protobuf.internal import builder as _builder
|
|
12
|
+
_runtime_version.ValidateProtobufRuntimeVersion(
|
|
13
|
+
_runtime_version.Domain.PUBLIC,
|
|
14
|
+
5,
|
|
15
|
+
28,
|
|
16
|
+
1,
|
|
17
|
+
'',
|
|
18
|
+
'dlubal/api/rfem/structure_advanced/line_release.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'\n5dlubal/api/rfem/structure_advanced/line_release.proto\x12\"dlubal.api.rfem.structure_advanced\"\x8b\x07\n\x0bLineRelease\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\r\n\x05lines\x18\x04 \x03(\x05\x12\x1e\n\x11line_release_type\x18\x05 \x01(\x05H\x02\x88\x01\x01\x12]\n\x10release_location\x18\x06 \x01(\x0e\x32>.dlubal.api.rfem.structure_advanced.LineReleaseReleaseLocationH\x03\x88\x01\x01\x12\x18\n\x10released_members\x18\x07 \x03(\x05\x12\x19\n\x11released_surfaces\x18\x08 \x03(\x05\x12\x17\n\x0freleased_solids\x18\t \x03(\x05\x12%\n\x1duse_nodes_as_definition_nodes\x18\n \x03(\x05\x12\"\n\x1agenerated_released_objects\x18\x0b \x03(\x05\x12\x18\n\x0b\x64\x65\x61\x63tivated\x18\x0c \x01(\x08H\x04\x88\x01\x01\x12\x30\n#define_release_type_for_each_object\x18\r \x01(\x08H\x05\x88\x01\x01\x12t\n\x19\x64\x65\x66ine_release_type_table\x18\x0e \x01(\x0b\x32L.dlubal.api.rfem.structure_advanced.ArrayOfLineReleaseDefineReleaseTypeTableH\x06\x88\x01\x01\x12\x14\n\x07\x63omment\x18\x0f \x01(\tH\x07\x88\x01\x01\x12!\n\x14id_for_export_import\x18\x10 \x01(\tH\x08\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\x11 \x01(\tH\t\x88\x01\x01\x42\x1c\n\x1a_user_defined_name_enabledB\x07\n\x05_nameB\x14\n\x12_line_release_typeB\x13\n\x11_release_locationB\x0e\n\x0c_deactivatedB&\n$_define_release_type_for_each_objectB\x1c\n\x1a_define_release_type_tableB\n\n\x08_commentB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_import\"*\n(ArrayOfLineReleaseDefineReleaseTypeTable*r\n\x1aLineReleaseReleaseLocation\x12(\n$LINE_RELEASE_RELEASE_LOCATION_ORIGIN\x10\x00\x12*\n&LINE_RELEASE_RELEASE_LOCATION_RELEASED\x10\x01\x62\x06proto3')
|
|
28
|
+
|
|
29
|
+
_globals = globals()
|
|
30
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
31
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.structure_advanced.line_release_pb2', _globals)
|
|
32
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
33
|
+
DESCRIPTOR._loaded_options = None
|
|
34
|
+
_globals['_LINERELEASERELEASELOCATION']._serialized_start=1047
|
|
35
|
+
_globals['_LINERELEASERELEASELOCATION']._serialized_end=1161
|
|
36
|
+
_globals['_LINERELEASE']._serialized_start=94
|
|
37
|
+
_globals['_LINERELEASE']._serialized_end=1001
|
|
38
|
+
_globals['_ARRAYOFLINERELEASEDEFINERELEASETYPETABLE']._serialized_start=1003
|
|
39
|
+
_globals['_ARRAYOFLINERELEASEDEFINERELEASETYPETABLE']._serialized_end=1045
|
|
40
|
+
# @@protoc_insertion_point(module_scope)
|
|
@@ -0,0 +1,56 @@
|
|
|
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 LineReleaseReleaseLocation(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
10
|
+
__slots__ = ()
|
|
11
|
+
LINE_RELEASE_RELEASE_LOCATION_ORIGIN: _ClassVar[LineReleaseReleaseLocation]
|
|
12
|
+
LINE_RELEASE_RELEASE_LOCATION_RELEASED: _ClassVar[LineReleaseReleaseLocation]
|
|
13
|
+
LINE_RELEASE_RELEASE_LOCATION_ORIGIN: LineReleaseReleaseLocation
|
|
14
|
+
LINE_RELEASE_RELEASE_LOCATION_RELEASED: LineReleaseReleaseLocation
|
|
15
|
+
|
|
16
|
+
class LineRelease(_message.Message):
|
|
17
|
+
__slots__ = ("no", "user_defined_name_enabled", "name", "lines", "line_release_type", "release_location", "released_members", "released_surfaces", "released_solids", "use_nodes_as_definition_nodes", "generated_released_objects", "deactivated", "define_release_type_for_each_object", "define_release_type_table", "comment", "id_for_export_import", "metadata_for_export_import")
|
|
18
|
+
NO_FIELD_NUMBER: _ClassVar[int]
|
|
19
|
+
USER_DEFINED_NAME_ENABLED_FIELD_NUMBER: _ClassVar[int]
|
|
20
|
+
NAME_FIELD_NUMBER: _ClassVar[int]
|
|
21
|
+
LINES_FIELD_NUMBER: _ClassVar[int]
|
|
22
|
+
LINE_RELEASE_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
23
|
+
RELEASE_LOCATION_FIELD_NUMBER: _ClassVar[int]
|
|
24
|
+
RELEASED_MEMBERS_FIELD_NUMBER: _ClassVar[int]
|
|
25
|
+
RELEASED_SURFACES_FIELD_NUMBER: _ClassVar[int]
|
|
26
|
+
RELEASED_SOLIDS_FIELD_NUMBER: _ClassVar[int]
|
|
27
|
+
USE_NODES_AS_DEFINITION_NODES_FIELD_NUMBER: _ClassVar[int]
|
|
28
|
+
GENERATED_RELEASED_OBJECTS_FIELD_NUMBER: _ClassVar[int]
|
|
29
|
+
DEACTIVATED_FIELD_NUMBER: _ClassVar[int]
|
|
30
|
+
DEFINE_RELEASE_TYPE_FOR_EACH_OBJECT_FIELD_NUMBER: _ClassVar[int]
|
|
31
|
+
DEFINE_RELEASE_TYPE_TABLE_FIELD_NUMBER: _ClassVar[int]
|
|
32
|
+
COMMENT_FIELD_NUMBER: _ClassVar[int]
|
|
33
|
+
ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
34
|
+
METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
35
|
+
no: int
|
|
36
|
+
user_defined_name_enabled: bool
|
|
37
|
+
name: str
|
|
38
|
+
lines: _containers.RepeatedScalarFieldContainer[int]
|
|
39
|
+
line_release_type: int
|
|
40
|
+
release_location: LineReleaseReleaseLocation
|
|
41
|
+
released_members: _containers.RepeatedScalarFieldContainer[int]
|
|
42
|
+
released_surfaces: _containers.RepeatedScalarFieldContainer[int]
|
|
43
|
+
released_solids: _containers.RepeatedScalarFieldContainer[int]
|
|
44
|
+
use_nodes_as_definition_nodes: _containers.RepeatedScalarFieldContainer[int]
|
|
45
|
+
generated_released_objects: _containers.RepeatedScalarFieldContainer[int]
|
|
46
|
+
deactivated: bool
|
|
47
|
+
define_release_type_for_each_object: bool
|
|
48
|
+
define_release_type_table: ArrayOfLineReleaseDefineReleaseTypeTable
|
|
49
|
+
comment: str
|
|
50
|
+
id_for_export_import: str
|
|
51
|
+
metadata_for_export_import: str
|
|
52
|
+
def __init__(self, no: _Optional[int] = ..., user_defined_name_enabled: bool = ..., name: _Optional[str] = ..., lines: _Optional[_Iterable[int]] = ..., line_release_type: _Optional[int] = ..., release_location: _Optional[_Union[LineReleaseReleaseLocation, str]] = ..., released_members: _Optional[_Iterable[int]] = ..., released_surfaces: _Optional[_Iterable[int]] = ..., released_solids: _Optional[_Iterable[int]] = ..., use_nodes_as_definition_nodes: _Optional[_Iterable[int]] = ..., generated_released_objects: _Optional[_Iterable[int]] = ..., deactivated: bool = ..., define_release_type_for_each_object: bool = ..., define_release_type_table: _Optional[_Union[ArrayOfLineReleaseDefineReleaseTypeTable, _Mapping]] = ..., comment: _Optional[str] = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
|
|
53
|
+
|
|
54
|
+
class ArrayOfLineReleaseDefineReleaseTypeTable(_message.Message):
|
|
55
|
+
__slots__ = ()
|
|
56
|
+
def __init__(self) -> None: ...
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# NO CHECKED-IN PROTOBUF GENCODE
|
|
4
|
+
# source: dlubal/api/rfem/structure_advanced/nodal_release.proto
|
|
5
|
+
# Protobuf Python Version: 5.28.1
|
|
6
|
+
"""Generated protocol buffer code."""
|
|
7
|
+
from google.protobuf import descriptor as _descriptor
|
|
8
|
+
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
9
|
+
from google.protobuf import runtime_version as _runtime_version
|
|
10
|
+
from google.protobuf import symbol_database as _symbol_database
|
|
11
|
+
from google.protobuf.internal import builder as _builder
|
|
12
|
+
_runtime_version.ValidateProtobufRuntimeVersion(
|
|
13
|
+
_runtime_version.Domain.PUBLIC,
|
|
14
|
+
5,
|
|
15
|
+
28,
|
|
16
|
+
1,
|
|
17
|
+
'',
|
|
18
|
+
'dlubal/api/rfem/structure_advanced/nodal_release.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'\n6dlubal/api/rfem/structure_advanced/nodal_release.proto\x12\"dlubal.api.rfem.structure_advanced\"\xfa\x04\n\x0cNodalRelease\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\r\n\x05nodes\x18\x04 \x03(\x05\x12\x1f\n\x12nodal_release_type\x18\x05 \x01(\x05H\x02\x88\x01\x01\x12^\n\x10release_location\x18\x06 \x01(\x0e\x32?.dlubal.api.rfem.structure_advanced.NodalReleaseReleaseLocationH\x03\x88\x01\x01\x12\x18\n\x10released_members\x18\x07 \x03(\x05\x12\x19\n\x11released_surfaces\x18\x08 \x03(\x05\x12\x17\n\x0freleased_solids\x18\t \x03(\x05\x12\"\n\x1agenerated_released_objects\x18\n \x03(\x05\x12\x18\n\x0b\x64\x65\x61\x63tivated\x18\x0b \x01(\x08H\x04\x88\x01\x01\x12\x14\n\x07\x63omment\x18\x0c \x01(\tH\x05\x88\x01\x01\x12!\n\x14id_for_export_import\x18\r \x01(\tH\x06\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\x0e \x01(\tH\x07\x88\x01\x01\x42\x1c\n\x1a_user_defined_name_enabledB\x07\n\x05_nameB\x15\n\x13_nodal_release_typeB\x13\n\x11_release_locationB\x0e\n\x0c_deactivatedB\n\n\x08_commentB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_import*u\n\x1bNodalReleaseReleaseLocation\x12)\n%NODAL_RELEASE_RELEASE_LOCATION_ORIGIN\x10\x00\x12+\n\'NODAL_RELEASE_RELEASE_LOCATION_RELEASED\x10\x01\x62\x06proto3')
|
|
28
|
+
|
|
29
|
+
_globals = globals()
|
|
30
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
31
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.structure_advanced.nodal_release_pb2', _globals)
|
|
32
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
33
|
+
DESCRIPTOR._loaded_options = None
|
|
34
|
+
_globals['_NODALRELEASERELEASELOCATION']._serialized_start=731
|
|
35
|
+
_globals['_NODALRELEASERELEASELOCATION']._serialized_end=848
|
|
36
|
+
_globals['_NODALRELEASE']._serialized_start=95
|
|
37
|
+
_globals['_NODALRELEASE']._serialized_end=729
|
|
38
|
+
# @@protoc_insertion_point(module_scope)
|
|
@@ -0,0 +1,46 @@
|
|
|
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, Optional as _Optional, Union as _Union
|
|
6
|
+
|
|
7
|
+
DESCRIPTOR: _descriptor.FileDescriptor
|
|
8
|
+
|
|
9
|
+
class NodalReleaseReleaseLocation(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
10
|
+
__slots__ = ()
|
|
11
|
+
NODAL_RELEASE_RELEASE_LOCATION_ORIGIN: _ClassVar[NodalReleaseReleaseLocation]
|
|
12
|
+
NODAL_RELEASE_RELEASE_LOCATION_RELEASED: _ClassVar[NodalReleaseReleaseLocation]
|
|
13
|
+
NODAL_RELEASE_RELEASE_LOCATION_ORIGIN: NodalReleaseReleaseLocation
|
|
14
|
+
NODAL_RELEASE_RELEASE_LOCATION_RELEASED: NodalReleaseReleaseLocation
|
|
15
|
+
|
|
16
|
+
class NodalRelease(_message.Message):
|
|
17
|
+
__slots__ = ("no", "user_defined_name_enabled", "name", "nodes", "nodal_release_type", "release_location", "released_members", "released_surfaces", "released_solids", "generated_released_objects", "deactivated", "comment", "id_for_export_import", "metadata_for_export_import")
|
|
18
|
+
NO_FIELD_NUMBER: _ClassVar[int]
|
|
19
|
+
USER_DEFINED_NAME_ENABLED_FIELD_NUMBER: _ClassVar[int]
|
|
20
|
+
NAME_FIELD_NUMBER: _ClassVar[int]
|
|
21
|
+
NODES_FIELD_NUMBER: _ClassVar[int]
|
|
22
|
+
NODAL_RELEASE_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
23
|
+
RELEASE_LOCATION_FIELD_NUMBER: _ClassVar[int]
|
|
24
|
+
RELEASED_MEMBERS_FIELD_NUMBER: _ClassVar[int]
|
|
25
|
+
RELEASED_SURFACES_FIELD_NUMBER: _ClassVar[int]
|
|
26
|
+
RELEASED_SOLIDS_FIELD_NUMBER: _ClassVar[int]
|
|
27
|
+
GENERATED_RELEASED_OBJECTS_FIELD_NUMBER: _ClassVar[int]
|
|
28
|
+
DEACTIVATED_FIELD_NUMBER: _ClassVar[int]
|
|
29
|
+
COMMENT_FIELD_NUMBER: _ClassVar[int]
|
|
30
|
+
ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
31
|
+
METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
32
|
+
no: int
|
|
33
|
+
user_defined_name_enabled: bool
|
|
34
|
+
name: str
|
|
35
|
+
nodes: _containers.RepeatedScalarFieldContainer[int]
|
|
36
|
+
nodal_release_type: int
|
|
37
|
+
release_location: NodalReleaseReleaseLocation
|
|
38
|
+
released_members: _containers.RepeatedScalarFieldContainer[int]
|
|
39
|
+
released_surfaces: _containers.RepeatedScalarFieldContainer[int]
|
|
40
|
+
released_solids: _containers.RepeatedScalarFieldContainer[int]
|
|
41
|
+
generated_released_objects: _containers.RepeatedScalarFieldContainer[int]
|
|
42
|
+
deactivated: bool
|
|
43
|
+
comment: str
|
|
44
|
+
id_for_export_import: str
|
|
45
|
+
metadata_for_export_import: str
|
|
46
|
+
def __init__(self, no: _Optional[int] = ..., user_defined_name_enabled: bool = ..., name: _Optional[str] = ..., nodes: _Optional[_Iterable[int]] = ..., nodal_release_type: _Optional[int] = ..., release_location: _Optional[_Union[NodalReleaseReleaseLocation, str]] = ..., released_members: _Optional[_Iterable[int]] = ..., released_surfaces: _Optional[_Iterable[int]] = ..., released_solids: _Optional[_Iterable[int]] = ..., generated_released_objects: _Optional[_Iterable[int]] = ..., deactivated: bool = ..., comment: _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/structure_advanced/rigid_link.proto
|
|
5
|
+
# Protobuf Python Version: 5.28.1
|
|
6
|
+
"""Generated protocol buffer code."""
|
|
7
|
+
from google.protobuf import descriptor as _descriptor
|
|
8
|
+
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
9
|
+
from google.protobuf import runtime_version as _runtime_version
|
|
10
|
+
from google.protobuf import symbol_database as _symbol_database
|
|
11
|
+
from google.protobuf.internal import builder as _builder
|
|
12
|
+
_runtime_version.ValidateProtobufRuntimeVersion(
|
|
13
|
+
_runtime_version.Domain.PUBLIC,
|
|
14
|
+
5,
|
|
15
|
+
28,
|
|
16
|
+
1,
|
|
17
|
+
'',
|
|
18
|
+
'dlubal/api/rfem/structure_advanced/rigid_link.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'\n3dlubal/api/rfem/structure_advanced/rigid_link.proto\x12\"dlubal.api.rfem.structure_advanced\x1a\x1e\x64lubal/api/common/common.proto\"\xef\x0f\n\tRigidLink\x12\n\n\x02no\x18\x01 \x01(\x05\x12\x44\n\x04type\x18\x02 \x01(\x0e\x32\x31.dlubal.api.rfem.structure_advanced.RigidLinkTypeH\x00\x88\x01\x01\x12\x12\n\x05line1\x18\x03 \x01(\x05H\x01\x88\x01\x01\x12\x12\n\x05line2\x18\x04 \x01(\x05H\x02\x88\x01\x01\x12\x14\n\x07surface\x18\x05 \x01(\x05H\x03\x88\x01\x01\x12X\n\x0frigid_link_type\x18\x06 \x01(\x0e\x32:.dlubal.api.rfem.structure_advanced.RigidLinkRigidLinkTypeH\x04\x88\x01\x01\x12\x14\n\x07\x63omment\x18\x07 \x01(\tH\x05\x88\x01\x01\x12%\n\x18ignore_relative_position\x18\x08 \x01(\x08H\x06\x88\x01\x01\x12&\n\x19user_defined_distribution\x18\t \x01(\x08H\x07\x88\x01\x01\x12$\n\x17line1_start_is_relative\x18\n \x01(\x08H\x08\x88\x01\x01\x12!\n\x14line1_start_relative\x18\x0b \x01(\x01H\t\x88\x01\x01\x12!\n\x14line1_start_absolute\x18\x0c \x01(\x01H\n\x88\x01\x01\x12\"\n\x15line1_end_is_relative\x18\r \x01(\x08H\x0b\x88\x01\x01\x12\x1f\n\x12line1_end_relative\x18\x0e \x01(\x01H\x0c\x88\x01\x01\x12\x1f\n\x12line1_end_absolute\x18\x0f \x01(\x01H\r\x88\x01\x01\x12$\n\x17line2_start_is_relative\x18\x10 \x01(\x08H\x0e\x88\x01\x01\x12!\n\x14line2_start_relative\x18\x11 \x01(\x01H\x0f\x88\x01\x01\x12!\n\x14line2_start_absolute\x18\x12 \x01(\x01H\x10\x88\x01\x01\x12\"\n\x15line2_end_is_relative\x18\x13 \x01(\x08H\x11\x88\x01\x01\x12\x1f\n\x12line2_end_relative\x18\x14 \x01(\x01H\x12\x88\x01\x01\x12\x1f\n\x12line2_end_absolute\x18\x15 \x01(\x01H\x13\x88\x01\x01\x12\r\n\x05nodes\x18\x16 \x03(\x05\x12\r\n\x05lines\x18\x17 \x03(\x05\x12\x1b\n\x0e\x63\x65nter_node_no\x18\x18 \x01(\x05H\x14\x88\x01\x01\x12 \n\x13\x63\x65nter_user_defined\x18\x19 \x01(\x08H\x15\x88\x01\x01\x12\x36\n\x0c\x63\x65nter_point\x18\x1a \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x16\x88\x01\x01\x12\x1b\n\x0e\x63\x65nter_point_x\x18\x1b \x01(\x01H\x17\x88\x01\x01\x12\x1b\n\x0e\x63\x65nter_point_y\x18\x1c \x01(\x01H\x18\x88\x01\x01\x12\x1b\n\x0e\x63\x65nter_point_z\x18\x1d \x01(\x01H\x19\x88\x01\x01\x12$\n\x17link_plane_user_defined\x18\x1e \x01(\x08H\x1a\x88\x01\x01\x12 \n\x13link_plane_node1_no\x18\x1f \x01(\x05H\x1b\x88\x01\x01\x12 \n\x13link_plane_node2_no\x18 \x01(\x05H\x1c\x88\x01\x01\x12 \n\x13link_plane_node3_no\x18! \x01(\x05H\x1d\x88\x01\x01\x12\x19\n\x0cis_generated\x18\" \x01(\x08H\x1e\x88\x01\x01\x12#\n\x16generating_object_info\x18# \x01(\tH\x1f\x88\x01\x01\x12!\n\x14id_for_export_import\x18$ \x01(\tH \x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18% \x01(\tH!\x88\x01\x01\x42\x07\n\x05_typeB\x08\n\x06_line1B\x08\n\x06_line2B\n\n\x08_surfaceB\x12\n\x10_rigid_link_typeB\n\n\x08_commentB\x1b\n\x19_ignore_relative_positionB\x1c\n\x1a_user_defined_distributionB\x1a\n\x18_line1_start_is_relativeB\x17\n\x15_line1_start_relativeB\x17\n\x15_line1_start_absoluteB\x18\n\x16_line1_end_is_relativeB\x15\n\x13_line1_end_relativeB\x15\n\x13_line1_end_absoluteB\x1a\n\x18_line2_start_is_relativeB\x17\n\x15_line2_start_relativeB\x17\n\x15_line2_start_absoluteB\x18\n\x16_line2_end_is_relativeB\x15\n\x13_line2_end_relativeB\x15\n\x13_line2_end_absoluteB\x11\n\x0f_center_node_noB\x16\n\x14_center_user_definedB\x0f\n\r_center_pointB\x11\n\x0f_center_point_xB\x11\n\x0f_center_point_yB\x11\n\x0f_center_point_zB\x1a\n\x18_link_plane_user_definedB\x16\n\x14_link_plane_node1_noB\x16\n\x14_link_plane_node2_noB\x16\n\x14_link_plane_node3_noB\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*\x92\x01\n\rRigidLinkType\x12\x1b\n\x17RIGID_LINK_TYPE_UNKNOWN\x10\x00\x12\x1d\n\x19RIGID_LINK_TYPE_DIAPHRAGM\x10\x03\x12 \n\x1cRIGID_LINK_TYPE_LINE_TO_LINE\x10\x01\x12#\n\x1fRIGID_LINK_TYPE_LINE_TO_SURFACE\x10\x02*h\n\x16RigidLinkRigidLinkType\x12$\n RIGID_LINK_RIGID_LINK_TYPE_RIGID\x10\x00\x12(\n$RIGID_LINK_RIGID_LINK_TYPE_RESILIENT\x10\x01\x62\x06proto3')
|
|
29
|
+
|
|
30
|
+
_globals = globals()
|
|
31
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
32
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.structure_advanced.rigid_link_pb2', _globals)
|
|
33
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
34
|
+
DESCRIPTOR._loaded_options = None
|
|
35
|
+
_globals['_RIGIDLINKTYPE']._serialized_start=2158
|
|
36
|
+
_globals['_RIGIDLINKTYPE']._serialized_end=2304
|
|
37
|
+
_globals['_RIGIDLINKRIGIDLINKTYPE']._serialized_start=2306
|
|
38
|
+
_globals['_RIGIDLINKRIGIDLINKTYPE']._serialized_end=2410
|
|
39
|
+
_globals['_RIGIDLINK']._serialized_start=124
|
|
40
|
+
_globals['_RIGIDLINK']._serialized_end=2155
|
|
41
|
+
# @@protoc_insertion_point(module_scope)
|
|
@@ -0,0 +1,104 @@
|
|
|
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 RigidLinkType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
11
|
+
__slots__ = ()
|
|
12
|
+
RIGID_LINK_TYPE_UNKNOWN: _ClassVar[RigidLinkType]
|
|
13
|
+
RIGID_LINK_TYPE_DIAPHRAGM: _ClassVar[RigidLinkType]
|
|
14
|
+
RIGID_LINK_TYPE_LINE_TO_LINE: _ClassVar[RigidLinkType]
|
|
15
|
+
RIGID_LINK_TYPE_LINE_TO_SURFACE: _ClassVar[RigidLinkType]
|
|
16
|
+
|
|
17
|
+
class RigidLinkRigidLinkType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
18
|
+
__slots__ = ()
|
|
19
|
+
RIGID_LINK_RIGID_LINK_TYPE_RIGID: _ClassVar[RigidLinkRigidLinkType]
|
|
20
|
+
RIGID_LINK_RIGID_LINK_TYPE_RESILIENT: _ClassVar[RigidLinkRigidLinkType]
|
|
21
|
+
RIGID_LINK_TYPE_UNKNOWN: RigidLinkType
|
|
22
|
+
RIGID_LINK_TYPE_DIAPHRAGM: RigidLinkType
|
|
23
|
+
RIGID_LINK_TYPE_LINE_TO_LINE: RigidLinkType
|
|
24
|
+
RIGID_LINK_TYPE_LINE_TO_SURFACE: RigidLinkType
|
|
25
|
+
RIGID_LINK_RIGID_LINK_TYPE_RIGID: RigidLinkRigidLinkType
|
|
26
|
+
RIGID_LINK_RIGID_LINK_TYPE_RESILIENT: RigidLinkRigidLinkType
|
|
27
|
+
|
|
28
|
+
class RigidLink(_message.Message):
|
|
29
|
+
__slots__ = ("no", "type", "line1", "line2", "surface", "rigid_link_type", "comment", "ignore_relative_position", "user_defined_distribution", "line1_start_is_relative", "line1_start_relative", "line1_start_absolute", "line1_end_is_relative", "line1_end_relative", "line1_end_absolute", "line2_start_is_relative", "line2_start_relative", "line2_start_absolute", "line2_end_is_relative", "line2_end_relative", "line2_end_absolute", "nodes", "lines", "center_node_no", "center_user_defined", "center_point", "center_point_x", "center_point_y", "center_point_z", "link_plane_user_defined", "link_plane_node1_no", "link_plane_node2_no", "link_plane_node3_no", "is_generated", "generating_object_info", "id_for_export_import", "metadata_for_export_import")
|
|
30
|
+
NO_FIELD_NUMBER: _ClassVar[int]
|
|
31
|
+
TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
32
|
+
LINE1_FIELD_NUMBER: _ClassVar[int]
|
|
33
|
+
LINE2_FIELD_NUMBER: _ClassVar[int]
|
|
34
|
+
SURFACE_FIELD_NUMBER: _ClassVar[int]
|
|
35
|
+
RIGID_LINK_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
36
|
+
COMMENT_FIELD_NUMBER: _ClassVar[int]
|
|
37
|
+
IGNORE_RELATIVE_POSITION_FIELD_NUMBER: _ClassVar[int]
|
|
38
|
+
USER_DEFINED_DISTRIBUTION_FIELD_NUMBER: _ClassVar[int]
|
|
39
|
+
LINE1_START_IS_RELATIVE_FIELD_NUMBER: _ClassVar[int]
|
|
40
|
+
LINE1_START_RELATIVE_FIELD_NUMBER: _ClassVar[int]
|
|
41
|
+
LINE1_START_ABSOLUTE_FIELD_NUMBER: _ClassVar[int]
|
|
42
|
+
LINE1_END_IS_RELATIVE_FIELD_NUMBER: _ClassVar[int]
|
|
43
|
+
LINE1_END_RELATIVE_FIELD_NUMBER: _ClassVar[int]
|
|
44
|
+
LINE1_END_ABSOLUTE_FIELD_NUMBER: _ClassVar[int]
|
|
45
|
+
LINE2_START_IS_RELATIVE_FIELD_NUMBER: _ClassVar[int]
|
|
46
|
+
LINE2_START_RELATIVE_FIELD_NUMBER: _ClassVar[int]
|
|
47
|
+
LINE2_START_ABSOLUTE_FIELD_NUMBER: _ClassVar[int]
|
|
48
|
+
LINE2_END_IS_RELATIVE_FIELD_NUMBER: _ClassVar[int]
|
|
49
|
+
LINE2_END_RELATIVE_FIELD_NUMBER: _ClassVar[int]
|
|
50
|
+
LINE2_END_ABSOLUTE_FIELD_NUMBER: _ClassVar[int]
|
|
51
|
+
NODES_FIELD_NUMBER: _ClassVar[int]
|
|
52
|
+
LINES_FIELD_NUMBER: _ClassVar[int]
|
|
53
|
+
CENTER_NODE_NO_FIELD_NUMBER: _ClassVar[int]
|
|
54
|
+
CENTER_USER_DEFINED_FIELD_NUMBER: _ClassVar[int]
|
|
55
|
+
CENTER_POINT_FIELD_NUMBER: _ClassVar[int]
|
|
56
|
+
CENTER_POINT_X_FIELD_NUMBER: _ClassVar[int]
|
|
57
|
+
CENTER_POINT_Y_FIELD_NUMBER: _ClassVar[int]
|
|
58
|
+
CENTER_POINT_Z_FIELD_NUMBER: _ClassVar[int]
|
|
59
|
+
LINK_PLANE_USER_DEFINED_FIELD_NUMBER: _ClassVar[int]
|
|
60
|
+
LINK_PLANE_NODE1_NO_FIELD_NUMBER: _ClassVar[int]
|
|
61
|
+
LINK_PLANE_NODE2_NO_FIELD_NUMBER: _ClassVar[int]
|
|
62
|
+
LINK_PLANE_NODE3_NO_FIELD_NUMBER: _ClassVar[int]
|
|
63
|
+
IS_GENERATED_FIELD_NUMBER: _ClassVar[int]
|
|
64
|
+
GENERATING_OBJECT_INFO_FIELD_NUMBER: _ClassVar[int]
|
|
65
|
+
ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
66
|
+
METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
67
|
+
no: int
|
|
68
|
+
type: RigidLinkType
|
|
69
|
+
line1: int
|
|
70
|
+
line2: int
|
|
71
|
+
surface: int
|
|
72
|
+
rigid_link_type: RigidLinkRigidLinkType
|
|
73
|
+
comment: str
|
|
74
|
+
ignore_relative_position: bool
|
|
75
|
+
user_defined_distribution: bool
|
|
76
|
+
line1_start_is_relative: bool
|
|
77
|
+
line1_start_relative: float
|
|
78
|
+
line1_start_absolute: float
|
|
79
|
+
line1_end_is_relative: bool
|
|
80
|
+
line1_end_relative: float
|
|
81
|
+
line1_end_absolute: float
|
|
82
|
+
line2_start_is_relative: bool
|
|
83
|
+
line2_start_relative: float
|
|
84
|
+
line2_start_absolute: float
|
|
85
|
+
line2_end_is_relative: bool
|
|
86
|
+
line2_end_relative: float
|
|
87
|
+
line2_end_absolute: float
|
|
88
|
+
nodes: _containers.RepeatedScalarFieldContainer[int]
|
|
89
|
+
lines: _containers.RepeatedScalarFieldContainer[int]
|
|
90
|
+
center_node_no: int
|
|
91
|
+
center_user_defined: bool
|
|
92
|
+
center_point: _common_pb2.Vector3d
|
|
93
|
+
center_point_x: float
|
|
94
|
+
center_point_y: float
|
|
95
|
+
center_point_z: float
|
|
96
|
+
link_plane_user_defined: bool
|
|
97
|
+
link_plane_node1_no: int
|
|
98
|
+
link_plane_node2_no: int
|
|
99
|
+
link_plane_node3_no: int
|
|
100
|
+
is_generated: bool
|
|
101
|
+
generating_object_info: str
|
|
102
|
+
id_for_export_import: str
|
|
103
|
+
metadata_for_export_import: str
|
|
104
|
+
def __init__(self, no: _Optional[int] = ..., type: _Optional[_Union[RigidLinkType, str]] = ..., line1: _Optional[int] = ..., line2: _Optional[int] = ..., surface: _Optional[int] = ..., rigid_link_type: _Optional[_Union[RigidLinkRigidLinkType, str]] = ..., comment: _Optional[str] = ..., ignore_relative_position: bool = ..., user_defined_distribution: bool = ..., line1_start_is_relative: bool = ..., line1_start_relative: _Optional[float] = ..., line1_start_absolute: _Optional[float] = ..., line1_end_is_relative: bool = ..., line1_end_relative: _Optional[float] = ..., line1_end_absolute: _Optional[float] = ..., line2_start_is_relative: bool = ..., line2_start_relative: _Optional[float] = ..., line2_start_absolute: _Optional[float] = ..., line2_end_is_relative: bool = ..., line2_end_relative: _Optional[float] = ..., line2_end_absolute: _Optional[float] = ..., nodes: _Optional[_Iterable[int]] = ..., lines: _Optional[_Iterable[int]] = ..., center_node_no: _Optional[int] = ..., center_user_defined: bool = ..., center_point: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., center_point_x: _Optional[float] = ..., center_point_y: _Optional[float] = ..., center_point_z: _Optional[float] = ..., link_plane_user_defined: bool = ..., link_plane_node1_no: _Optional[int] = ..., link_plane_node2_no: _Optional[int] = ..., link_plane_node3_no: _Optional[int] = ..., is_generated: bool = ..., generating_object_info: _Optional[str] = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# NO CHECKED-IN PROTOBUF GENCODE
|
|
4
|
+
# source: dlubal/api/rfem/structure_advanced/structure_modification.proto
|
|
5
|
+
# Protobuf Python Version: 5.28.1
|
|
6
|
+
"""Generated protocol buffer code."""
|
|
7
|
+
from google.protobuf import descriptor as _descriptor
|
|
8
|
+
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
9
|
+
from google.protobuf import runtime_version as _runtime_version
|
|
10
|
+
from google.protobuf import symbol_database as _symbol_database
|
|
11
|
+
from google.protobuf.internal import builder as _builder
|
|
12
|
+
_runtime_version.ValidateProtobufRuntimeVersion(
|
|
13
|
+
_runtime_version.Domain.PUBLIC,
|
|
14
|
+
5,
|
|
15
|
+
28,
|
|
16
|
+
1,
|
|
17
|
+
'',
|
|
18
|
+
'dlubal/api/rfem/structure_advanced/structure_modification.proto'
|
|
19
|
+
)
|
|
20
|
+
# @@protoc_insertion_point(imports)
|
|
21
|
+
|
|
22
|
+
_sym_db = _symbol_database.Default()
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n?dlubal/api/rfem/structure_advanced/structure_modification.proto\x12\"dlubal.api.rfem.structure_advanced\"\xdd.\n\x15StructureModification\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\x18\n\x0b\x61ssigned_to\x18\x04 \x01(\tH\x02\x88\x01\x01\x12\x14\n\x07\x63omment\x18\x05 \x01(\tH\x03\x88\x01\x01\x12\'\n\x1amodify_stiffnesses_gamma_m\x18\x06 \x01(\x08H\x04\x88\x01\x01\x12)\n\x1cmodify_stiffnesses_materials\x18\x07 \x01(\x08H\x05\x88\x01\x01\x12(\n\x1bmodify_stiffnesses_sections\x18\x08 \x01(\x08H\x06\x88\x01\x01\x12\'\n\x1amodify_stiffnesses_members\x18\t \x01(\x08H\x07\x88\x01\x01\x12(\n\x1bmodify_stiffnesses_surfaces\x18\n \x01(\x08H\x08\x88\x01\x01\x12-\n modify_stiffnesses_member_hinges\x18\x0b \x01(\x08H\t\x88\x01\x01\x12+\n\x1emodify_stiffnesses_line_hinges\x18\x0c \x01(\x08H\n\x88\x01\x01\x12.\n!modify_stiffnesses_nodal_supports\x18\r \x01(\x08H\x0b\x88\x01\x01\x12-\n modify_stiffnesses_line_supports\x18\x0e \x01(\x08H\x0c\x88\x01\x01\x12/\n\"modify_stiffnesses_member_supports\x18\x0f \x01(\x08H\r\x88\x01\x01\x12\x30\n#modify_stiffnesses_surface_supports\x18\x10 \x01(\x08H\x0e\x88\x01\x01\x12\x32\n%modify_stiffness_member_reinforcement\x18\x11 \x01(\x08H\x0f\x88\x01\x01\x12\x33\n&modify_stiffness_surface_reinforcement\x18\x12 \x01(\x08H\x10\x88\x01\x01\x12?\n2modify_stiffness_timber_members_due_moisture_class\x18\x13 \x01(\x08H\x11\x88\x01\x01\x12\x41\n4nonlinearities_disabled_material_nonlinearity_models\x18\x14 \x01(\x08H\x12\x88\x01\x01\x12H\n;nonlinearities_disabled_material_temperature_nonlinearities\x18\x15 \x01(\x08H\x13\x88\x01\x01\x12\x30\n#nonlinearities_disabled_line_hinges\x18\x16 \x01(\x08H\x14\x88\x01\x01\x12\x31\n$nonlinearities_disabled_member_types\x18\x17 \x01(\x08H\x15\x88\x01\x01\x12\x32\n%nonlinearities_disabled_member_hinges\x18\x18 \x01(\x08H\x16\x88\x01\x01\x12:\n-nonlinearities_disabled_member_nonlinearities\x18\x19 \x01(\x08H\x17\x88\x01\x01\x12L\n?nonlinearities_disabled_solid_types_contact_or_surfaces_contact\x18\x1a \x01(\x08H\x18\x88\x01\x01\x12\x33\n&nonlinearities_disabled_nodal_supports\x18\x1b \x01(\x08H\x19\x88\x01\x01\x12\x32\n%nonlinearities_disabled_line_supports\x18\x1c \x01(\x08H\x1a\x88\x01\x01\x12\x34\n\'nonlinearities_disabled_member_supports\x18\x1d \x01(\x08H\x1b\x88\x01\x01\x12\x35\n(nonlinearities_disabled_surface_supports\x18\x1e \x01(\x08H\x1c\x88\x01\x01\x12\x8e\x01\n!modify_stiffnesses_material_table\x18\x1f \x01(\x0b\x32^.dlubal.api.rfem.structure_advanced.ArrayOfStructureModificationModifyStiffnessesMaterialTableH\x1d\x88\x01\x01\x12\x8c\x01\n modify_stiffnesses_section_table\x18 \x01(\x0b\x32].dlubal.api.rfem.structure_advanced.ArrayOfStructureModificationModifyStiffnessesSectionTableH\x1e\x88\x01\x01\x12\x8a\x01\n\x1fmodify_stiffnesses_member_table\x18! \x01(\x0b\x32\\.dlubal.api.rfem.structure_advanced.ArrayOfStructureModificationModifyStiffnessesMemberTableH\x1f\x88\x01\x01\x12\x8c\x01\n modify_stiffnesses_surface_table\x18\" \x01(\x0b\x32].dlubal.api.rfem.structure_advanced.ArrayOfStructureModificationModifyStiffnessesSurfaceTableH \x88\x01\x01\x12\x97\x01\n&modify_stiffnesses_member_hinges_table\x18# \x01(\x0b\x32\x62.dlubal.api.rfem.structure_advanced.ArrayOfStructureModificationModifyStiffnessesMemberHingesTableH!\x88\x01\x01\x12\x93\x01\n$modify_stiffnesses_line_hinges_table\x18$ \x01(\x0b\x32`.dlubal.api.rfem.structure_advanced.ArrayOfStructureModificationModifyStiffnessesLineHingesTableH\"\x88\x01\x01\x12\x99\x01\n\'modify_stiffnesses_nodal_supports_table\x18% \x01(\x0b\x32\x63.dlubal.api.rfem.structure_advanced.ArrayOfStructureModificationModifyStiffnessesNodalSupportsTableH#\x88\x01\x01\x12\x97\x01\n&modify_stiffnesses_line_supports_table\x18& \x01(\x0b\x32\x62.dlubal.api.rfem.structure_advanced.ArrayOfStructureModificationModifyStiffnessesLineSupportsTableH$\x88\x01\x01\x12\x9b\x01\n(modify_stiffnesses_member_supports_table\x18\' \x01(\x0b\x32\x64.dlubal.api.rfem.structure_advanced.ArrayOfStructureModificationModifyStiffnessesMemberSupportsTableH%\x88\x01\x01\x12\x9d\x01\n)modify_stiffnesses_surface_supports_table\x18( \x01(\x0b\x32\x65.dlubal.api.rfem.structure_advanced.ArrayOfStructureModificationModifyStiffnessesSurfaceSupportsTableH&\x88\x01\x01\x12\'\n\x1a\x64\x65\x61\x63tivate_members_enabled\x18) \x01(\x08H\'\x88\x01\x01\x12\x34\n\'object_selection_for_deactivate_members\x18* \x01(\x05H(\x88\x01\x01\x12(\n\x1b\x64\x65\x61\x63tivate_surfaces_enabled\x18+ \x01(\x08H)\x88\x01\x01\x12\x35\n(object_selection_for_deactivate_surfaces\x18, \x01(\x05H*\x88\x01\x01\x12&\n\x19\x64\x65\x61\x63tivate_solids_enabled\x18- \x01(\x08H+\x88\x01\x01\x12\x33\n&object_selection_for_deactivate_solids\x18. \x01(\x05H,\x88\x01\x01\x12\x30\n#deactivate_support_on_nodes_enabled\x18/ \x01(\x08H-\x88\x01\x01\x12=\n0object_selection_for_deactivate_support_on_nodes\x18\x30 \x01(\x05H.\x88\x01\x01\x12\x30\n#deactivate_support_on_lines_enabled\x18\x31 \x01(\x08H/\x88\x01\x01\x12=\n0object_selection_for_deactivate_support_on_lines\x18\x32 \x01(\x05H0\x88\x01\x01\x12\x32\n%deactivate_support_on_members_enabled\x18\x33 \x01(\x08H1\x88\x01\x01\x12?\n2object_selection_for_deactivate_support_on_members\x18\x34 \x01(\x05H2\x88\x01\x01\x12\x33\n&deactivate_support_on_surfaces_enabled\x18\x35 \x01(\x08H3\x88\x01\x01\x12@\n3object_selection_for_deactivate_support_on_surfaces\x18\x36 \x01(\x05H4\x88\x01\x01\x12!\n\x14id_for_export_import\x18\x37 \x01(\tH5\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\x38 \x01(\tH6\x88\x01\x01\x42\x1c\n\x1a_user_defined_name_enabledB\x07\n\x05_nameB\x0e\n\x0c_assigned_toB\n\n\x08_commentB\x1d\n\x1b_modify_stiffnesses_gamma_mB\x1f\n\x1d_modify_stiffnesses_materialsB\x1e\n\x1c_modify_stiffnesses_sectionsB\x1d\n\x1b_modify_stiffnesses_membersB\x1e\n\x1c_modify_stiffnesses_surfacesB#\n!_modify_stiffnesses_member_hingesB!\n\x1f_modify_stiffnesses_line_hingesB$\n\"_modify_stiffnesses_nodal_supportsB#\n!_modify_stiffnesses_line_supportsB%\n#_modify_stiffnesses_member_supportsB&\n$_modify_stiffnesses_surface_supportsB(\n&_modify_stiffness_member_reinforcementB)\n\'_modify_stiffness_surface_reinforcementB5\n3_modify_stiffness_timber_members_due_moisture_classB7\n5_nonlinearities_disabled_material_nonlinearity_modelsB>\n<_nonlinearities_disabled_material_temperature_nonlinearitiesB&\n$_nonlinearities_disabled_line_hingesB\'\n%_nonlinearities_disabled_member_typesB(\n&_nonlinearities_disabled_member_hingesB0\n._nonlinearities_disabled_member_nonlinearitiesBB\n@_nonlinearities_disabled_solid_types_contact_or_surfaces_contactB)\n\'_nonlinearities_disabled_nodal_supportsB(\n&_nonlinearities_disabled_line_supportsB*\n(_nonlinearities_disabled_member_supportsB+\n)_nonlinearities_disabled_surface_supportsB$\n\"_modify_stiffnesses_material_tableB#\n!_modify_stiffnesses_section_tableB\"\n _modify_stiffnesses_member_tableB#\n!_modify_stiffnesses_surface_tableB)\n\'_modify_stiffnesses_member_hinges_tableB\'\n%_modify_stiffnesses_line_hinges_tableB*\n(_modify_stiffnesses_nodal_supports_tableB)\n\'_modify_stiffnesses_line_supports_tableB+\n)_modify_stiffnesses_member_supports_tableB,\n*_modify_stiffnesses_surface_supports_tableB\x1d\n\x1b_deactivate_members_enabledB*\n(_object_selection_for_deactivate_membersB\x1e\n\x1c_deactivate_surfaces_enabledB+\n)_object_selection_for_deactivate_surfacesB\x1c\n\x1a_deactivate_solids_enabledB)\n\'_object_selection_for_deactivate_solidsB&\n$_deactivate_support_on_nodes_enabledB3\n1_object_selection_for_deactivate_support_on_nodesB&\n$_deactivate_support_on_lines_enabledB3\n1_object_selection_for_deactivate_support_on_linesB(\n&_deactivate_support_on_members_enabledB5\n3_object_selection_for_deactivate_support_on_membersB)\n\'_deactivate_support_on_surfaces_enabledB6\n4_object_selection_for_deactivate_support_on_surfacesB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_import\"<\n:ArrayOfStructureModificationModifyStiffnessesMaterialTable\";\n9ArrayOfStructureModificationModifyStiffnessesSectionTable\":\n8ArrayOfStructureModificationModifyStiffnessesMemberTable\";\n9ArrayOfStructureModificationModifyStiffnessesSurfaceTable\"@\n>ArrayOfStructureModificationModifyStiffnessesMemberHingesTable\">\n<ArrayOfStructureModificationModifyStiffnessesLineHingesTable\"A\n?ArrayOfStructureModificationModifyStiffnessesNodalSupportsTable\"@\n>ArrayOfStructureModificationModifyStiffnessesLineSupportsTable\"B\n@ArrayOfStructureModificationModifyStiffnessesMemberSupportsTable\"C\nAArrayOfStructureModificationModifyStiffnessesSurfaceSupportsTableb\x06proto3')
|
|
28
|
+
|
|
29
|
+
_globals = globals()
|
|
30
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
31
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.structure_advanced.structure_modification_pb2', _globals)
|
|
32
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
33
|
+
DESCRIPTOR._loaded_options = None
|
|
34
|
+
_globals['_STRUCTUREMODIFICATION']._serialized_start=104
|
|
35
|
+
_globals['_STRUCTUREMODIFICATION']._serialized_end=6085
|
|
36
|
+
_globals['_ARRAYOFSTRUCTUREMODIFICATIONMODIFYSTIFFNESSESMATERIALTABLE']._serialized_start=6087
|
|
37
|
+
_globals['_ARRAYOFSTRUCTUREMODIFICATIONMODIFYSTIFFNESSESMATERIALTABLE']._serialized_end=6147
|
|
38
|
+
_globals['_ARRAYOFSTRUCTUREMODIFICATIONMODIFYSTIFFNESSESSECTIONTABLE']._serialized_start=6149
|
|
39
|
+
_globals['_ARRAYOFSTRUCTUREMODIFICATIONMODIFYSTIFFNESSESSECTIONTABLE']._serialized_end=6208
|
|
40
|
+
_globals['_ARRAYOFSTRUCTUREMODIFICATIONMODIFYSTIFFNESSESMEMBERTABLE']._serialized_start=6210
|
|
41
|
+
_globals['_ARRAYOFSTRUCTUREMODIFICATIONMODIFYSTIFFNESSESMEMBERTABLE']._serialized_end=6268
|
|
42
|
+
_globals['_ARRAYOFSTRUCTUREMODIFICATIONMODIFYSTIFFNESSESSURFACETABLE']._serialized_start=6270
|
|
43
|
+
_globals['_ARRAYOFSTRUCTUREMODIFICATIONMODIFYSTIFFNESSESSURFACETABLE']._serialized_end=6329
|
|
44
|
+
_globals['_ARRAYOFSTRUCTUREMODIFICATIONMODIFYSTIFFNESSESMEMBERHINGESTABLE']._serialized_start=6331
|
|
45
|
+
_globals['_ARRAYOFSTRUCTUREMODIFICATIONMODIFYSTIFFNESSESMEMBERHINGESTABLE']._serialized_end=6395
|
|
46
|
+
_globals['_ARRAYOFSTRUCTUREMODIFICATIONMODIFYSTIFFNESSESLINEHINGESTABLE']._serialized_start=6397
|
|
47
|
+
_globals['_ARRAYOFSTRUCTUREMODIFICATIONMODIFYSTIFFNESSESLINEHINGESTABLE']._serialized_end=6459
|
|
48
|
+
_globals['_ARRAYOFSTRUCTUREMODIFICATIONMODIFYSTIFFNESSESNODALSUPPORTSTABLE']._serialized_start=6461
|
|
49
|
+
_globals['_ARRAYOFSTRUCTUREMODIFICATIONMODIFYSTIFFNESSESNODALSUPPORTSTABLE']._serialized_end=6526
|
|
50
|
+
_globals['_ARRAYOFSTRUCTUREMODIFICATIONMODIFYSTIFFNESSESLINESUPPORTSTABLE']._serialized_start=6528
|
|
51
|
+
_globals['_ARRAYOFSTRUCTUREMODIFICATIONMODIFYSTIFFNESSESLINESUPPORTSTABLE']._serialized_end=6592
|
|
52
|
+
_globals['_ARRAYOFSTRUCTUREMODIFICATIONMODIFYSTIFFNESSESMEMBERSUPPORTSTABLE']._serialized_start=6594
|
|
53
|
+
_globals['_ARRAYOFSTRUCTUREMODIFICATIONMODIFYSTIFFNESSESMEMBERSUPPORTSTABLE']._serialized_end=6660
|
|
54
|
+
_globals['_ARRAYOFSTRUCTUREMODIFICATIONMODIFYSTIFFNESSESSURFACESUPPORTSTABLE']._serialized_start=6662
|
|
55
|
+
_globals['_ARRAYOFSTRUCTUREMODIFICATIONMODIFYSTIFFNESSESSURFACESUPPORTSTABLE']._serialized_end=6729
|
|
56
|
+
# @@protoc_insertion_point(module_scope)
|