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,42 @@
|
|
|
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/loading/result_combination.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/loading/result_combination.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'\n0dlubal/api/rfem/loading/result_combination.proto\x12\x17\x64lubal.api.rfem.loading\"\xfc\t\n\x11ResultCombination\x12\n\n\x02no\x18\x01 \x01(\x05\x12\x1d\n\x10\x64\x65sign_situation\x18\x02 \x01(\x05H\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\x08to_solve\x18\x05 \x01(\x08H\x03\x88\x01\x01\x12\x14\n\x07\x63omment\x18\x06 \x01(\tH\x04\x88\x01\x01\x12X\n\x10\x63ombination_type\x18\x07 \x01(\x0e\x32\x39.dlubal.api.rfem.loading.ResultCombinationCombinationTypeH\x05\x88\x01\x01\x12\x1d\n\x10srss_combination\x18\x08 \x01(\x08H\x06\x88\x01\x01\x12\x64\n\x17srss_extreme_value_sign\x18\t \x01(\x0e\x32>.dlubal.api.rfem.loading.ResultCombinationSrssExtremeValueSignH\x07\x88\x01\x01\x12\x33\n&srss_use_equivalent_linear_combination\x18\n \x01(\x08H\x08\x88\x01\x01\x12\x34\n\'srss_according_load_case_or_combination\x18\x0b \x01(\x05H\t\x88\x01\x01\x12J\n\x05items\x18\x0c \x01(\x0b\x32\x36.dlubal.api.rfem.loading.ArrayOfResultCombinationItemsH\n\x88\x01\x01\x12%\n\x18generate_subcombinations\x18\r \x01(\x08H\x0b\x88\x01\x01\x12\x1a\n\rload_duration\x18\x0e \x01(\tH\x0c\x88\x01\x01\x12\x19\n\x0cis_generated\x18\x0f \x01(\x08H\r\x88\x01\x01\x12(\n\x1b\x63onsider_construction_stage\x18\x10 \x01(\x05H\x0e\x88\x01\x01\x12/\n\"consider_construction_stage_active\x18\x11 \x01(\x08H\x0f\x88\x01\x01\x12!\n\x14id_for_export_import\x18\x12 \x01(\tH\x10\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\x13 \x01(\tH\x11\x88\x01\x01\x42\x13\n\x11_design_situationB\x1c\n\x1a_user_defined_name_enabledB\x07\n\x05_nameB\x0b\n\t_to_solveB\n\n\x08_commentB\x13\n\x11_combination_typeB\x13\n\x11_srss_combinationB\x1a\n\x18_srss_extreme_value_signB)\n\'_srss_use_equivalent_linear_combinationB*\n(_srss_according_load_case_or_combinationB\x08\n\x06_itemsB\x1b\n\x19_generate_subcombinationsB\x10\n\x0e_load_durationB\x0f\n\r_is_generatedB\x1e\n\x1c_consider_construction_stageB%\n#_consider_construction_stage_activeB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_import\"\x1f\n\x1d\x41rrayOfResultCombinationItems*\x82\x02\n ResultCombinationCombinationType\x12/\n+RESULT_COMBINATION_COMBINATION_TYPE_GENERAL\x10\x00\x12:\n6RESULT_COMBINATION_COMBINATION_TYPE_ENVELOPE_PERMANENT\x10\x01\x12:\n6RESULT_COMBINATION_COMBINATION_TYPE_ENVELOPE_TRANSIENT\x10\x02\x12\x35\n1RESULT_COMBINATION_COMBINATION_TYPE_SUPERPOSITION\x10\x03*\xa4\x02\n%ResultCombinationSrssExtremeValueSign\x12\x43\n?RESULT_COMBINATION_SRSS_EXTREME_VALUE_SIGN_POSITIVE_OR_NEGATIVE\x10\x00\x12\x44\n@RESULT_COMBINATION_SRSS_EXTREME_VALUE_SIGN_ACCORDING_TO_LC_OR_CO\x10\x03\x12\x37\n3RESULT_COMBINATION_SRSS_EXTREME_VALUE_SIGN_NEGATIVE\x10\x02\x12\x37\n3RESULT_COMBINATION_SRSS_EXTREME_VALUE_SIGN_POSITIVE\x10\x01\x62\x06proto3')
|
|
28
|
+
|
|
29
|
+
_globals = globals()
|
|
30
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
31
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.loading.result_combination_pb2', _globals)
|
|
32
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
33
|
+
DESCRIPTOR._loaded_options = None
|
|
34
|
+
_globals['_RESULTCOMBINATIONCOMBINATIONTYPE']._serialized_start=1390
|
|
35
|
+
_globals['_RESULTCOMBINATIONCOMBINATIONTYPE']._serialized_end=1648
|
|
36
|
+
_globals['_RESULTCOMBINATIONSRSSEXTREMEVALUESIGN']._serialized_start=1651
|
|
37
|
+
_globals['_RESULTCOMBINATIONSRSSEXTREMEVALUESIGN']._serialized_end=1943
|
|
38
|
+
_globals['_RESULTCOMBINATION']._serialized_start=78
|
|
39
|
+
_globals['_RESULTCOMBINATION']._serialized_end=1354
|
|
40
|
+
_globals['_ARRAYOFRESULTCOMBINATIONITEMS']._serialized_start=1356
|
|
41
|
+
_globals['_ARRAYOFRESULTCOMBINATIONITEMS']._serialized_end=1387
|
|
42
|
+
# @@protoc_insertion_point(module_scope)
|
|
@@ -0,0 +1,74 @@
|
|
|
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 ResultCombinationCombinationType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
9
|
+
__slots__ = ()
|
|
10
|
+
RESULT_COMBINATION_COMBINATION_TYPE_GENERAL: _ClassVar[ResultCombinationCombinationType]
|
|
11
|
+
RESULT_COMBINATION_COMBINATION_TYPE_ENVELOPE_PERMANENT: _ClassVar[ResultCombinationCombinationType]
|
|
12
|
+
RESULT_COMBINATION_COMBINATION_TYPE_ENVELOPE_TRANSIENT: _ClassVar[ResultCombinationCombinationType]
|
|
13
|
+
RESULT_COMBINATION_COMBINATION_TYPE_SUPERPOSITION: _ClassVar[ResultCombinationCombinationType]
|
|
14
|
+
|
|
15
|
+
class ResultCombinationSrssExtremeValueSign(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
16
|
+
__slots__ = ()
|
|
17
|
+
RESULT_COMBINATION_SRSS_EXTREME_VALUE_SIGN_POSITIVE_OR_NEGATIVE: _ClassVar[ResultCombinationSrssExtremeValueSign]
|
|
18
|
+
RESULT_COMBINATION_SRSS_EXTREME_VALUE_SIGN_ACCORDING_TO_LC_OR_CO: _ClassVar[ResultCombinationSrssExtremeValueSign]
|
|
19
|
+
RESULT_COMBINATION_SRSS_EXTREME_VALUE_SIGN_NEGATIVE: _ClassVar[ResultCombinationSrssExtremeValueSign]
|
|
20
|
+
RESULT_COMBINATION_SRSS_EXTREME_VALUE_SIGN_POSITIVE: _ClassVar[ResultCombinationSrssExtremeValueSign]
|
|
21
|
+
RESULT_COMBINATION_COMBINATION_TYPE_GENERAL: ResultCombinationCombinationType
|
|
22
|
+
RESULT_COMBINATION_COMBINATION_TYPE_ENVELOPE_PERMANENT: ResultCombinationCombinationType
|
|
23
|
+
RESULT_COMBINATION_COMBINATION_TYPE_ENVELOPE_TRANSIENT: ResultCombinationCombinationType
|
|
24
|
+
RESULT_COMBINATION_COMBINATION_TYPE_SUPERPOSITION: ResultCombinationCombinationType
|
|
25
|
+
RESULT_COMBINATION_SRSS_EXTREME_VALUE_SIGN_POSITIVE_OR_NEGATIVE: ResultCombinationSrssExtremeValueSign
|
|
26
|
+
RESULT_COMBINATION_SRSS_EXTREME_VALUE_SIGN_ACCORDING_TO_LC_OR_CO: ResultCombinationSrssExtremeValueSign
|
|
27
|
+
RESULT_COMBINATION_SRSS_EXTREME_VALUE_SIGN_NEGATIVE: ResultCombinationSrssExtremeValueSign
|
|
28
|
+
RESULT_COMBINATION_SRSS_EXTREME_VALUE_SIGN_POSITIVE: ResultCombinationSrssExtremeValueSign
|
|
29
|
+
|
|
30
|
+
class ResultCombination(_message.Message):
|
|
31
|
+
__slots__ = ("no", "design_situation", "user_defined_name_enabled", "name", "to_solve", "comment", "combination_type", "srss_combination", "srss_extreme_value_sign", "srss_use_equivalent_linear_combination", "srss_according_load_case_or_combination", "items", "generate_subcombinations", "load_duration", "is_generated", "consider_construction_stage", "consider_construction_stage_active", "id_for_export_import", "metadata_for_export_import")
|
|
32
|
+
NO_FIELD_NUMBER: _ClassVar[int]
|
|
33
|
+
DESIGN_SITUATION_FIELD_NUMBER: _ClassVar[int]
|
|
34
|
+
USER_DEFINED_NAME_ENABLED_FIELD_NUMBER: _ClassVar[int]
|
|
35
|
+
NAME_FIELD_NUMBER: _ClassVar[int]
|
|
36
|
+
TO_SOLVE_FIELD_NUMBER: _ClassVar[int]
|
|
37
|
+
COMMENT_FIELD_NUMBER: _ClassVar[int]
|
|
38
|
+
COMBINATION_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
39
|
+
SRSS_COMBINATION_FIELD_NUMBER: _ClassVar[int]
|
|
40
|
+
SRSS_EXTREME_VALUE_SIGN_FIELD_NUMBER: _ClassVar[int]
|
|
41
|
+
SRSS_USE_EQUIVALENT_LINEAR_COMBINATION_FIELD_NUMBER: _ClassVar[int]
|
|
42
|
+
SRSS_ACCORDING_LOAD_CASE_OR_COMBINATION_FIELD_NUMBER: _ClassVar[int]
|
|
43
|
+
ITEMS_FIELD_NUMBER: _ClassVar[int]
|
|
44
|
+
GENERATE_SUBCOMBINATIONS_FIELD_NUMBER: _ClassVar[int]
|
|
45
|
+
LOAD_DURATION_FIELD_NUMBER: _ClassVar[int]
|
|
46
|
+
IS_GENERATED_FIELD_NUMBER: _ClassVar[int]
|
|
47
|
+
CONSIDER_CONSTRUCTION_STAGE_FIELD_NUMBER: _ClassVar[int]
|
|
48
|
+
CONSIDER_CONSTRUCTION_STAGE_ACTIVE_FIELD_NUMBER: _ClassVar[int]
|
|
49
|
+
ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
50
|
+
METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
51
|
+
no: int
|
|
52
|
+
design_situation: int
|
|
53
|
+
user_defined_name_enabled: bool
|
|
54
|
+
name: str
|
|
55
|
+
to_solve: bool
|
|
56
|
+
comment: str
|
|
57
|
+
combination_type: ResultCombinationCombinationType
|
|
58
|
+
srss_combination: bool
|
|
59
|
+
srss_extreme_value_sign: ResultCombinationSrssExtremeValueSign
|
|
60
|
+
srss_use_equivalent_linear_combination: bool
|
|
61
|
+
srss_according_load_case_or_combination: int
|
|
62
|
+
items: ArrayOfResultCombinationItems
|
|
63
|
+
generate_subcombinations: bool
|
|
64
|
+
load_duration: str
|
|
65
|
+
is_generated: bool
|
|
66
|
+
consider_construction_stage: int
|
|
67
|
+
consider_construction_stage_active: bool
|
|
68
|
+
id_for_export_import: str
|
|
69
|
+
metadata_for_export_import: str
|
|
70
|
+
def __init__(self, no: _Optional[int] = ..., design_situation: _Optional[int] = ..., user_defined_name_enabled: bool = ..., name: _Optional[str] = ..., to_solve: bool = ..., comment: _Optional[str] = ..., combination_type: _Optional[_Union[ResultCombinationCombinationType, str]] = ..., srss_combination: bool = ..., srss_extreme_value_sign: _Optional[_Union[ResultCombinationSrssExtremeValueSign, str]] = ..., srss_use_equivalent_linear_combination: bool = ..., srss_according_load_case_or_combination: _Optional[int] = ..., items: _Optional[_Union[ArrayOfResultCombinationItems, _Mapping]] = ..., generate_subcombinations: bool = ..., load_duration: _Optional[str] = ..., is_generated: bool = ..., consider_construction_stage: _Optional[int] = ..., consider_construction_stage_active: bool = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
|
|
71
|
+
|
|
72
|
+
class ArrayOfResultCombinationItems(_message.Message):
|
|
73
|
+
__slots__ = ()
|
|
74
|
+
def __init__(self) -> None: ...
|
|
@@ -0,0 +1,46 @@
|
|
|
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/loading/spectral_analysis_settings.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/loading/spectral_analysis_settings.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'\n8dlubal/api/rfem/loading/spectral_analysis_settings.proto\x12\x17\x64lubal.api.rfem.loading\"\xd2\x0e\n\x18SpectralAnalysisSettings\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\x14\n\x07\x63omment\x18\x04 \x01(\tH\x02\x88\x01\x01\x12\x18\n\x0b\x61ssigned_to\x18\x05 \x01(\tH\x03\x88\x01\x01\x12\x8a\x01\n\'combination_rule_for_periodic_responses\x18\x06 \x01(\x0e\x32T.dlubal.api.rfem.loading.SpectralAnalysisSettingsCombinationRuleForPeriodicResponsesH\x04\x88\x01\x01\x12.\n!use_equivalent_linear_combination\x18\x07 \x01(\x08H\x05\x88\x01\x01\x12/\n\"signed_results_using_dominant_mode\x18\x08 \x01(\x08H\x06\x88\x01\x01\x12#\n\x16include_missing_masses\x18\t \x01(\x08H\x07\x88\x01\x01\x12\x82\x01\n#combination_rule_for_missing_masses\x18\n \x01(\x0e\x32P.dlubal.api.rfem.loading.SpectralAnalysisSettingsCombinationRuleForMissingMassesH\x08\x88\x01\x01\x12/\n\"save_results_of_all_selected_modes\x18\x0b \x01(\x08H\t\x88\x01\x01\x12\x92\x01\n+combination_rule_for_directional_components\x18\x0c \x01(\x0e\x32X.dlubal.api.rfem.loading.SpectralAnalysisSettingsCombinationRuleForDirectionalComponentsH\n\x88\x01\x01\x12>\n1combination_rule_for_directional_components_value\x18\r \x01(\x01H\x0b\x88\x01\x01\x12@\n3consider_independent_directions_in_envelope_results\x18\x0e \x01(\x08H\x0c\x88\x01\x01\x12\x65\n\x14\x64\x61mping_for_cqc_rule\x18\x0f \x01(\x0e\x32\x42.dlubal.api.rfem.loading.SpectralAnalysisSettingsDampingForCqcRuleH\r\x88\x01\x01\x12%\n\x18\x63onstant_d_for_each_mode\x18\x10 \x01(\x01H\x0e\x88\x01\x01\x12{\n\x1fzero_periodic_acceleration_type\x18\x11 \x01(\x0e\x32M.dlubal.api.rfem.loading.SpectralAnalysisSettingsZeroPeriodicAccelerationTypeH\x0f\x88\x01\x01\x12\x1d\n\x10user_defined_zpa\x18\x12 \x01(\x01H\x10\x88\x01\x01\x12!\n\x14id_for_export_import\x18\x13 \x01(\tH\x11\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\x14 \x01(\tH\x12\x88\x01\x01\x42\x1c\n\x1a_user_defined_name_enabledB\x07\n\x05_nameB\n\n\x08_commentB\x0e\n\x0c_assigned_toB*\n(_combination_rule_for_periodic_responsesB$\n\"_use_equivalent_linear_combinationB%\n#_signed_results_using_dominant_modeB\x19\n\x17_include_missing_massesB&\n$_combination_rule_for_missing_massesB%\n#_save_results_of_all_selected_modesB.\n,_combination_rule_for_directional_componentsB4\n2_combination_rule_for_directional_components_valueB6\n4_consider_independent_directions_in_envelope_resultsB\x17\n\x15_damping_for_cqc_ruleB\x1b\n\x19_constant_d_for_each_modeB\"\n _zero_periodic_acceleration_typeB\x13\n\x11_user_defined_zpaB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_import*\xab\x02\n;SpectralAnalysisSettingsCombinationRuleForPeriodicResponses\x12K\nGSPECTRAL_ANALYSIS_SETTINGS_COMBINATION_RULE_FOR_PERIODIC_RESPONSES_SRSS\x10\x00\x12S\nOSPECTRAL_ANALYSIS_SETTINGS_COMBINATION_RULE_FOR_PERIODIC_RESPONSES_ABSOLUTE_SUM\x10\x02\x12J\nFSPECTRAL_ANALYSIS_SETTINGS_COMBINATION_RULE_FOR_PERIODIC_RESPONSES_CQC\x10\x01*\xd3\x01\n7SpectralAnalysisSettingsCombinationRuleForMissingMasses\x12G\nCSPECTRAL_ANALYSIS_SETTINGS_COMBINATION_RULE_FOR_MISSING_MASSES_SRSS\x10\x00\x12O\nKSPECTRAL_ANALYSIS_SETTINGS_COMBINATION_RULE_FOR_MISSING_MASSES_ABSOLUTE_SUM\x10\x01*\xc2\x02\n?SpectralAnalysisSettingsCombinationRuleForDirectionalComponents\x12O\nKSPECTRAL_ANALYSIS_SETTINGS_COMBINATION_RULE_FOR_DIRECTIONAL_COMPONENTS_SRSS\x10\x00\x12W\nSSPECTRAL_ANALYSIS_SETTINGS_COMBINATION_RULE_FOR_DIRECTIONAL_COMPONENTS_ABSOLUTE_SUM\x10\x02\x12U\nQSPECTRAL_ANALYSIS_SETTINGS_COMBINATION_RULE_FOR_DIRECTIONAL_COMPONENTS_SCALED_SUM\x10\x01*\xc4\x01\n)SpectralAnalysisSettingsDampingForCqcRule\x12J\nFSPECTRAL_ANALYSIS_SETTINGS_DAMPING_FOR_CQC_RULE_CONSTANT_FOR_EACH_MODE\x10\x00\x12K\nGSPECTRAL_ANALYSIS_SETTINGS_DAMPING_FOR_CQC_RULE_DIFFERENT_FOR_EACH_MODE\x10\x01*\xd5\x02\n4SpectralAnalysisSettingsZeroPeriodicAccelerationType\x12]\nYSPECTRAL_ANALYSIS_SETTINGS_ZERO_PERIODIC_ACCELERATION_TYPE_ACCORDING_TO_RESPONSE_SPECTRUM\x10\x00\x12q\nmSPECTRAL_ANALYSIS_SETTINGS_ZERO_PERIODIC_ACCELERATION_TYPE_SPECTRAL_ACCELERATION_OF_LAST_CALCULATED_FREQUENCY\x10\x01\x12K\nGSPECTRAL_ANALYSIS_SETTINGS_ZERO_PERIODIC_ACCELERATION_TYPE_USER_DEFINED\x10\x02\x62\x06proto3')
|
|
28
|
+
|
|
29
|
+
_globals = globals()
|
|
30
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
31
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.loading.spectral_analysis_settings_pb2', _globals)
|
|
32
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
33
|
+
DESCRIPTOR._loaded_options = None
|
|
34
|
+
_globals['_SPECTRALANALYSISSETTINGSCOMBINATIONRULEFORPERIODICRESPONSES']._serialized_start=1963
|
|
35
|
+
_globals['_SPECTRALANALYSISSETTINGSCOMBINATIONRULEFORPERIODICRESPONSES']._serialized_end=2262
|
|
36
|
+
_globals['_SPECTRALANALYSISSETTINGSCOMBINATIONRULEFORMISSINGMASSES']._serialized_start=2265
|
|
37
|
+
_globals['_SPECTRALANALYSISSETTINGSCOMBINATIONRULEFORMISSINGMASSES']._serialized_end=2476
|
|
38
|
+
_globals['_SPECTRALANALYSISSETTINGSCOMBINATIONRULEFORDIRECTIONALCOMPONENTS']._serialized_start=2479
|
|
39
|
+
_globals['_SPECTRALANALYSISSETTINGSCOMBINATIONRULEFORDIRECTIONALCOMPONENTS']._serialized_end=2801
|
|
40
|
+
_globals['_SPECTRALANALYSISSETTINGSDAMPINGFORCQCRULE']._serialized_start=2804
|
|
41
|
+
_globals['_SPECTRALANALYSISSETTINGSDAMPINGFORCQCRULE']._serialized_end=3000
|
|
42
|
+
_globals['_SPECTRALANALYSISSETTINGSZEROPERIODICACCELERATIONTYPE']._serialized_start=3003
|
|
43
|
+
_globals['_SPECTRALANALYSISSETTINGSZEROPERIODICACCELERATIONTYPE']._serialized_end=3344
|
|
44
|
+
_globals['_SPECTRALANALYSISSETTINGS']._serialized_start=86
|
|
45
|
+
_globals['_SPECTRALANALYSISSETTINGS']._serialized_end=1960
|
|
46
|
+
# @@protoc_insertion_point(module_scope)
|
|
@@ -0,0 +1,91 @@
|
|
|
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, Optional as _Optional, Union as _Union
|
|
5
|
+
|
|
6
|
+
DESCRIPTOR: _descriptor.FileDescriptor
|
|
7
|
+
|
|
8
|
+
class SpectralAnalysisSettingsCombinationRuleForPeriodicResponses(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
9
|
+
__slots__ = ()
|
|
10
|
+
SPECTRAL_ANALYSIS_SETTINGS_COMBINATION_RULE_FOR_PERIODIC_RESPONSES_SRSS: _ClassVar[SpectralAnalysisSettingsCombinationRuleForPeriodicResponses]
|
|
11
|
+
SPECTRAL_ANALYSIS_SETTINGS_COMBINATION_RULE_FOR_PERIODIC_RESPONSES_ABSOLUTE_SUM: _ClassVar[SpectralAnalysisSettingsCombinationRuleForPeriodicResponses]
|
|
12
|
+
SPECTRAL_ANALYSIS_SETTINGS_COMBINATION_RULE_FOR_PERIODIC_RESPONSES_CQC: _ClassVar[SpectralAnalysisSettingsCombinationRuleForPeriodicResponses]
|
|
13
|
+
|
|
14
|
+
class SpectralAnalysisSettingsCombinationRuleForMissingMasses(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
15
|
+
__slots__ = ()
|
|
16
|
+
SPECTRAL_ANALYSIS_SETTINGS_COMBINATION_RULE_FOR_MISSING_MASSES_SRSS: _ClassVar[SpectralAnalysisSettingsCombinationRuleForMissingMasses]
|
|
17
|
+
SPECTRAL_ANALYSIS_SETTINGS_COMBINATION_RULE_FOR_MISSING_MASSES_ABSOLUTE_SUM: _ClassVar[SpectralAnalysisSettingsCombinationRuleForMissingMasses]
|
|
18
|
+
|
|
19
|
+
class SpectralAnalysisSettingsCombinationRuleForDirectionalComponents(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
20
|
+
__slots__ = ()
|
|
21
|
+
SPECTRAL_ANALYSIS_SETTINGS_COMBINATION_RULE_FOR_DIRECTIONAL_COMPONENTS_SRSS: _ClassVar[SpectralAnalysisSettingsCombinationRuleForDirectionalComponents]
|
|
22
|
+
SPECTRAL_ANALYSIS_SETTINGS_COMBINATION_RULE_FOR_DIRECTIONAL_COMPONENTS_ABSOLUTE_SUM: _ClassVar[SpectralAnalysisSettingsCombinationRuleForDirectionalComponents]
|
|
23
|
+
SPECTRAL_ANALYSIS_SETTINGS_COMBINATION_RULE_FOR_DIRECTIONAL_COMPONENTS_SCALED_SUM: _ClassVar[SpectralAnalysisSettingsCombinationRuleForDirectionalComponents]
|
|
24
|
+
|
|
25
|
+
class SpectralAnalysisSettingsDampingForCqcRule(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
26
|
+
__slots__ = ()
|
|
27
|
+
SPECTRAL_ANALYSIS_SETTINGS_DAMPING_FOR_CQC_RULE_CONSTANT_FOR_EACH_MODE: _ClassVar[SpectralAnalysisSettingsDampingForCqcRule]
|
|
28
|
+
SPECTRAL_ANALYSIS_SETTINGS_DAMPING_FOR_CQC_RULE_DIFFERENT_FOR_EACH_MODE: _ClassVar[SpectralAnalysisSettingsDampingForCqcRule]
|
|
29
|
+
|
|
30
|
+
class SpectralAnalysisSettingsZeroPeriodicAccelerationType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
31
|
+
__slots__ = ()
|
|
32
|
+
SPECTRAL_ANALYSIS_SETTINGS_ZERO_PERIODIC_ACCELERATION_TYPE_ACCORDING_TO_RESPONSE_SPECTRUM: _ClassVar[SpectralAnalysisSettingsZeroPeriodicAccelerationType]
|
|
33
|
+
SPECTRAL_ANALYSIS_SETTINGS_ZERO_PERIODIC_ACCELERATION_TYPE_SPECTRAL_ACCELERATION_OF_LAST_CALCULATED_FREQUENCY: _ClassVar[SpectralAnalysisSettingsZeroPeriodicAccelerationType]
|
|
34
|
+
SPECTRAL_ANALYSIS_SETTINGS_ZERO_PERIODIC_ACCELERATION_TYPE_USER_DEFINED: _ClassVar[SpectralAnalysisSettingsZeroPeriodicAccelerationType]
|
|
35
|
+
SPECTRAL_ANALYSIS_SETTINGS_COMBINATION_RULE_FOR_PERIODIC_RESPONSES_SRSS: SpectralAnalysisSettingsCombinationRuleForPeriodicResponses
|
|
36
|
+
SPECTRAL_ANALYSIS_SETTINGS_COMBINATION_RULE_FOR_PERIODIC_RESPONSES_ABSOLUTE_SUM: SpectralAnalysisSettingsCombinationRuleForPeriodicResponses
|
|
37
|
+
SPECTRAL_ANALYSIS_SETTINGS_COMBINATION_RULE_FOR_PERIODIC_RESPONSES_CQC: SpectralAnalysisSettingsCombinationRuleForPeriodicResponses
|
|
38
|
+
SPECTRAL_ANALYSIS_SETTINGS_COMBINATION_RULE_FOR_MISSING_MASSES_SRSS: SpectralAnalysisSettingsCombinationRuleForMissingMasses
|
|
39
|
+
SPECTRAL_ANALYSIS_SETTINGS_COMBINATION_RULE_FOR_MISSING_MASSES_ABSOLUTE_SUM: SpectralAnalysisSettingsCombinationRuleForMissingMasses
|
|
40
|
+
SPECTRAL_ANALYSIS_SETTINGS_COMBINATION_RULE_FOR_DIRECTIONAL_COMPONENTS_SRSS: SpectralAnalysisSettingsCombinationRuleForDirectionalComponents
|
|
41
|
+
SPECTRAL_ANALYSIS_SETTINGS_COMBINATION_RULE_FOR_DIRECTIONAL_COMPONENTS_ABSOLUTE_SUM: SpectralAnalysisSettingsCombinationRuleForDirectionalComponents
|
|
42
|
+
SPECTRAL_ANALYSIS_SETTINGS_COMBINATION_RULE_FOR_DIRECTIONAL_COMPONENTS_SCALED_SUM: SpectralAnalysisSettingsCombinationRuleForDirectionalComponents
|
|
43
|
+
SPECTRAL_ANALYSIS_SETTINGS_DAMPING_FOR_CQC_RULE_CONSTANT_FOR_EACH_MODE: SpectralAnalysisSettingsDampingForCqcRule
|
|
44
|
+
SPECTRAL_ANALYSIS_SETTINGS_DAMPING_FOR_CQC_RULE_DIFFERENT_FOR_EACH_MODE: SpectralAnalysisSettingsDampingForCqcRule
|
|
45
|
+
SPECTRAL_ANALYSIS_SETTINGS_ZERO_PERIODIC_ACCELERATION_TYPE_ACCORDING_TO_RESPONSE_SPECTRUM: SpectralAnalysisSettingsZeroPeriodicAccelerationType
|
|
46
|
+
SPECTRAL_ANALYSIS_SETTINGS_ZERO_PERIODIC_ACCELERATION_TYPE_SPECTRAL_ACCELERATION_OF_LAST_CALCULATED_FREQUENCY: SpectralAnalysisSettingsZeroPeriodicAccelerationType
|
|
47
|
+
SPECTRAL_ANALYSIS_SETTINGS_ZERO_PERIODIC_ACCELERATION_TYPE_USER_DEFINED: SpectralAnalysisSettingsZeroPeriodicAccelerationType
|
|
48
|
+
|
|
49
|
+
class SpectralAnalysisSettings(_message.Message):
|
|
50
|
+
__slots__ = ("no", "user_defined_name_enabled", "name", "comment", "assigned_to", "combination_rule_for_periodic_responses", "use_equivalent_linear_combination", "signed_results_using_dominant_mode", "include_missing_masses", "combination_rule_for_missing_masses", "save_results_of_all_selected_modes", "combination_rule_for_directional_components", "combination_rule_for_directional_components_value", "consider_independent_directions_in_envelope_results", "damping_for_cqc_rule", "constant_d_for_each_mode", "zero_periodic_acceleration_type", "user_defined_zpa", "id_for_export_import", "metadata_for_export_import")
|
|
51
|
+
NO_FIELD_NUMBER: _ClassVar[int]
|
|
52
|
+
USER_DEFINED_NAME_ENABLED_FIELD_NUMBER: _ClassVar[int]
|
|
53
|
+
NAME_FIELD_NUMBER: _ClassVar[int]
|
|
54
|
+
COMMENT_FIELD_NUMBER: _ClassVar[int]
|
|
55
|
+
ASSIGNED_TO_FIELD_NUMBER: _ClassVar[int]
|
|
56
|
+
COMBINATION_RULE_FOR_PERIODIC_RESPONSES_FIELD_NUMBER: _ClassVar[int]
|
|
57
|
+
USE_EQUIVALENT_LINEAR_COMBINATION_FIELD_NUMBER: _ClassVar[int]
|
|
58
|
+
SIGNED_RESULTS_USING_DOMINANT_MODE_FIELD_NUMBER: _ClassVar[int]
|
|
59
|
+
INCLUDE_MISSING_MASSES_FIELD_NUMBER: _ClassVar[int]
|
|
60
|
+
COMBINATION_RULE_FOR_MISSING_MASSES_FIELD_NUMBER: _ClassVar[int]
|
|
61
|
+
SAVE_RESULTS_OF_ALL_SELECTED_MODES_FIELD_NUMBER: _ClassVar[int]
|
|
62
|
+
COMBINATION_RULE_FOR_DIRECTIONAL_COMPONENTS_FIELD_NUMBER: _ClassVar[int]
|
|
63
|
+
COMBINATION_RULE_FOR_DIRECTIONAL_COMPONENTS_VALUE_FIELD_NUMBER: _ClassVar[int]
|
|
64
|
+
CONSIDER_INDEPENDENT_DIRECTIONS_IN_ENVELOPE_RESULTS_FIELD_NUMBER: _ClassVar[int]
|
|
65
|
+
DAMPING_FOR_CQC_RULE_FIELD_NUMBER: _ClassVar[int]
|
|
66
|
+
CONSTANT_D_FOR_EACH_MODE_FIELD_NUMBER: _ClassVar[int]
|
|
67
|
+
ZERO_PERIODIC_ACCELERATION_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
68
|
+
USER_DEFINED_ZPA_FIELD_NUMBER: _ClassVar[int]
|
|
69
|
+
ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
70
|
+
METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
71
|
+
no: int
|
|
72
|
+
user_defined_name_enabled: bool
|
|
73
|
+
name: str
|
|
74
|
+
comment: str
|
|
75
|
+
assigned_to: str
|
|
76
|
+
combination_rule_for_periodic_responses: SpectralAnalysisSettingsCombinationRuleForPeriodicResponses
|
|
77
|
+
use_equivalent_linear_combination: bool
|
|
78
|
+
signed_results_using_dominant_mode: bool
|
|
79
|
+
include_missing_masses: bool
|
|
80
|
+
combination_rule_for_missing_masses: SpectralAnalysisSettingsCombinationRuleForMissingMasses
|
|
81
|
+
save_results_of_all_selected_modes: bool
|
|
82
|
+
combination_rule_for_directional_components: SpectralAnalysisSettingsCombinationRuleForDirectionalComponents
|
|
83
|
+
combination_rule_for_directional_components_value: float
|
|
84
|
+
consider_independent_directions_in_envelope_results: bool
|
|
85
|
+
damping_for_cqc_rule: SpectralAnalysisSettingsDampingForCqcRule
|
|
86
|
+
constant_d_for_each_mode: float
|
|
87
|
+
zero_periodic_acceleration_type: SpectralAnalysisSettingsZeroPeriodicAccelerationType
|
|
88
|
+
user_defined_zpa: float
|
|
89
|
+
id_for_export_import: str
|
|
90
|
+
metadata_for_export_import: str
|
|
91
|
+
def __init__(self, no: _Optional[int] = ..., user_defined_name_enabled: bool = ..., name: _Optional[str] = ..., comment: _Optional[str] = ..., assigned_to: _Optional[str] = ..., combination_rule_for_periodic_responses: _Optional[_Union[SpectralAnalysisSettingsCombinationRuleForPeriodicResponses, str]] = ..., use_equivalent_linear_combination: bool = ..., signed_results_using_dominant_mode: bool = ..., include_missing_masses: bool = ..., combination_rule_for_missing_masses: _Optional[_Union[SpectralAnalysisSettingsCombinationRuleForMissingMasses, str]] = ..., save_results_of_all_selected_modes: bool = ..., combination_rule_for_directional_components: _Optional[_Union[SpectralAnalysisSettingsCombinationRuleForDirectionalComponents, str]] = ..., combination_rule_for_directional_components_value: _Optional[float] = ..., consider_independent_directions_in_envelope_results: bool = ..., damping_for_cqc_rule: _Optional[_Union[SpectralAnalysisSettingsDampingForCqcRule, str]] = ..., constant_d_for_each_mode: _Optional[float] = ..., zero_periodic_acceleration_type: _Optional[_Union[SpectralAnalysisSettingsZeroPeriodicAccelerationType, str]] = ..., user_defined_zpa: _Optional[float] = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
|
|
@@ -0,0 +1,44 @@
|
|
|
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/loading/stability_analysis_settings.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/loading/stability_analysis_settings.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'\n9dlubal/api/rfem/loading/stability_analysis_settings.proto\x12\x17\x64lubal.api.rfem.loading\"\xd6\x12\n\x19StabilityAnalysisSettings\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\x14\n\x07\x63omment\x18\x04 \x01(\tH\x02\x88\x01\x01\x12\x18\n\x0b\x61ssigned_to\x18\x05 \x01(\tH\x03\x88\x01\x01\x12Z\n\ranalysis_type\x18\x06 \x01(\x0e\x32>.dlubal.api.rfem.loading.StabilityAnalysisSettingsAnalysisTypeH\x04\x88\x01\x01\x12)\n\x1cnumber_of_lowest_eigenvalues\x18\x07 \x01(\x05H\x05\x88\x01\x01\x12&\n\x19\x63onsidered_favored_effect\x18\x08 \x01(\x08H\x06\x88\x01\x01\x12\x62\n\x11\x65igenvalue_method\x18\t \x01(\x0e\x32\x42.dlubal.api.rfem.loading.StabilityAnalysisSettingsEigenvalueMethodH\x07\x88\x01\x01\x12:\n-find_eigenvectors_beyond_critical_load_factor\x18\n \x01(\x08H\x08\x88\x01\x01\x12!\n\x14\x63ritical_load_factor\x18\x0b \x01(\x01H\t\x88\x01\x01\x12\x36\n)calculate_without_loading_for_instability\x18\x0c \x01(\x08H\n\x88\x01\x01\x12/\n\"activate_minimum_initial_prestress\x18\r \x01(\x08H\x0b\x88\x01\x01\x12#\n\x16minimum_initial_strain\x18\x0e \x01(\x01H\x0c\x88\x01\x01\x12.\n!display_local_torsional_rotations\x18\x0f \x01(\x08H\r\x88\x01\x01\x12&\n\x19local_torsional_rotations\x18\x10 \x01(\x01H\x0e\x88\x01\x01\x12V\n\x0bmatrix_type\x18\x11 \x01(\x0e\x32<.dlubal.api.rfem.loading.StabilityAnalysisSettingsMatrixTypeH\x0f\x88\x01\x01\x12 \n\x13initial_load_factor\x18\x12 \x01(\x01H\x10\x88\x01\x01\x12\"\n\x15load_factor_increment\x18\x13 \x01(\x01H\x11\x88\x01\x01\x12\x32\n%refinement_of_the_last_load_increment\x18\x14 \x01(\x05H\x12\x88\x01\x01\x12.\n!maximum_number_of_load_increments\x18\x15 \x01(\x05H\x13\x88\x01\x01\x12\x31\n$activate_stopping_of_load_increasing\x18\x16 \x01(\x08H\x14\x88\x01\x01\x12\x81\x01\n\"stopping_of_load_increasing_result\x18\x17 \x01(\x0e\x32P.dlubal.api.rfem.loading.StabilityAnalysisSettingsStoppingOfLoadIncreasingResultH\x15\x88\x01\x01\x12\x42\n5stopping_of_load_increasing_limit_result_displacement\x18\x18 \x01(\x01H\x16\x88\x01\x01\x12>\n1stopping_of_load_increasing_limit_result_rotation\x18\x19 \x01(\x01H\x17\x88\x01\x01\x12\x33\n&stopping_of_load_increasing_limit_node\x18\x1a \x01(\x05H\x18\x88\x01\x01\x12+\n\x1esave_results_of_all_increments\x18\x1b \x01(\x08H\x19\x88\x01\x01\x12!\n\x14id_for_export_import\x18\x1c \x01(\tH\x1a\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\x1d \x01(\tH\x1b\x88\x01\x01\x42\x1c\n\x1a_user_defined_name_enabledB\x07\n\x05_nameB\n\n\x08_commentB\x0e\n\x0c_assigned_toB\x10\n\x0e_analysis_typeB\x1f\n\x1d_number_of_lowest_eigenvaluesB\x1c\n\x1a_considered_favored_effectB\x14\n\x12_eigenvalue_methodB0\n._find_eigenvectors_beyond_critical_load_factorB\x17\n\x15_critical_load_factorB,\n*_calculate_without_loading_for_instabilityB%\n#_activate_minimum_initial_prestressB\x19\n\x17_minimum_initial_strainB$\n\"_display_local_torsional_rotationsB\x1c\n\x1a_local_torsional_rotationsB\x0e\n\x0c_matrix_typeB\x16\n\x14_initial_load_factorB\x18\n\x16_load_factor_incrementB(\n&_refinement_of_the_last_load_incrementB$\n\"_maximum_number_of_load_incrementsB\'\n%_activate_stopping_of_load_increasingB%\n#_stopping_of_load_increasing_resultB8\n6_stopping_of_load_increasing_limit_result_displacementB4\n2_stopping_of_load_increasing_limit_result_rotationB)\n\'_stopping_of_load_increasing_limit_nodeB!\n\x1f_save_results_of_all_incrementsB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_import*\xf1\x02\n%StabilityAnalysisSettingsAnalysisType\x12?\n;STABILITY_ANALYSIS_SETTINGS_ANALYSIS_TYPE_EIGENVALUE_METHOD\x10\x00\x12T\nPSTABILITY_ANALYSIS_SETTINGS_ANALYSIS_TYPE_INCREMENTALY_METHOD_WITHOUT_EIGENVALUE\x10\x02\x12Q\nMSTABILITY_ANALYSIS_SETTINGS_ANALYSIS_TYPE_INCREMENTALY_METHOD_WITH_EIGENVALUE\x10\x01\x12^\nZSTABILITY_ANALYSIS_SETTINGS_ANALYSIS_TYPE_INCREMENTAL_METHOD_MATERIAL_PARAMETERS_REDUCTION\x10\x03*\x93\x03\n)StabilityAnalysisSettingsEigenvalueMethod\x12\x39\n5STABILITY_ANALYSIS_SETTINGS_EIGENVALUE_METHOD_LANCZOS\x10\x00\x12?\n;STABILITY_ANALYSIS_SETTINGS_EIGENVALUE_METHOD_ICG_ITERATION\x10\x03\x12T\nPSTABILITY_ANALYSIS_SETTINGS_EIGENVALUE_METHOD_ROOTS_OF_CHARACTERISTIC_POLYNOMIAL\x10\x01\x12N\nJSTABILITY_ANALYSIS_SETTINGS_EIGENVALUE_METHOD_SHIFTED_INVERSE_POWER_METHOD\x10\x04\x12\x44\n@STABILITY_ANALYSIS_SETTINGS_EIGENVALUE_METHOD_SUBSPACE_ITERATION\x10\x02*\x8d\x01\n#StabilityAnalysisSettingsMatrixType\x12\x34\n0STABILITY_ANALYSIS_SETTINGS_MATRIX_TYPE_STANDARD\x10\x00\x12\x30\n,STABILITY_ANALYSIS_SETTINGS_MATRIX_TYPE_UNIT\x10\x01*\xd5\x05\n7StabilityAnalysisSettingsStoppingOfLoadIncreasingResult\x12Q\nMSTABILITY_ANALYSIS_SETTINGS_STOPPING_OF_LOAD_INCREASING_RESULT_DISPLACEMENT_U\x10\x00\x12S\nOSTABILITY_ANALYSIS_SETTINGS_STOPPING_OF_LOAD_INCREASING_RESULT_DISPLACEMENT_U_X\x10\x01\x12S\nOSTABILITY_ANALYSIS_SETTINGS_STOPPING_OF_LOAD_INCREASING_RESULT_DISPLACEMENT_U_Y\x10\x02\x12S\nOSTABILITY_ANALYSIS_SETTINGS_STOPPING_OF_LOAD_INCREASING_RESULT_DISPLACEMENT_U_Z\x10\x03\x12O\nKSTABILITY_ANALYSIS_SETTINGS_STOPPING_OF_LOAD_INCREASING_RESULT_ROTATION_PHI\x10\x04\x12Q\nMSTABILITY_ANALYSIS_SETTINGS_STOPPING_OF_LOAD_INCREASING_RESULT_ROTATION_PHI_X\x10\x05\x12Q\nMSTABILITY_ANALYSIS_SETTINGS_STOPPING_OF_LOAD_INCREASING_RESULT_ROTATION_PHI_Y\x10\x06\x12Q\nMSTABILITY_ANALYSIS_SETTINGS_STOPPING_OF_LOAD_INCREASING_RESULT_ROTATION_PHI_Z\x10\x07\x62\x06proto3')
|
|
28
|
+
|
|
29
|
+
_globals = globals()
|
|
30
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
31
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.loading.stability_analysis_settings_pb2', _globals)
|
|
32
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
33
|
+
DESCRIPTOR._loaded_options = None
|
|
34
|
+
_globals['_STABILITYANALYSISSETTINGSANALYSISTYPE']._serialized_start=2480
|
|
35
|
+
_globals['_STABILITYANALYSISSETTINGSANALYSISTYPE']._serialized_end=2849
|
|
36
|
+
_globals['_STABILITYANALYSISSETTINGSEIGENVALUEMETHOD']._serialized_start=2852
|
|
37
|
+
_globals['_STABILITYANALYSISSETTINGSEIGENVALUEMETHOD']._serialized_end=3255
|
|
38
|
+
_globals['_STABILITYANALYSISSETTINGSMATRIXTYPE']._serialized_start=3258
|
|
39
|
+
_globals['_STABILITYANALYSISSETTINGSMATRIXTYPE']._serialized_end=3399
|
|
40
|
+
_globals['_STABILITYANALYSISSETTINGSSTOPPINGOFLOADINCREASINGRESULT']._serialized_start=3402
|
|
41
|
+
_globals['_STABILITYANALYSISSETTINGSSTOPPINGOFLOADINCREASINGRESULT']._serialized_end=4127
|
|
42
|
+
_globals['_STABILITYANALYSISSETTINGS']._serialized_start=87
|
|
43
|
+
_globals['_STABILITYANALYSISSETTINGS']._serialized_end=2477
|
|
44
|
+
# @@protoc_insertion_point(module_scope)
|
|
@@ -0,0 +1,118 @@
|
|
|
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, Optional as _Optional, Union as _Union
|
|
5
|
+
|
|
6
|
+
DESCRIPTOR: _descriptor.FileDescriptor
|
|
7
|
+
|
|
8
|
+
class StabilityAnalysisSettingsAnalysisType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
9
|
+
__slots__ = ()
|
|
10
|
+
STABILITY_ANALYSIS_SETTINGS_ANALYSIS_TYPE_EIGENVALUE_METHOD: _ClassVar[StabilityAnalysisSettingsAnalysisType]
|
|
11
|
+
STABILITY_ANALYSIS_SETTINGS_ANALYSIS_TYPE_INCREMENTALY_METHOD_WITHOUT_EIGENVALUE: _ClassVar[StabilityAnalysisSettingsAnalysisType]
|
|
12
|
+
STABILITY_ANALYSIS_SETTINGS_ANALYSIS_TYPE_INCREMENTALY_METHOD_WITH_EIGENVALUE: _ClassVar[StabilityAnalysisSettingsAnalysisType]
|
|
13
|
+
STABILITY_ANALYSIS_SETTINGS_ANALYSIS_TYPE_INCREMENTAL_METHOD_MATERIAL_PARAMETERS_REDUCTION: _ClassVar[StabilityAnalysisSettingsAnalysisType]
|
|
14
|
+
|
|
15
|
+
class StabilityAnalysisSettingsEigenvalueMethod(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
16
|
+
__slots__ = ()
|
|
17
|
+
STABILITY_ANALYSIS_SETTINGS_EIGENVALUE_METHOD_LANCZOS: _ClassVar[StabilityAnalysisSettingsEigenvalueMethod]
|
|
18
|
+
STABILITY_ANALYSIS_SETTINGS_EIGENVALUE_METHOD_ICG_ITERATION: _ClassVar[StabilityAnalysisSettingsEigenvalueMethod]
|
|
19
|
+
STABILITY_ANALYSIS_SETTINGS_EIGENVALUE_METHOD_ROOTS_OF_CHARACTERISTIC_POLYNOMIAL: _ClassVar[StabilityAnalysisSettingsEigenvalueMethod]
|
|
20
|
+
STABILITY_ANALYSIS_SETTINGS_EIGENVALUE_METHOD_SHIFTED_INVERSE_POWER_METHOD: _ClassVar[StabilityAnalysisSettingsEigenvalueMethod]
|
|
21
|
+
STABILITY_ANALYSIS_SETTINGS_EIGENVALUE_METHOD_SUBSPACE_ITERATION: _ClassVar[StabilityAnalysisSettingsEigenvalueMethod]
|
|
22
|
+
|
|
23
|
+
class StabilityAnalysisSettingsMatrixType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
24
|
+
__slots__ = ()
|
|
25
|
+
STABILITY_ANALYSIS_SETTINGS_MATRIX_TYPE_STANDARD: _ClassVar[StabilityAnalysisSettingsMatrixType]
|
|
26
|
+
STABILITY_ANALYSIS_SETTINGS_MATRIX_TYPE_UNIT: _ClassVar[StabilityAnalysisSettingsMatrixType]
|
|
27
|
+
|
|
28
|
+
class StabilityAnalysisSettingsStoppingOfLoadIncreasingResult(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
29
|
+
__slots__ = ()
|
|
30
|
+
STABILITY_ANALYSIS_SETTINGS_STOPPING_OF_LOAD_INCREASING_RESULT_DISPLACEMENT_U: _ClassVar[StabilityAnalysisSettingsStoppingOfLoadIncreasingResult]
|
|
31
|
+
STABILITY_ANALYSIS_SETTINGS_STOPPING_OF_LOAD_INCREASING_RESULT_DISPLACEMENT_U_X: _ClassVar[StabilityAnalysisSettingsStoppingOfLoadIncreasingResult]
|
|
32
|
+
STABILITY_ANALYSIS_SETTINGS_STOPPING_OF_LOAD_INCREASING_RESULT_DISPLACEMENT_U_Y: _ClassVar[StabilityAnalysisSettingsStoppingOfLoadIncreasingResult]
|
|
33
|
+
STABILITY_ANALYSIS_SETTINGS_STOPPING_OF_LOAD_INCREASING_RESULT_DISPLACEMENT_U_Z: _ClassVar[StabilityAnalysisSettingsStoppingOfLoadIncreasingResult]
|
|
34
|
+
STABILITY_ANALYSIS_SETTINGS_STOPPING_OF_LOAD_INCREASING_RESULT_ROTATION_PHI: _ClassVar[StabilityAnalysisSettingsStoppingOfLoadIncreasingResult]
|
|
35
|
+
STABILITY_ANALYSIS_SETTINGS_STOPPING_OF_LOAD_INCREASING_RESULT_ROTATION_PHI_X: _ClassVar[StabilityAnalysisSettingsStoppingOfLoadIncreasingResult]
|
|
36
|
+
STABILITY_ANALYSIS_SETTINGS_STOPPING_OF_LOAD_INCREASING_RESULT_ROTATION_PHI_Y: _ClassVar[StabilityAnalysisSettingsStoppingOfLoadIncreasingResult]
|
|
37
|
+
STABILITY_ANALYSIS_SETTINGS_STOPPING_OF_LOAD_INCREASING_RESULT_ROTATION_PHI_Z: _ClassVar[StabilityAnalysisSettingsStoppingOfLoadIncreasingResult]
|
|
38
|
+
STABILITY_ANALYSIS_SETTINGS_ANALYSIS_TYPE_EIGENVALUE_METHOD: StabilityAnalysisSettingsAnalysisType
|
|
39
|
+
STABILITY_ANALYSIS_SETTINGS_ANALYSIS_TYPE_INCREMENTALY_METHOD_WITHOUT_EIGENVALUE: StabilityAnalysisSettingsAnalysisType
|
|
40
|
+
STABILITY_ANALYSIS_SETTINGS_ANALYSIS_TYPE_INCREMENTALY_METHOD_WITH_EIGENVALUE: StabilityAnalysisSettingsAnalysisType
|
|
41
|
+
STABILITY_ANALYSIS_SETTINGS_ANALYSIS_TYPE_INCREMENTAL_METHOD_MATERIAL_PARAMETERS_REDUCTION: StabilityAnalysisSettingsAnalysisType
|
|
42
|
+
STABILITY_ANALYSIS_SETTINGS_EIGENVALUE_METHOD_LANCZOS: StabilityAnalysisSettingsEigenvalueMethod
|
|
43
|
+
STABILITY_ANALYSIS_SETTINGS_EIGENVALUE_METHOD_ICG_ITERATION: StabilityAnalysisSettingsEigenvalueMethod
|
|
44
|
+
STABILITY_ANALYSIS_SETTINGS_EIGENVALUE_METHOD_ROOTS_OF_CHARACTERISTIC_POLYNOMIAL: StabilityAnalysisSettingsEigenvalueMethod
|
|
45
|
+
STABILITY_ANALYSIS_SETTINGS_EIGENVALUE_METHOD_SHIFTED_INVERSE_POWER_METHOD: StabilityAnalysisSettingsEigenvalueMethod
|
|
46
|
+
STABILITY_ANALYSIS_SETTINGS_EIGENVALUE_METHOD_SUBSPACE_ITERATION: StabilityAnalysisSettingsEigenvalueMethod
|
|
47
|
+
STABILITY_ANALYSIS_SETTINGS_MATRIX_TYPE_STANDARD: StabilityAnalysisSettingsMatrixType
|
|
48
|
+
STABILITY_ANALYSIS_SETTINGS_MATRIX_TYPE_UNIT: StabilityAnalysisSettingsMatrixType
|
|
49
|
+
STABILITY_ANALYSIS_SETTINGS_STOPPING_OF_LOAD_INCREASING_RESULT_DISPLACEMENT_U: StabilityAnalysisSettingsStoppingOfLoadIncreasingResult
|
|
50
|
+
STABILITY_ANALYSIS_SETTINGS_STOPPING_OF_LOAD_INCREASING_RESULT_DISPLACEMENT_U_X: StabilityAnalysisSettingsStoppingOfLoadIncreasingResult
|
|
51
|
+
STABILITY_ANALYSIS_SETTINGS_STOPPING_OF_LOAD_INCREASING_RESULT_DISPLACEMENT_U_Y: StabilityAnalysisSettingsStoppingOfLoadIncreasingResult
|
|
52
|
+
STABILITY_ANALYSIS_SETTINGS_STOPPING_OF_LOAD_INCREASING_RESULT_DISPLACEMENT_U_Z: StabilityAnalysisSettingsStoppingOfLoadIncreasingResult
|
|
53
|
+
STABILITY_ANALYSIS_SETTINGS_STOPPING_OF_LOAD_INCREASING_RESULT_ROTATION_PHI: StabilityAnalysisSettingsStoppingOfLoadIncreasingResult
|
|
54
|
+
STABILITY_ANALYSIS_SETTINGS_STOPPING_OF_LOAD_INCREASING_RESULT_ROTATION_PHI_X: StabilityAnalysisSettingsStoppingOfLoadIncreasingResult
|
|
55
|
+
STABILITY_ANALYSIS_SETTINGS_STOPPING_OF_LOAD_INCREASING_RESULT_ROTATION_PHI_Y: StabilityAnalysisSettingsStoppingOfLoadIncreasingResult
|
|
56
|
+
STABILITY_ANALYSIS_SETTINGS_STOPPING_OF_LOAD_INCREASING_RESULT_ROTATION_PHI_Z: StabilityAnalysisSettingsStoppingOfLoadIncreasingResult
|
|
57
|
+
|
|
58
|
+
class StabilityAnalysisSettings(_message.Message):
|
|
59
|
+
__slots__ = ("no", "user_defined_name_enabled", "name", "comment", "assigned_to", "analysis_type", "number_of_lowest_eigenvalues", "considered_favored_effect", "eigenvalue_method", "find_eigenvectors_beyond_critical_load_factor", "critical_load_factor", "calculate_without_loading_for_instability", "activate_minimum_initial_prestress", "minimum_initial_strain", "display_local_torsional_rotations", "local_torsional_rotations", "matrix_type", "initial_load_factor", "load_factor_increment", "refinement_of_the_last_load_increment", "maximum_number_of_load_increments", "activate_stopping_of_load_increasing", "stopping_of_load_increasing_result", "stopping_of_load_increasing_limit_result_displacement", "stopping_of_load_increasing_limit_result_rotation", "stopping_of_load_increasing_limit_node", "save_results_of_all_increments", "id_for_export_import", "metadata_for_export_import")
|
|
60
|
+
NO_FIELD_NUMBER: _ClassVar[int]
|
|
61
|
+
USER_DEFINED_NAME_ENABLED_FIELD_NUMBER: _ClassVar[int]
|
|
62
|
+
NAME_FIELD_NUMBER: _ClassVar[int]
|
|
63
|
+
COMMENT_FIELD_NUMBER: _ClassVar[int]
|
|
64
|
+
ASSIGNED_TO_FIELD_NUMBER: _ClassVar[int]
|
|
65
|
+
ANALYSIS_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
66
|
+
NUMBER_OF_LOWEST_EIGENVALUES_FIELD_NUMBER: _ClassVar[int]
|
|
67
|
+
CONSIDERED_FAVORED_EFFECT_FIELD_NUMBER: _ClassVar[int]
|
|
68
|
+
EIGENVALUE_METHOD_FIELD_NUMBER: _ClassVar[int]
|
|
69
|
+
FIND_EIGENVECTORS_BEYOND_CRITICAL_LOAD_FACTOR_FIELD_NUMBER: _ClassVar[int]
|
|
70
|
+
CRITICAL_LOAD_FACTOR_FIELD_NUMBER: _ClassVar[int]
|
|
71
|
+
CALCULATE_WITHOUT_LOADING_FOR_INSTABILITY_FIELD_NUMBER: _ClassVar[int]
|
|
72
|
+
ACTIVATE_MINIMUM_INITIAL_PRESTRESS_FIELD_NUMBER: _ClassVar[int]
|
|
73
|
+
MINIMUM_INITIAL_STRAIN_FIELD_NUMBER: _ClassVar[int]
|
|
74
|
+
DISPLAY_LOCAL_TORSIONAL_ROTATIONS_FIELD_NUMBER: _ClassVar[int]
|
|
75
|
+
LOCAL_TORSIONAL_ROTATIONS_FIELD_NUMBER: _ClassVar[int]
|
|
76
|
+
MATRIX_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
77
|
+
INITIAL_LOAD_FACTOR_FIELD_NUMBER: _ClassVar[int]
|
|
78
|
+
LOAD_FACTOR_INCREMENT_FIELD_NUMBER: _ClassVar[int]
|
|
79
|
+
REFINEMENT_OF_THE_LAST_LOAD_INCREMENT_FIELD_NUMBER: _ClassVar[int]
|
|
80
|
+
MAXIMUM_NUMBER_OF_LOAD_INCREMENTS_FIELD_NUMBER: _ClassVar[int]
|
|
81
|
+
ACTIVATE_STOPPING_OF_LOAD_INCREASING_FIELD_NUMBER: _ClassVar[int]
|
|
82
|
+
STOPPING_OF_LOAD_INCREASING_RESULT_FIELD_NUMBER: _ClassVar[int]
|
|
83
|
+
STOPPING_OF_LOAD_INCREASING_LIMIT_RESULT_DISPLACEMENT_FIELD_NUMBER: _ClassVar[int]
|
|
84
|
+
STOPPING_OF_LOAD_INCREASING_LIMIT_RESULT_ROTATION_FIELD_NUMBER: _ClassVar[int]
|
|
85
|
+
STOPPING_OF_LOAD_INCREASING_LIMIT_NODE_FIELD_NUMBER: _ClassVar[int]
|
|
86
|
+
SAVE_RESULTS_OF_ALL_INCREMENTS_FIELD_NUMBER: _ClassVar[int]
|
|
87
|
+
ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
88
|
+
METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
89
|
+
no: int
|
|
90
|
+
user_defined_name_enabled: bool
|
|
91
|
+
name: str
|
|
92
|
+
comment: str
|
|
93
|
+
assigned_to: str
|
|
94
|
+
analysis_type: StabilityAnalysisSettingsAnalysisType
|
|
95
|
+
number_of_lowest_eigenvalues: int
|
|
96
|
+
considered_favored_effect: bool
|
|
97
|
+
eigenvalue_method: StabilityAnalysisSettingsEigenvalueMethod
|
|
98
|
+
find_eigenvectors_beyond_critical_load_factor: bool
|
|
99
|
+
critical_load_factor: float
|
|
100
|
+
calculate_without_loading_for_instability: bool
|
|
101
|
+
activate_minimum_initial_prestress: bool
|
|
102
|
+
minimum_initial_strain: float
|
|
103
|
+
display_local_torsional_rotations: bool
|
|
104
|
+
local_torsional_rotations: float
|
|
105
|
+
matrix_type: StabilityAnalysisSettingsMatrixType
|
|
106
|
+
initial_load_factor: float
|
|
107
|
+
load_factor_increment: float
|
|
108
|
+
refinement_of_the_last_load_increment: int
|
|
109
|
+
maximum_number_of_load_increments: int
|
|
110
|
+
activate_stopping_of_load_increasing: bool
|
|
111
|
+
stopping_of_load_increasing_result: StabilityAnalysisSettingsStoppingOfLoadIncreasingResult
|
|
112
|
+
stopping_of_load_increasing_limit_result_displacement: float
|
|
113
|
+
stopping_of_load_increasing_limit_result_rotation: float
|
|
114
|
+
stopping_of_load_increasing_limit_node: int
|
|
115
|
+
save_results_of_all_increments: bool
|
|
116
|
+
id_for_export_import: str
|
|
117
|
+
metadata_for_export_import: str
|
|
118
|
+
def __init__(self, no: _Optional[int] = ..., user_defined_name_enabled: bool = ..., name: _Optional[str] = ..., comment: _Optional[str] = ..., assigned_to: _Optional[str] = ..., analysis_type: _Optional[_Union[StabilityAnalysisSettingsAnalysisType, str]] = ..., number_of_lowest_eigenvalues: _Optional[int] = ..., considered_favored_effect: bool = ..., eigenvalue_method: _Optional[_Union[StabilityAnalysisSettingsEigenvalueMethod, str]] = ..., find_eigenvectors_beyond_critical_load_factor: bool = ..., critical_load_factor: _Optional[float] = ..., calculate_without_loading_for_instability: bool = ..., activate_minimum_initial_prestress: bool = ..., minimum_initial_strain: _Optional[float] = ..., display_local_torsional_rotations: bool = ..., local_torsional_rotations: _Optional[float] = ..., matrix_type: _Optional[_Union[StabilityAnalysisSettingsMatrixType, str]] = ..., initial_load_factor: _Optional[float] = ..., load_factor_increment: _Optional[float] = ..., refinement_of_the_last_load_increment: _Optional[int] = ..., maximum_number_of_load_increments: _Optional[int] = ..., activate_stopping_of_load_increasing: bool = ..., stopping_of_load_increasing_result: _Optional[_Union[StabilityAnalysisSettingsStoppingOfLoadIncreasingResult, str]] = ..., stopping_of_load_increasing_limit_result_displacement: _Optional[float] = ..., stopping_of_load_increasing_limit_result_rotation: _Optional[float] = ..., stopping_of_load_increasing_limit_node: _Optional[int] = ..., save_results_of_all_increments: bool = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
|
|
@@ -0,0 +1,46 @@
|
|
|
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/loading/static_analysis_settings.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/loading/static_analysis_settings.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/loading/static_analysis_settings.proto\x12\x17\x64lubal.api.rfem.loading\"\xcf&\n\x16StaticAnalysisSettings\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\x12W\n\ranalysis_type\x18\x04 \x01(\x0e\x32;.dlubal.api.rfem.loading.StaticAnalysisSettingsAnalysisTypeH\x02\x88\x01\x01\x12\x88\x01\n\'iterative_method_for_nonlinear_analysis\x18\x05 \x01(\x0e\x32R.dlubal.api.rfem.loading.StaticAnalysisSettingsIterativeMethodForNonlinearAnalysisH\x03\x88\x01\x01\x12%\n\x18max_number_of_iterations\x18\x06 \x01(\x05H\x04\x88\x01\x01\x12&\n\x19number_of_load_increments\x18\x07 \x01(\x05H\x05\x88\x01\x01\x12m\n\x19method_of_equation_system\x18\x08 \x01(\x0e\x32\x45.dlubal.api.rfem.loading.StaticAnalysisSettingsMethodOfEquationSystemH\x06\x88\x01\x01\x12\x64\n\x14plate_bending_theory\x18\t \x01(\x0e\x32\x41.dlubal.api.rfem.loading.StaticAnalysisSettingsPlateBendingTheoryH\x07\x88\x01\x01\x12>\n1standard_precision_and_tolerance_settings_enabled\x18\n \x01(\x08H\x08\x88\x01\x01\x12.\n!ignore_all_nonlinearities_enabled\x18\x0b \x01(\x08H\t\x88\x01\x01\x12H\n;precision_of_convergence_criteria_for_nonlinear_calculation\x18\x0c \x01(\x01H\n\x88\x01\x01\x12,\n\x1finstability_detection_tolerance\x18\r \x01(\x01H\x0b\x88\x01\x01\x12\x41\n4relative_setting_of_time_step_for_dynamic_relaxation\x18\x0e \x01(\x01H\x0c\x88\x01\x01\x12-\n iterative_calculation_robustness\x18\x0f \x01(\x01H\r\x88\x01\x01\x12\x30\n#modify_loading_by_multiplier_factor\x18\x10 \x01(\x08H\x0e\x88\x01\x01\x12&\n\x19loading_multiplier_factor\x18\x11 \x01(\x01H\x0f\x88\x01\x01\x12-\n divide_results_by_loading_factor\x18\x12 \x01(\x08H\x10\x88\x01\x01\x12@\n3consider_favorable_effect_due_to_tension_in_members\x18\x13 \x01(\x08H\x11\x88\x01\x01\x12<\n/check_of_stability_based_on_rate_of_deformation\x18\x14 \x01(\x08H\x12\x88\x01\x01\x12\x30\n#try_to_calculate_instabil_structure\x18\x15 \x01(\x08H\x13\x88\x01\x01\x12\x30\n#displacements_due_to_bourdon_effect\x18\x16 \x01(\x08H\x14\x88\x01\x01\x12\x30\n#save_results_of_all_load_increments\x18\x17 \x01(\x08H\x15\x88\x01\x01\x12\'\n\x1anonsymmetric_direct_solver\x18\x18 \x01(\x08H\x16\x88\x01\x01\x12\x31\n$equilibrium_for_undeformed_structure\x18\x19 \x01(\x08H\x17\x88\x01\x01\x12\x14\n\x07\x63omment\x18\x1a \x01(\tH\x18\x88\x01\x01\x12$\n\x17percentage_of_iteration\x18\x1b \x01(\x05H\x19\x88\x01\x01\x12\x38\n+refer_internal_forces_to_deformed_structure\x18\x1c \x01(\x08H\x1a\x88\x01\x01\x12J\n=refer_internal_forces_to_deformed_structure_for_normal_forces\x18\x1d \x01(\x08H\x1b\x88\x01\x01\x12I\n<refer_internal_forces_to_deformed_structure_for_shear_forces\x18\x1e \x01(\x08H\x1c\x88\x01\x01\x12\x44\n7refer_internal_forces_to_deformed_structure_for_moments\x18\x1f \x01(\x08H\x1d\x88\x01\x01\x12$\n\x17mass_conversion_enabled\x18 \x01(\x08H\x1e\x88\x01\x01\x12\x34\n\'mass_conversion_defined_as_acceleration\x18! \x01(\x08H\x1f\x88\x01\x01\x12\x32\n%mass_conversion_factor_in_direction_x\x18\" \x01(\x01H \x88\x01\x01\x12\x38\n+mass_conversion_acceleration_in_direction_x\x18# \x01(\x01H!\x88\x01\x01\x12\x32\n%mass_conversion_factor_in_direction_y\x18$ \x01(\x01H\"\x88\x01\x01\x12\x38\n+mass_conversion_acceleration_in_direction_y\x18% \x01(\x01H#\x88\x01\x01\x12\x32\n%mass_conversion_factor_in_direction_z\x18& \x01(\x01H$\x88\x01\x01\x12\x38\n+mass_conversion_acceleration_in_direction_z\x18\' \x01(\x01H%\x88\x01\x01\x12\x44\n7deformation_of_failing_members_and_reactivation_enabled\x18( \x01(\x08H&\x88\x01\x01\x12,\n\x1fmaximum_number_of_reactivations\x18) \x01(\x05H\'\x88\x01\x01\x12)\n\x1c\x65xceptional_handling_enabled\x18* \x01(\x08H(\x88\x01\x01\x12y\n\x1f\x61ssign_reduce_stiffness_enabled\x18+ \x01(\x0e\x32K.dlubal.api.rfem.loading.StaticAnalysisSettingsAssignReduceStiffnessEnabledH)\x88\x01\x01\x12*\n\x1dreduction_factor_of_stiffness\x18, \x01(\x05H*\x88\x01\x01\x12\x37\n*number_of_iterations_for_loading_prestress\x18- \x01(\x05H+\x88\x01\x01\x12\x37\n*integrate_preliminary_form_finding_enabled\x18. \x01(\x08H,\x88\x01\x01\x12!\n\x14speed_of_convergence\x18/ \x01(\x01H-\x88\x01\x01\x12&\n\x19\x63utting_patterns_settings\x18\x30 \x01(\x08H.\x88\x01\x01\x12)\n\x1csmoothness_of_boundary_lines\x18\x31 \x01(\x01H/\x88\x01\x01\x12<\n/ratio_of_distance_of_cutting_lines_node_to_mesh\x18\x32 \x01(\x01H0\x88\x01\x01\x12!\n\x14id_for_export_import\x18\x33 \x01(\tH1\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\x34 \x01(\tH2\x88\x01\x01\x42\x1c\n\x1a_user_defined_name_enabledB\x07\n\x05_nameB\x10\n\x0e_analysis_typeB*\n(_iterative_method_for_nonlinear_analysisB\x1b\n\x19_max_number_of_iterationsB\x1c\n\x1a_number_of_load_incrementsB\x1c\n\x1a_method_of_equation_systemB\x17\n\x15_plate_bending_theoryB4\n2_standard_precision_and_tolerance_settings_enabledB$\n\"_ignore_all_nonlinearities_enabledB>\n<_precision_of_convergence_criteria_for_nonlinear_calculationB\"\n _instability_detection_toleranceB7\n5_relative_setting_of_time_step_for_dynamic_relaxationB#\n!_iterative_calculation_robustnessB&\n$_modify_loading_by_multiplier_factorB\x1c\n\x1a_loading_multiplier_factorB#\n!_divide_results_by_loading_factorB6\n4_consider_favorable_effect_due_to_tension_in_membersB2\n0_check_of_stability_based_on_rate_of_deformationB&\n$_try_to_calculate_instabil_structureB&\n$_displacements_due_to_bourdon_effectB&\n$_save_results_of_all_load_incrementsB\x1d\n\x1b_nonsymmetric_direct_solverB\'\n%_equilibrium_for_undeformed_structureB\n\n\x08_commentB\x1a\n\x18_percentage_of_iterationB.\n,_refer_internal_forces_to_deformed_structureB@\n>_refer_internal_forces_to_deformed_structure_for_normal_forcesB?\n=_refer_internal_forces_to_deformed_structure_for_shear_forcesB:\n8_refer_internal_forces_to_deformed_structure_for_momentsB\x1a\n\x18_mass_conversion_enabledB*\n(_mass_conversion_defined_as_accelerationB(\n&_mass_conversion_factor_in_direction_xB.\n,_mass_conversion_acceleration_in_direction_xB(\n&_mass_conversion_factor_in_direction_yB.\n,_mass_conversion_acceleration_in_direction_yB(\n&_mass_conversion_factor_in_direction_zB.\n,_mass_conversion_acceleration_in_direction_zB:\n8_deformation_of_failing_members_and_reactivation_enabledB\"\n _maximum_number_of_reactivationsB\x1f\n\x1d_exceptional_handling_enabledB\"\n _assign_reduce_stiffness_enabledB \n\x1e_reduction_factor_of_stiffnessB-\n+_number_of_iterations_for_loading_prestressB-\n+_integrate_preliminary_form_finding_enabledB\x17\n\x15_speed_of_convergenceB\x1c\n\x1a_cutting_patterns_settingsB\x1f\n\x1d_smoothness_of_boundary_linesB2\n0_ratio_of_distance_of_cutting_lines_node_to_meshB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_import*\xe5\x01\n\"StaticAnalysisSettingsAnalysisType\x12?\n;STATIC_ANALYSIS_SETTINGS_ANALYSIS_TYPE_GEOMETRICALLY_LINEAR\x10\x00\x12=\n9STATIC_ANALYSIS_SETTINGS_ANALYSIS_TYPE_LARGE_DEFORMATIONS\x10\x02\x12?\n;STATIC_ANALYSIS_SETTINGS_ANALYSIS_TYPE_SECOND_ORDER_P_DELTA\x10\x01*\xfd\x04\n9StaticAnalysisSettingsIterativeMethodForNonlinearAnalysis\x12S\nOSTATIC_ANALYSIS_SETTINGS_ITERATIVE_METHOD_FOR_NONLINEAR_ANALYSIS_NEWTON_RAPHSON\x10\x00\x12W\nSSTATIC_ANALYSIS_SETTINGS_ITERATIVE_METHOD_FOR_NONLINEAR_ANALYSIS_DYNAMIC_RELAXATION\x10\x05\x12h\ndSTATIC_ANALYSIS_SETTINGS_ITERATIVE_METHOD_FOR_NONLINEAR_ANALYSIS_NEWTON_RAPHSON_COMBINED_WITH_PICARD\x10\x01\x12k\ngSTATIC_ANALYSIS_SETTINGS_ITERATIVE_METHOD_FOR_NONLINEAR_ANALYSIS_NEWTON_RAPHSON_WITH_CONSTANT_STIFFNESS\x10\x03\x12n\njSTATIC_ANALYSIS_SETTINGS_ITERATIVE_METHOD_FOR_NONLINEAR_ANALYSIS_NEWTON_RAPHSON_WITH_POSTCRITICAL_ANALYSIS\x10\x04\x12K\nGSTATIC_ANALYSIS_SETTINGS_ITERATIVE_METHOD_FOR_NONLINEAR_ANALYSIS_PICARD\x10\x02*\xaf\x01\n,StaticAnalysisSettingsMethodOfEquationSystem\x12=\n9STATIC_ANALYSIS_SETTINGS_METHOD_OF_EQUATION_SYSTEM_DIRECT\x10\x00\x12@\n<STATIC_ANALYSIS_SETTINGS_METHOD_OF_EQUATION_SYSTEM_ITERATIVE\x10\x01*\xa2\x01\n(StaticAnalysisSettingsPlateBendingTheory\x12\x39\n5STATIC_ANALYSIS_SETTINGS_PLATE_BENDING_THEORY_MINDLIN\x10\x00\x12;\n7STATIC_ANALYSIS_SETTINGS_PLATE_BENDING_THEORY_KIRCHHOFF\x10\x01*\xa6\x02\n2StaticAnalysisSettingsAssignReduceStiffnessEnabled\x12\x85\x01\n\x80\x01STATIC_ANALYSIS_SETTINGS_ASSIGN_REDUCE_STIFFNESS_ENABLED_FAIILING_MEMBERS_TO_BE_REMOVED_INDIVIDUALY_DURING_SUCCESSIVE_ITERATIONS\x10\x00\x12h\ndSTATIC_ANALYSIS_SETTINGS_ASSIGN_REDUCE_STIFFNESS_ENABLED_ASSIGN_REDUCED_STIFFNESS_TO_FAILING_MEMBERS\x10\x01\x62\x06proto3')
|
|
28
|
+
|
|
29
|
+
_globals = globals()
|
|
30
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
31
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.loading.static_analysis_settings_pb2', _globals)
|
|
32
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
33
|
+
DESCRIPTOR._loaded_options = None
|
|
34
|
+
_globals['_STATICANALYSISSETTINGSANALYSISTYPE']._serialized_start=5030
|
|
35
|
+
_globals['_STATICANALYSISSETTINGSANALYSISTYPE']._serialized_end=5259
|
|
36
|
+
_globals['_STATICANALYSISSETTINGSITERATIVEMETHODFORNONLINEARANALYSIS']._serialized_start=5262
|
|
37
|
+
_globals['_STATICANALYSISSETTINGSITERATIVEMETHODFORNONLINEARANALYSIS']._serialized_end=5899
|
|
38
|
+
_globals['_STATICANALYSISSETTINGSMETHODOFEQUATIONSYSTEM']._serialized_start=5902
|
|
39
|
+
_globals['_STATICANALYSISSETTINGSMETHODOFEQUATIONSYSTEM']._serialized_end=6077
|
|
40
|
+
_globals['_STATICANALYSISSETTINGSPLATEBENDINGTHEORY']._serialized_start=6080
|
|
41
|
+
_globals['_STATICANALYSISSETTINGSPLATEBENDINGTHEORY']._serialized_end=6242
|
|
42
|
+
_globals['_STATICANALYSISSETTINGSASSIGNREDUCESTIFFNESSENABLED']._serialized_start=6245
|
|
43
|
+
_globals['_STATICANALYSISSETTINGSASSIGNREDUCESTIFFNESSENABLED']._serialized_end=6539
|
|
44
|
+
_globals['_STATICANALYSISSETTINGS']._serialized_start=84
|
|
45
|
+
_globals['_STATICANALYSISSETTINGS']._serialized_end=5027
|
|
46
|
+
# @@protoc_insertion_point(module_scope)
|