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,103 @@
|
|
|
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/types_for_lines/line_hinge.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/types_for_lines/line_hinge.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'\n0dlubal/api/rfem/types_for_lines/line_hinge.proto\x12\x1f\x64lubal.api.rfem.types_for_lines\x1a\x1e\x64lubal/api/common/common.proto\"\x80^\n\tLineHinge\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&\n\x19translational_release_u_x\x18\x05 \x01(\x01H\x03\x88\x01\x01\x12\x81\x01\n&translational_release_u_x_nonlinearity\x18\x06 \x01(\x0e\x32L.dlubal.api.rfem.types_for_lines.LineHingeTranslationalReleaseUXNonlinearityH\x04\x88\x01\x01\x12&\n\x19translational_release_u_y\x18\x07 \x01(\x01H\x05\x88\x01\x01\x12\x81\x01\n&translational_release_u_y_nonlinearity\x18\x08 \x01(\x0e\x32L.dlubal.api.rfem.types_for_lines.LineHingeTranslationalReleaseUYNonlinearityH\x06\x88\x01\x01\x12&\n\x19translational_release_u_z\x18\t \x01(\x01H\x07\x88\x01\x01\x12\x81\x01\n&translational_release_u_z_nonlinearity\x18\n \x01(\x0e\x32L.dlubal.api.rfem.types_for_lines.LineHingeTranslationalReleaseUZNonlinearityH\x08\x88\x01\x01\x12%\n\x18rotational_release_phi_x\x18\x0b \x01(\x01H\t\x88\x01\x01\x12\x7f\n%rotational_release_phi_x_nonlinearity\x18\x0c \x01(\x0e\x32K.dlubal.api.rfem.types_for_lines.LineHingeRotationalReleasePhiXNonlinearityH\n\x88\x01\x01\x12\x80\x01\n&partial_activity_along_x_negative_type\x18\r \x01(\x0e\x32K.dlubal.api.rfem.types_for_lines.LineHingePartialActivityAlongXNegativeTypeH\x0b\x88\x01\x01\x12\x80\x01\n&partial_activity_along_x_positive_type\x18\x0e \x01(\x0e\x32K.dlubal.api.rfem.types_for_lines.LineHingePartialActivityAlongXPositiveTypeH\x0c\x88\x01\x01\x12\x80\x01\n&partial_activity_along_y_negative_type\x18\x0f \x01(\x0e\x32K.dlubal.api.rfem.types_for_lines.LineHingePartialActivityAlongYNegativeTypeH\r\x88\x01\x01\x12\x80\x01\n&partial_activity_along_y_positive_type\x18\x10 \x01(\x0e\x32K.dlubal.api.rfem.types_for_lines.LineHingePartialActivityAlongYPositiveTypeH\x0e\x88\x01\x01\x12\x80\x01\n&partial_activity_along_z_negative_type\x18\x11 \x01(\x0e\x32K.dlubal.api.rfem.types_for_lines.LineHingePartialActivityAlongZNegativeTypeH\x0f\x88\x01\x01\x12\x80\x01\n&partial_activity_along_z_positive_type\x18\x12 \x01(\x0e\x32K.dlubal.api.rfem.types_for_lines.LineHingePartialActivityAlongZPositiveTypeH\x10\x88\x01\x01\x12\x82\x01\n\'partial_activity_around_x_negative_type\x18\x13 \x01(\x0e\x32L.dlubal.api.rfem.types_for_lines.LineHingePartialActivityAroundXNegativeTypeH\x11\x88\x01\x01\x12\x82\x01\n\'partial_activity_around_x_positive_type\x18\x14 \x01(\x0e\x32L.dlubal.api.rfem.types_for_lines.LineHingePartialActivityAroundXPositiveTypeH\x12\x88\x01\x01\x12;\n.partial_activity_along_x_negative_displacement\x18\x15 \x01(\x01H\x13\x88\x01\x01\x12;\n.partial_activity_along_x_positive_displacement\x18\x16 \x01(\x01H\x14\x88\x01\x01\x12;\n.partial_activity_along_y_negative_displacement\x18\x17 \x01(\x01H\x15\x88\x01\x01\x12;\n.partial_activity_along_y_positive_displacement\x18\x18 \x01(\x01H\x16\x88\x01\x01\x12;\n.partial_activity_along_z_negative_displacement\x18\x19 \x01(\x01H\x17\x88\x01\x01\x12;\n.partial_activity_along_z_positive_displacement\x18\x1a \x01(\x01H\x18\x88\x01\x01\x12\x36\n)partial_activity_around_x_negative_moment\x18\x1b \x01(\x01H\x19\x88\x01\x01\x12\x36\n)partial_activity_around_x_positive_moment\x18\x1c \x01(\x01H\x1a\x88\x01\x01\x12\x34\n\'partial_activity_along_x_negative_force\x18\x1d \x01(\x01H\x1b\x88\x01\x01\x12\x34\n\'partial_activity_along_x_positive_force\x18\x1e \x01(\x01H\x1c\x88\x01\x01\x12\x34\n\'partial_activity_along_y_negative_force\x18\x1f \x01(\x01H\x1d\x88\x01\x01\x12\x34\n\'partial_activity_along_y_positive_force\x18 \x01(\x01H\x1e\x88\x01\x01\x12\x34\n\'partial_activity_along_z_negative_force\x18! \x01(\x01H\x1f\x88\x01\x01\x12\x34\n\'partial_activity_along_z_positive_force\x18\" \x01(\x01H \x88\x01\x01\x12\x38\n+partial_activity_around_x_negative_rotation\x18# \x01(\x01H!\x88\x01\x01\x12\x38\n+partial_activity_around_x_positive_rotation\x18$ \x01(\x01H\"\x88\x01\x01\x12\x37\n*partial_activity_along_x_negative_slippage\x18% \x01(\x01H#\x88\x01\x01\x12\x37\n*partial_activity_along_x_positive_slippage\x18& \x01(\x01H$\x88\x01\x01\x12\x37\n*partial_activity_along_y_negative_slippage\x18\' \x01(\x01H%\x88\x01\x01\x12\x37\n*partial_activity_along_y_positive_slippage\x18( \x01(\x01H&\x88\x01\x01\x12\x37\n*partial_activity_along_z_negative_slippage\x18) \x01(\x01H\'\x88\x01\x01\x12\x37\n*partial_activity_along_z_positive_slippage\x18* \x01(\x01H(\x88\x01\x01\x12\x38\n+partial_activity_around_x_negative_slippage\x18+ \x01(\x01H)\x88\x01\x01\x12\x38\n+partial_activity_around_x_positive_slippage\x18, \x01(\x01H*\x88\x01\x01\x12&\n\x19\x64iagram_along_x_symmetric\x18- \x01(\x08H+\x88\x01\x01\x12&\n\x19\x64iagram_along_y_symmetric\x18. \x01(\x08H,\x88\x01\x01\x12&\n\x19\x64iagram_along_z_symmetric\x18/ \x01(\x08H-\x88\x01\x01\x12\'\n\x1a\x64iagram_around_x_symmetric\x18\x30 \x01(\x08H.\x88\x01\x01\x12&\n\x19\x64iagram_along_x_is_sorted\x18\x31 \x01(\x08H/\x88\x01\x01\x12&\n\x19\x64iagram_along_y_is_sorted\x18\x32 \x01(\x08H0\x88\x01\x01\x12&\n\x19\x64iagram_along_z_is_sorted\x18\x33 \x01(\x08H1\x88\x01\x01\x12\'\n\x1a\x64iagram_around_x_is_sorted\x18\x34 \x01(\x08H2\x88\x01\x01\x12g\n\x15\x64iagram_along_x_table\x18\x35 \x01(\x0b\x32\x43.dlubal.api.rfem.types_for_lines.ArrayOfLineHingeDiagramAlongXTableH3\x88\x01\x01\x12g\n\x15\x64iagram_along_y_table\x18\x36 \x01(\x0b\x32\x43.dlubal.api.rfem.types_for_lines.ArrayOfLineHingeDiagramAlongYTableH4\x88\x01\x01\x12g\n\x15\x64iagram_along_z_table\x18\x37 \x01(\x0b\x32\x43.dlubal.api.rfem.types_for_lines.ArrayOfLineHingeDiagramAlongZTableH5\x88\x01\x01\x12i\n\x16\x64iagram_around_x_table\x18\x38 \x01(\x0b\x32\x44.dlubal.api.rfem.types_for_lines.ArrayOfLineHingeDiagramAroundXTableH6\x88\x01\x01\x12`\n\x15\x64iagram_along_x_start\x18\x39 \x01(\x0e\x32<.dlubal.api.rfem.types_for_lines.LineHingeDiagramAlongXStartH7\x88\x01\x01\x12`\n\x15\x64iagram_along_y_start\x18: \x01(\x0e\x32<.dlubal.api.rfem.types_for_lines.LineHingeDiagramAlongYStartH8\x88\x01\x01\x12`\n\x15\x64iagram_along_z_start\x18; \x01(\x0e\x32<.dlubal.api.rfem.types_for_lines.LineHingeDiagramAlongZStartH9\x88\x01\x01\x12\x62\n\x16\x64iagram_around_x_start\x18< \x01(\x0e\x32=.dlubal.api.rfem.types_for_lines.LineHingeDiagramAroundXStartH:\x88\x01\x01\x12\\\n\x13\x64iagram_along_x_end\x18= \x01(\x0e\x32:.dlubal.api.rfem.types_for_lines.LineHingeDiagramAlongXEndH;\x88\x01\x01\x12\\\n\x13\x64iagram_along_y_end\x18> \x01(\x0e\x32:.dlubal.api.rfem.types_for_lines.LineHingeDiagramAlongYEndH<\x88\x01\x01\x12\\\n\x13\x64iagram_along_z_end\x18? \x01(\x0e\x32:.dlubal.api.rfem.types_for_lines.LineHingeDiagramAlongZEndH=\x88\x01\x01\x12^\n\x14\x64iagram_around_x_end\x18@ \x01(\x0e\x32;.dlubal.api.rfem.types_for_lines.LineHingeDiagramAroundXEndH>\x88\x01\x01\x12+\n\x1e\x64iagram_along_x_ac_yield_minus\x18\x41 \x01(\x01H?\x88\x01\x01\x12+\n\x1e\x64iagram_along_y_ac_yield_minus\x18\x42 \x01(\x01H@\x88\x01\x01\x12+\n\x1e\x64iagram_along_z_ac_yield_minus\x18\x43 \x01(\x01HA\x88\x01\x01\x12,\n\x1f\x64iagram_around_x_ac_yield_minus\x18\x44 \x01(\x01HB\x88\x01\x01\x12*\n\x1d\x64iagram_along_x_ac_yield_plus\x18\x45 \x01(\x01HC\x88\x01\x01\x12*\n\x1d\x64iagram_along_y_ac_yield_plus\x18\x46 \x01(\x01HD\x88\x01\x01\x12*\n\x1d\x64iagram_along_z_ac_yield_plus\x18G \x01(\x01HE\x88\x01\x01\x12+\n\x1e\x64iagram_around_x_ac_yield_plus\x18H \x01(\x01HF\x88\x01\x01\x12\x37\n*diagram_along_x_acceptance_criteria_active\x18I \x01(\x08HG\x88\x01\x01\x12\x37\n*diagram_along_y_acceptance_criteria_active\x18J \x01(\x08HH\x88\x01\x01\x12\x37\n*diagram_along_z_acceptance_criteria_active\x18K \x01(\x08HI\x88\x01\x01\x12\x38\n+diagram_around_x_acceptance_criteria_active\x18L \x01(\x08HJ\x88\x01\x01\x12\x46\n\x1f\x64iagram_along_x_minus_color_one\x18M \x01(\x0b\x32\x18.dlubal.api.common.ColorHK\x88\x01\x01\x12\x46\n\x1f\x64iagram_along_y_minus_color_one\x18N \x01(\x0b\x32\x18.dlubal.api.common.ColorHL\x88\x01\x01\x12\x46\n\x1f\x64iagram_along_z_minus_color_one\x18O \x01(\x0b\x32\x18.dlubal.api.common.ColorHM\x88\x01\x01\x12G\n diagram_around_x_minus_color_one\x18P \x01(\x0b\x32\x18.dlubal.api.common.ColorHN\x88\x01\x01\x12\x46\n\x1f\x64iagram_along_x_minus_color_two\x18Q \x01(\x0b\x32\x18.dlubal.api.common.ColorHO\x88\x01\x01\x12\x46\n\x1f\x64iagram_along_y_minus_color_two\x18R \x01(\x0b\x32\x18.dlubal.api.common.ColorHP\x88\x01\x01\x12\x46\n\x1f\x64iagram_along_z_minus_color_two\x18S \x01(\x0b\x32\x18.dlubal.api.common.ColorHQ\x88\x01\x01\x12G\n diagram_around_x_minus_color_two\x18T \x01(\x0b\x32\x18.dlubal.api.common.ColorHR\x88\x01\x01\x12\x45\n\x1e\x64iagram_along_x_plus_color_one\x18U \x01(\x0b\x32\x18.dlubal.api.common.ColorHS\x88\x01\x01\x12\x45\n\x1e\x64iagram_along_y_plus_color_one\x18V \x01(\x0b\x32\x18.dlubal.api.common.ColorHT\x88\x01\x01\x12\x45\n\x1e\x64iagram_along_z_plus_color_one\x18W \x01(\x0b\x32\x18.dlubal.api.common.ColorHU\x88\x01\x01\x12\x46\n\x1f\x64iagram_around_x_plus_color_one\x18X \x01(\x0b\x32\x18.dlubal.api.common.ColorHV\x88\x01\x01\x12\x45\n\x1e\x64iagram_along_x_plus_color_two\x18Y \x01(\x0b\x32\x18.dlubal.api.common.ColorHW\x88\x01\x01\x12\x45\n\x1e\x64iagram_along_y_plus_color_two\x18Z \x01(\x0b\x32\x18.dlubal.api.common.ColorHX\x88\x01\x01\x12\x45\n\x1e\x64iagram_along_z_plus_color_two\x18[ \x01(\x0b\x32\x18.dlubal.api.common.ColorHY\x88\x01\x01\x12\x46\n\x1f\x64iagram_around_x_plus_color_two\x18\\ \x01(\x0b\x32\x18.dlubal.api.common.ColorHZ\x88\x01\x01\x12r\n\x1b\x64iagram_along_x_color_table\x18] \x01(\x0b\x32H.dlubal.api.rfem.types_for_lines.ArrayOfLineHingeDiagramAlongXColorTableH[\x88\x01\x01\x12r\n\x1b\x64iagram_along_y_color_table\x18^ \x01(\x0b\x32H.dlubal.api.rfem.types_for_lines.ArrayOfLineHingeDiagramAlongYColorTableH\\\x88\x01\x01\x12r\n\x1b\x64iagram_along_z_color_table\x18_ \x01(\x0b\x32H.dlubal.api.rfem.types_for_lines.ArrayOfLineHingeDiagramAlongZColorTableH]\x88\x01\x01\x12t\n\x1c\x64iagram_around_x_color_table\x18` \x01(\x0b\x32I.dlubal.api.rfem.types_for_lines.ArrayOfLineHingeDiagramAroundXColorTableH^\x88\x01\x01\x12\x81\x01\n#force_moment_diagram_around_x_table\x18\x61 \x01(\x0b\x32O.dlubal.api.rfem.types_for_lines.ArrayOfLineHingeForceMomentDiagramAroundXTableH_\x88\x01\x01\x12\x34\n\'force_moment_diagram_around_x_symmetric\x18\x62 \x01(\x08H`\x88\x01\x01\x12\x34\n\'force_moment_diagram_around_x_is_sorted\x18\x63 \x01(\x08Ha\x88\x01\x01\x12z\n#force_moment_diagram_around_x_start\x18\x64 \x01(\x0e\x32H.dlubal.api.rfem.types_for_lines.LineHingeForceMomentDiagramAroundXStartHb\x88\x01\x01\x12v\n!force_moment_diagram_around_x_end\x18\x65 \x01(\x0e\x32\x46.dlubal.api.rfem.types_for_lines.LineHingeForceMomentDiagramAroundXEndHc\x88\x01\x01\x12\x83\x01\n(force_moment_diagram_around_x_depends_on\x18\x66 \x01(\x0e\x32L.dlubal.api.rfem.types_for_lines.LineHingeForceMomentDiagramAroundXDependsOnHd\x88\x01\x01\x12!\n\x14slab_wall_connection\x18g \x01(\x08He\x88\x01\x01\x12(\n\x1bslab_wall_connection_offset\x18h \x01(\x01Hf\x88\x01\x01\x12+\n\x1eslab_wall_with_slab_edge_block\x18i \x01(\x08Hg\x88\x01\x01\x12\"\n\x15slab_edge_block_width\x18j \x01(\x01Hh\x88\x01\x01\x12h\n\x15generated_line_hinges\x18k \x01(\x0b\x32\x44.dlubal.api.rfem.types_for_lines.ArrayOfLineHingeGeneratedLineHingesHi\x88\x01\x01\x12\x14\n\x07\x63omment\x18l \x01(\tHj\x88\x01\x01\x12\x19\n\x0cis_generated\x18m \x01(\x08Hk\x88\x01\x01\x12#\n\x16generating_object_info\x18n \x01(\tHl\x88\x01\x01\x12!\n\x14id_for_export_import\x18o \x01(\tHm\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18p \x01(\tHn\x88\x01\x01\x42\x1c\n\x1a_user_defined_name_enabledB\x07\n\x05_nameB\x0e\n\x0c_assigned_toB\x1c\n\x1a_translational_release_u_xB)\n\'_translational_release_u_x_nonlinearityB\x1c\n\x1a_translational_release_u_yB)\n\'_translational_release_u_y_nonlinearityB\x1c\n\x1a_translational_release_u_zB)\n\'_translational_release_u_z_nonlinearityB\x1b\n\x19_rotational_release_phi_xB(\n&_rotational_release_phi_x_nonlinearityB)\n\'_partial_activity_along_x_negative_typeB)\n\'_partial_activity_along_x_positive_typeB)\n\'_partial_activity_along_y_negative_typeB)\n\'_partial_activity_along_y_positive_typeB)\n\'_partial_activity_along_z_negative_typeB)\n\'_partial_activity_along_z_positive_typeB*\n(_partial_activity_around_x_negative_typeB*\n(_partial_activity_around_x_positive_typeB1\n/_partial_activity_along_x_negative_displacementB1\n/_partial_activity_along_x_positive_displacementB1\n/_partial_activity_along_y_negative_displacementB1\n/_partial_activity_along_y_positive_displacementB1\n/_partial_activity_along_z_negative_displacementB1\n/_partial_activity_along_z_positive_displacementB,\n*_partial_activity_around_x_negative_momentB,\n*_partial_activity_around_x_positive_momentB*\n(_partial_activity_along_x_negative_forceB*\n(_partial_activity_along_x_positive_forceB*\n(_partial_activity_along_y_negative_forceB*\n(_partial_activity_along_y_positive_forceB*\n(_partial_activity_along_z_negative_forceB*\n(_partial_activity_along_z_positive_forceB.\n,_partial_activity_around_x_negative_rotationB.\n,_partial_activity_around_x_positive_rotationB-\n+_partial_activity_along_x_negative_slippageB-\n+_partial_activity_along_x_positive_slippageB-\n+_partial_activity_along_y_negative_slippageB-\n+_partial_activity_along_y_positive_slippageB-\n+_partial_activity_along_z_negative_slippageB-\n+_partial_activity_along_z_positive_slippageB.\n,_partial_activity_around_x_negative_slippageB.\n,_partial_activity_around_x_positive_slippageB\x1c\n\x1a_diagram_along_x_symmetricB\x1c\n\x1a_diagram_along_y_symmetricB\x1c\n\x1a_diagram_along_z_symmetricB\x1d\n\x1b_diagram_around_x_symmetricB\x1c\n\x1a_diagram_along_x_is_sortedB\x1c\n\x1a_diagram_along_y_is_sortedB\x1c\n\x1a_diagram_along_z_is_sortedB\x1d\n\x1b_diagram_around_x_is_sortedB\x18\n\x16_diagram_along_x_tableB\x18\n\x16_diagram_along_y_tableB\x18\n\x16_diagram_along_z_tableB\x19\n\x17_diagram_around_x_tableB\x18\n\x16_diagram_along_x_startB\x18\n\x16_diagram_along_y_startB\x18\n\x16_diagram_along_z_startB\x19\n\x17_diagram_around_x_startB\x16\n\x14_diagram_along_x_endB\x16\n\x14_diagram_along_y_endB\x16\n\x14_diagram_along_z_endB\x17\n\x15_diagram_around_x_endB!\n\x1f_diagram_along_x_ac_yield_minusB!\n\x1f_diagram_along_y_ac_yield_minusB!\n\x1f_diagram_along_z_ac_yield_minusB\"\n _diagram_around_x_ac_yield_minusB \n\x1e_diagram_along_x_ac_yield_plusB \n\x1e_diagram_along_y_ac_yield_plusB \n\x1e_diagram_along_z_ac_yield_plusB!\n\x1f_diagram_around_x_ac_yield_plusB-\n+_diagram_along_x_acceptance_criteria_activeB-\n+_diagram_along_y_acceptance_criteria_activeB-\n+_diagram_along_z_acceptance_criteria_activeB.\n,_diagram_around_x_acceptance_criteria_activeB\"\n _diagram_along_x_minus_color_oneB\"\n _diagram_along_y_minus_color_oneB\"\n _diagram_along_z_minus_color_oneB#\n!_diagram_around_x_minus_color_oneB\"\n _diagram_along_x_minus_color_twoB\"\n _diagram_along_y_minus_color_twoB\"\n _diagram_along_z_minus_color_twoB#\n!_diagram_around_x_minus_color_twoB!\n\x1f_diagram_along_x_plus_color_oneB!\n\x1f_diagram_along_y_plus_color_oneB!\n\x1f_diagram_along_z_plus_color_oneB\"\n _diagram_around_x_plus_color_oneB!\n\x1f_diagram_along_x_plus_color_twoB!\n\x1f_diagram_along_y_plus_color_twoB!\n\x1f_diagram_along_z_plus_color_twoB\"\n _diagram_around_x_plus_color_twoB\x1e\n\x1c_diagram_along_x_color_tableB\x1e\n\x1c_diagram_along_y_color_tableB\x1e\n\x1c_diagram_along_z_color_tableB\x1f\n\x1d_diagram_around_x_color_tableB&\n$_force_moment_diagram_around_x_tableB*\n(_force_moment_diagram_around_x_symmetricB*\n(_force_moment_diagram_around_x_is_sortedB&\n$_force_moment_diagram_around_x_startB$\n\"_force_moment_diagram_around_x_endB+\n)_force_moment_diagram_around_x_depends_onB\x17\n\x15_slab_wall_connectionB\x1e\n\x1c_slab_wall_connection_offsetB!\n\x1f_slab_wall_with_slab_edge_blockB\x18\n\x16_slab_edge_block_widthB\x18\n\x16_generated_line_hingesB\n\n\x08_commentB\x0f\n\r_is_generatedB\x19\n\x17_generating_object_infoB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_import\"$\n\"ArrayOfLineHingeDiagramAlongXTable\"$\n\"ArrayOfLineHingeDiagramAlongYTable\"$\n\"ArrayOfLineHingeDiagramAlongZTable\"%\n#ArrayOfLineHingeDiagramAroundXTable\")\n\'ArrayOfLineHingeDiagramAlongXColorTable\")\n\'ArrayOfLineHingeDiagramAlongYColorTable\")\n\'ArrayOfLineHingeDiagramAlongZColorTable\"*\n(ArrayOfLineHingeDiagramAroundXColorTable\"0\n.ArrayOfLineHingeForceMomentDiagramAroundXTable\"%\n#ArrayOfLineHingeGeneratedLineHinges*\xb3\x08\n+LineHingeTranslationalReleaseUXNonlinearity\x12?\n;LINE_HINGE_TRANSLATIONAL_RELEASE_U_X_NONLINEARITY_TYPE_NONE\x10\x00\x12\x42\n>LINE_HINGE_TRANSLATIONAL_RELEASE_U_X_NONLINEARITY_TYPE_DIAGRAM\x10\x06\x12R\nNLINE_HINGE_TRANSLATIONAL_RELEASE_U_X_NONLINEARITY_TYPE_FAILURE_ALL_IF_NEGATIVE\x10\x03\x12R\nNLINE_HINGE_TRANSLATIONAL_RELEASE_U_X_NONLINEARITY_TYPE_FAILURE_ALL_IF_POSITIVE\x10\x04\x12N\nJLINE_HINGE_TRANSLATIONAL_RELEASE_U_X_NONLINEARITY_TYPE_FAILURE_IF_NEGATIVE\x10\x01\x12N\nJLINE_HINGE_TRANSLATIONAL_RELEASE_U_X_NONLINEARITY_TYPE_FAILURE_IF_POSITIVE\x10\x02\x12O\nKLINE_HINGE_TRANSLATIONAL_RELEASE_U_X_NONLINEARITY_TYPE_FORCE_MOMENT_DIAGRAM\x10\x0c\x12O\nKLINE_HINGE_TRANSLATIONAL_RELEASE_U_X_NONLINEARITY_TYPE_FRICTION_DIRECTION_1\x10\x08\x12Q\nMLINE_HINGE_TRANSLATIONAL_RELEASE_U_X_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_2\x10\n\x12V\nRLINE_HINGE_TRANSLATIONAL_RELEASE_U_X_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_PLUS_2\x10\x0b\x12O\nKLINE_HINGE_TRANSLATIONAL_RELEASE_U_X_NONLINEARITY_TYPE_FRICTION_DIRECTION_2\x10\t\x12K\nGLINE_HINGE_TRANSLATIONAL_RELEASE_U_X_NONLINEARITY_TYPE_PARTIAL_ACTIVITY\x10\x05\x12L\nHLINE_HINGE_TRANSLATIONAL_RELEASE_U_X_NONLINEARITY_TYPE_STIFFNESS_DIAGRAM\x10\x07*\xb3\x08\n+LineHingeTranslationalReleaseUYNonlinearity\x12?\n;LINE_HINGE_TRANSLATIONAL_RELEASE_U_Y_NONLINEARITY_TYPE_NONE\x10\x00\x12\x42\n>LINE_HINGE_TRANSLATIONAL_RELEASE_U_Y_NONLINEARITY_TYPE_DIAGRAM\x10\x06\x12R\nNLINE_HINGE_TRANSLATIONAL_RELEASE_U_Y_NONLINEARITY_TYPE_FAILURE_ALL_IF_NEGATIVE\x10\x03\x12R\nNLINE_HINGE_TRANSLATIONAL_RELEASE_U_Y_NONLINEARITY_TYPE_FAILURE_ALL_IF_POSITIVE\x10\x04\x12N\nJLINE_HINGE_TRANSLATIONAL_RELEASE_U_Y_NONLINEARITY_TYPE_FAILURE_IF_NEGATIVE\x10\x01\x12N\nJLINE_HINGE_TRANSLATIONAL_RELEASE_U_Y_NONLINEARITY_TYPE_FAILURE_IF_POSITIVE\x10\x02\x12O\nKLINE_HINGE_TRANSLATIONAL_RELEASE_U_Y_NONLINEARITY_TYPE_FORCE_MOMENT_DIAGRAM\x10\x0c\x12O\nKLINE_HINGE_TRANSLATIONAL_RELEASE_U_Y_NONLINEARITY_TYPE_FRICTION_DIRECTION_1\x10\x08\x12Q\nMLINE_HINGE_TRANSLATIONAL_RELEASE_U_Y_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_2\x10\n\x12V\nRLINE_HINGE_TRANSLATIONAL_RELEASE_U_Y_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_PLUS_2\x10\x0b\x12O\nKLINE_HINGE_TRANSLATIONAL_RELEASE_U_Y_NONLINEARITY_TYPE_FRICTION_DIRECTION_2\x10\t\x12K\nGLINE_HINGE_TRANSLATIONAL_RELEASE_U_Y_NONLINEARITY_TYPE_PARTIAL_ACTIVITY\x10\x05\x12L\nHLINE_HINGE_TRANSLATIONAL_RELEASE_U_Y_NONLINEARITY_TYPE_STIFFNESS_DIAGRAM\x10\x07*\xb3\x08\n+LineHingeTranslationalReleaseUZNonlinearity\x12?\n;LINE_HINGE_TRANSLATIONAL_RELEASE_U_Z_NONLINEARITY_TYPE_NONE\x10\x00\x12\x42\n>LINE_HINGE_TRANSLATIONAL_RELEASE_U_Z_NONLINEARITY_TYPE_DIAGRAM\x10\x06\x12R\nNLINE_HINGE_TRANSLATIONAL_RELEASE_U_Z_NONLINEARITY_TYPE_FAILURE_ALL_IF_NEGATIVE\x10\x03\x12R\nNLINE_HINGE_TRANSLATIONAL_RELEASE_U_Z_NONLINEARITY_TYPE_FAILURE_ALL_IF_POSITIVE\x10\x04\x12N\nJLINE_HINGE_TRANSLATIONAL_RELEASE_U_Z_NONLINEARITY_TYPE_FAILURE_IF_NEGATIVE\x10\x01\x12N\nJLINE_HINGE_TRANSLATIONAL_RELEASE_U_Z_NONLINEARITY_TYPE_FAILURE_IF_POSITIVE\x10\x02\x12O\nKLINE_HINGE_TRANSLATIONAL_RELEASE_U_Z_NONLINEARITY_TYPE_FORCE_MOMENT_DIAGRAM\x10\x0c\x12O\nKLINE_HINGE_TRANSLATIONAL_RELEASE_U_Z_NONLINEARITY_TYPE_FRICTION_DIRECTION_1\x10\x08\x12Q\nMLINE_HINGE_TRANSLATIONAL_RELEASE_U_Z_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_2\x10\n\x12V\nRLINE_HINGE_TRANSLATIONAL_RELEASE_U_Z_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_PLUS_2\x10\x0b\x12O\nKLINE_HINGE_TRANSLATIONAL_RELEASE_U_Z_NONLINEARITY_TYPE_FRICTION_DIRECTION_2\x10\t\x12K\nGLINE_HINGE_TRANSLATIONAL_RELEASE_U_Z_NONLINEARITY_TYPE_PARTIAL_ACTIVITY\x10\x05\x12L\nHLINE_HINGE_TRANSLATIONAL_RELEASE_U_Z_NONLINEARITY_TYPE_STIFFNESS_DIAGRAM\x10\x07*\xa5\x08\n*LineHingeRotationalReleasePhiXNonlinearity\x12>\n:LINE_HINGE_ROTATIONAL_RELEASE_PHI_X_NONLINEARITY_TYPE_NONE\x10\x00\x12\x41\n=LINE_HINGE_ROTATIONAL_RELEASE_PHI_X_NONLINEARITY_TYPE_DIAGRAM\x10\x06\x12Q\nMLINE_HINGE_ROTATIONAL_RELEASE_PHI_X_NONLINEARITY_TYPE_FAILURE_ALL_IF_NEGATIVE\x10\x03\x12Q\nMLINE_HINGE_ROTATIONAL_RELEASE_PHI_X_NONLINEARITY_TYPE_FAILURE_ALL_IF_POSITIVE\x10\x04\x12M\nILINE_HINGE_ROTATIONAL_RELEASE_PHI_X_NONLINEARITY_TYPE_FAILURE_IF_NEGATIVE\x10\x01\x12M\nILINE_HINGE_ROTATIONAL_RELEASE_PHI_X_NONLINEARITY_TYPE_FAILURE_IF_POSITIVE\x10\x02\x12N\nJLINE_HINGE_ROTATIONAL_RELEASE_PHI_X_NONLINEARITY_TYPE_FORCE_MOMENT_DIAGRAM\x10\x0c\x12N\nJLINE_HINGE_ROTATIONAL_RELEASE_PHI_X_NONLINEARITY_TYPE_FRICTION_DIRECTION_1\x10\x08\x12P\nLLINE_HINGE_ROTATIONAL_RELEASE_PHI_X_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_2\x10\n\x12U\nQLINE_HINGE_ROTATIONAL_RELEASE_PHI_X_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_PLUS_2\x10\x0b\x12N\nJLINE_HINGE_ROTATIONAL_RELEASE_PHI_X_NONLINEARITY_TYPE_FRICTION_DIRECTION_2\x10\t\x12J\nFLINE_HINGE_ROTATIONAL_RELEASE_PHI_X_NONLINEARITY_TYPE_PARTIAL_ACTIVITY\x10\x05\x12K\nGLINE_HINGE_ROTATIONAL_RELEASE_PHI_X_NONLINEARITY_TYPE_STIFFNESS_DIAGRAM\x10\x07*\xf2\x03\n*LineHingePartialActivityAlongXNegativeType\x12T\nPLINE_HINGE_PARTIAL_ACTIVITY_ALONG_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE\x10\x00\x12^\nZLINE_HINGE_PARTIAL_ACTIVITY_ALONG_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_FORCE\x10\x02\x12Q\nMLINE_HINGE_PARTIAL_ACTIVITY_ALONG_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED\x10\x01\x12Z\nVLINE_HINGE_PARTIAL_ACTIVITY_ALONG_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_INEFFECTIVNESS\x10\x04\x12_\n[LINE_HINGE_PARTIAL_ACTIVITY_ALONG_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_FORCE\x10\x03*\xf2\x03\n*LineHingePartialActivityAlongXPositiveType\x12T\nPLINE_HINGE_PARTIAL_ACTIVITY_ALONG_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE\x10\x00\x12^\nZLINE_HINGE_PARTIAL_ACTIVITY_ALONG_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_FORCE\x10\x02\x12Q\nMLINE_HINGE_PARTIAL_ACTIVITY_ALONG_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED\x10\x01\x12Z\nVLINE_HINGE_PARTIAL_ACTIVITY_ALONG_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_INEFFECTIVNESS\x10\x04\x12_\n[LINE_HINGE_PARTIAL_ACTIVITY_ALONG_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_FORCE\x10\x03*\xf2\x03\n*LineHingePartialActivityAlongYNegativeType\x12T\nPLINE_HINGE_PARTIAL_ACTIVITY_ALONG_Y_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE\x10\x00\x12^\nZLINE_HINGE_PARTIAL_ACTIVITY_ALONG_Y_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_FORCE\x10\x02\x12Q\nMLINE_HINGE_PARTIAL_ACTIVITY_ALONG_Y_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED\x10\x01\x12Z\nVLINE_HINGE_PARTIAL_ACTIVITY_ALONG_Y_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_INEFFECTIVNESS\x10\x04\x12_\n[LINE_HINGE_PARTIAL_ACTIVITY_ALONG_Y_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_FORCE\x10\x03*\xf2\x03\n*LineHingePartialActivityAlongYPositiveType\x12T\nPLINE_HINGE_PARTIAL_ACTIVITY_ALONG_Y_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE\x10\x00\x12^\nZLINE_HINGE_PARTIAL_ACTIVITY_ALONG_Y_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_FORCE\x10\x02\x12Q\nMLINE_HINGE_PARTIAL_ACTIVITY_ALONG_Y_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED\x10\x01\x12Z\nVLINE_HINGE_PARTIAL_ACTIVITY_ALONG_Y_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_INEFFECTIVNESS\x10\x04\x12_\n[LINE_HINGE_PARTIAL_ACTIVITY_ALONG_Y_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_FORCE\x10\x03*\xf2\x03\n*LineHingePartialActivityAlongZNegativeType\x12T\nPLINE_HINGE_PARTIAL_ACTIVITY_ALONG_Z_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE\x10\x00\x12^\nZLINE_HINGE_PARTIAL_ACTIVITY_ALONG_Z_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_FORCE\x10\x02\x12Q\nMLINE_HINGE_PARTIAL_ACTIVITY_ALONG_Z_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED\x10\x01\x12Z\nVLINE_HINGE_PARTIAL_ACTIVITY_ALONG_Z_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_INEFFECTIVNESS\x10\x04\x12_\n[LINE_HINGE_PARTIAL_ACTIVITY_ALONG_Z_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_FORCE\x10\x03*\xf2\x03\n*LineHingePartialActivityAlongZPositiveType\x12T\nPLINE_HINGE_PARTIAL_ACTIVITY_ALONG_Z_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE\x10\x00\x12^\nZLINE_HINGE_PARTIAL_ACTIVITY_ALONG_Z_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_FORCE\x10\x02\x12Q\nMLINE_HINGE_PARTIAL_ACTIVITY_ALONG_Z_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED\x10\x01\x12Z\nVLINE_HINGE_PARTIAL_ACTIVITY_ALONG_Z_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_INEFFECTIVNESS\x10\x04\x12_\n[LINE_HINGE_PARTIAL_ACTIVITY_ALONG_Z_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_FORCE\x10\x03*\xfa\x03\n+LineHingePartialActivityAroundXNegativeType\x12U\nQLINE_HINGE_PARTIAL_ACTIVITY_AROUND_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE\x10\x00\x12`\n\\LINE_HINGE_PARTIAL_ACTIVITY_AROUND_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_MOMENT\x10\x02\x12R\nNLINE_HINGE_PARTIAL_ACTIVITY_AROUND_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED\x10\x01\x12[\nWLINE_HINGE_PARTIAL_ACTIVITY_AROUND_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_INEFFECTIVNESS\x10\x04\x12\x61\n]LINE_HINGE_PARTIAL_ACTIVITY_AROUND_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_MOMENT\x10\x03*\xfa\x03\n+LineHingePartialActivityAroundXPositiveType\x12U\nQLINE_HINGE_PARTIAL_ACTIVITY_AROUND_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE\x10\x00\x12`\n\\LINE_HINGE_PARTIAL_ACTIVITY_AROUND_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_MOMENT\x10\x02\x12R\nNLINE_HINGE_PARTIAL_ACTIVITY_AROUND_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED\x10\x01\x12[\nWLINE_HINGE_PARTIAL_ACTIVITY_AROUND_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_INEFFECTIVNESS\x10\x04\x12\x61\n]LINE_HINGE_PARTIAL_ACTIVITY_AROUND_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_MOMENT\x10\x03*\xa6\x02\n\x1bLineHingeDiagramAlongXStart\x12@\n<LINE_HINGE_DIAGRAM_ALONG_X_START_DIAGRAM_ENDING_TYPE_FAILURE\x10\x00\x12\x43\n?LINE_HINGE_DIAGRAM_ALONG_X_START_DIAGRAM_ENDING_TYPE_CONTINUOUS\x10\x02\x12=\n9LINE_HINGE_DIAGRAM_ALONG_X_START_DIAGRAM_ENDING_TYPE_STOP\x10\x03\x12\x41\n=LINE_HINGE_DIAGRAM_ALONG_X_START_DIAGRAM_ENDING_TYPE_YIELDING\x10\x01*\xa6\x02\n\x1bLineHingeDiagramAlongYStart\x12@\n<LINE_HINGE_DIAGRAM_ALONG_Y_START_DIAGRAM_ENDING_TYPE_FAILURE\x10\x00\x12\x43\n?LINE_HINGE_DIAGRAM_ALONG_Y_START_DIAGRAM_ENDING_TYPE_CONTINUOUS\x10\x02\x12=\n9LINE_HINGE_DIAGRAM_ALONG_Y_START_DIAGRAM_ENDING_TYPE_STOP\x10\x03\x12\x41\n=LINE_HINGE_DIAGRAM_ALONG_Y_START_DIAGRAM_ENDING_TYPE_YIELDING\x10\x01*\xa6\x02\n\x1bLineHingeDiagramAlongZStart\x12@\n<LINE_HINGE_DIAGRAM_ALONG_Z_START_DIAGRAM_ENDING_TYPE_FAILURE\x10\x00\x12\x43\n?LINE_HINGE_DIAGRAM_ALONG_Z_START_DIAGRAM_ENDING_TYPE_CONTINUOUS\x10\x02\x12=\n9LINE_HINGE_DIAGRAM_ALONG_Z_START_DIAGRAM_ENDING_TYPE_STOP\x10\x03\x12\x41\n=LINE_HINGE_DIAGRAM_ALONG_Z_START_DIAGRAM_ENDING_TYPE_YIELDING\x10\x01*\xab\x02\n\x1cLineHingeDiagramAroundXStart\x12\x41\n=LINE_HINGE_DIAGRAM_AROUND_X_START_DIAGRAM_ENDING_TYPE_FAILURE\x10\x00\x12\x44\n@LINE_HINGE_DIAGRAM_AROUND_X_START_DIAGRAM_ENDING_TYPE_CONTINUOUS\x10\x02\x12>\n:LINE_HINGE_DIAGRAM_AROUND_X_START_DIAGRAM_ENDING_TYPE_STOP\x10\x03\x12\x42\n>LINE_HINGE_DIAGRAM_AROUND_X_START_DIAGRAM_ENDING_TYPE_YIELDING\x10\x01*\x9c\x02\n\x19LineHingeDiagramAlongXEnd\x12>\n:LINE_HINGE_DIAGRAM_ALONG_X_END_DIAGRAM_ENDING_TYPE_FAILURE\x10\x00\x12\x41\n=LINE_HINGE_DIAGRAM_ALONG_X_END_DIAGRAM_ENDING_TYPE_CONTINUOUS\x10\x02\x12;\n7LINE_HINGE_DIAGRAM_ALONG_X_END_DIAGRAM_ENDING_TYPE_STOP\x10\x03\x12?\n;LINE_HINGE_DIAGRAM_ALONG_X_END_DIAGRAM_ENDING_TYPE_YIELDING\x10\x01*\x9c\x02\n\x19LineHingeDiagramAlongYEnd\x12>\n:LINE_HINGE_DIAGRAM_ALONG_Y_END_DIAGRAM_ENDING_TYPE_FAILURE\x10\x00\x12\x41\n=LINE_HINGE_DIAGRAM_ALONG_Y_END_DIAGRAM_ENDING_TYPE_CONTINUOUS\x10\x02\x12;\n7LINE_HINGE_DIAGRAM_ALONG_Y_END_DIAGRAM_ENDING_TYPE_STOP\x10\x03\x12?\n;LINE_HINGE_DIAGRAM_ALONG_Y_END_DIAGRAM_ENDING_TYPE_YIELDING\x10\x01*\x9c\x02\n\x19LineHingeDiagramAlongZEnd\x12>\n:LINE_HINGE_DIAGRAM_ALONG_Z_END_DIAGRAM_ENDING_TYPE_FAILURE\x10\x00\x12\x41\n=LINE_HINGE_DIAGRAM_ALONG_Z_END_DIAGRAM_ENDING_TYPE_CONTINUOUS\x10\x02\x12;\n7LINE_HINGE_DIAGRAM_ALONG_Z_END_DIAGRAM_ENDING_TYPE_STOP\x10\x03\x12?\n;LINE_HINGE_DIAGRAM_ALONG_Z_END_DIAGRAM_ENDING_TYPE_YIELDING\x10\x01*\xa1\x02\n\x1aLineHingeDiagramAroundXEnd\x12?\n;LINE_HINGE_DIAGRAM_AROUND_X_END_DIAGRAM_ENDING_TYPE_FAILURE\x10\x00\x12\x42\n>LINE_HINGE_DIAGRAM_AROUND_X_END_DIAGRAM_ENDING_TYPE_CONTINUOUS\x10\x02\x12<\n8LINE_HINGE_DIAGRAM_AROUND_X_END_DIAGRAM_ENDING_TYPE_STOP\x10\x03\x12@\n<LINE_HINGE_DIAGRAM_AROUND_X_END_DIAGRAM_ENDING_TYPE_YIELDING\x10\x01*\xc4\x02\n\'LineHingeForceMomentDiagramAroundXStart\x12[\nWLINE_HINGE_FORCE_MOMENT_DIAGRAM_AROUND_X_START_FORCE_MOMENT_DIAGRAM_ENDING_TYPE_FAILURE\x10\x00\x12^\nZLINE_HINGE_FORCE_MOMENT_DIAGRAM_AROUND_X_START_FORCE_MOMENT_DIAGRAM_ENDING_TYPE_CONTINUOUS\x10\x02\x12\\\nXLINE_HINGE_FORCE_MOMENT_DIAGRAM_AROUND_X_START_FORCE_MOMENT_DIAGRAM_ENDING_TYPE_YIELDING\x10\x01*\xbc\x02\n%LineHingeForceMomentDiagramAroundXEnd\x12Y\nULINE_HINGE_FORCE_MOMENT_DIAGRAM_AROUND_X_END_FORCE_MOMENT_DIAGRAM_ENDING_TYPE_FAILURE\x10\x00\x12\\\nXLINE_HINGE_FORCE_MOMENT_DIAGRAM_AROUND_X_END_FORCE_MOMENT_DIAGRAM_ENDING_TYPE_CONTINUOUS\x10\x02\x12Z\nVLINE_HINGE_FORCE_MOMENT_DIAGRAM_AROUND_X_END_FORCE_MOMENT_DIAGRAM_ENDING_TYPE_YIELDING\x10\x01*\xc0\x02\n+LineHingeForceMomentDiagramAroundXDependsOn\x12Y\nULINE_HINGE_FORCE_MOMENT_DIAGRAM_AROUND_X_DEPENDS_ON_FORCE_MOMENT_DIAGRAM_DEPENDS_ON_N\x10\x00\x12Z\nVLINE_HINGE_FORCE_MOMENT_DIAGRAM_AROUND_X_DEPENDS_ON_FORCE_MOMENT_DIAGRAM_DEPENDS_ON_VY\x10\x01\x12Z\nVLINE_HINGE_FORCE_MOMENT_DIAGRAM_AROUND_X_DEPENDS_ON_FORCE_MOMENT_DIAGRAM_DEPENDS_ON_VZ\x10\x02\x62\x06proto3')
|
|
29
|
+
|
|
30
|
+
_globals = globals()
|
|
31
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
32
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.types_for_lines.line_hinge_pb2', _globals)
|
|
33
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
34
|
+
DESCRIPTOR._loaded_options = None
|
|
35
|
+
_globals['_LINEHINGETRANSLATIONALRELEASEUXNONLINEARITY']._serialized_start=12568
|
|
36
|
+
_globals['_LINEHINGETRANSLATIONALRELEASEUXNONLINEARITY']._serialized_end=13643
|
|
37
|
+
_globals['_LINEHINGETRANSLATIONALRELEASEUYNONLINEARITY']._serialized_start=13646
|
|
38
|
+
_globals['_LINEHINGETRANSLATIONALRELEASEUYNONLINEARITY']._serialized_end=14721
|
|
39
|
+
_globals['_LINEHINGETRANSLATIONALRELEASEUZNONLINEARITY']._serialized_start=14724
|
|
40
|
+
_globals['_LINEHINGETRANSLATIONALRELEASEUZNONLINEARITY']._serialized_end=15799
|
|
41
|
+
_globals['_LINEHINGEROTATIONALRELEASEPHIXNONLINEARITY']._serialized_start=15802
|
|
42
|
+
_globals['_LINEHINGEROTATIONALRELEASEPHIXNONLINEARITY']._serialized_end=16863
|
|
43
|
+
_globals['_LINEHINGEPARTIALACTIVITYALONGXNEGATIVETYPE']._serialized_start=16866
|
|
44
|
+
_globals['_LINEHINGEPARTIALACTIVITYALONGXNEGATIVETYPE']._serialized_end=17364
|
|
45
|
+
_globals['_LINEHINGEPARTIALACTIVITYALONGXPOSITIVETYPE']._serialized_start=17367
|
|
46
|
+
_globals['_LINEHINGEPARTIALACTIVITYALONGXPOSITIVETYPE']._serialized_end=17865
|
|
47
|
+
_globals['_LINEHINGEPARTIALACTIVITYALONGYNEGATIVETYPE']._serialized_start=17868
|
|
48
|
+
_globals['_LINEHINGEPARTIALACTIVITYALONGYNEGATIVETYPE']._serialized_end=18366
|
|
49
|
+
_globals['_LINEHINGEPARTIALACTIVITYALONGYPOSITIVETYPE']._serialized_start=18369
|
|
50
|
+
_globals['_LINEHINGEPARTIALACTIVITYALONGYPOSITIVETYPE']._serialized_end=18867
|
|
51
|
+
_globals['_LINEHINGEPARTIALACTIVITYALONGZNEGATIVETYPE']._serialized_start=18870
|
|
52
|
+
_globals['_LINEHINGEPARTIALACTIVITYALONGZNEGATIVETYPE']._serialized_end=19368
|
|
53
|
+
_globals['_LINEHINGEPARTIALACTIVITYALONGZPOSITIVETYPE']._serialized_start=19371
|
|
54
|
+
_globals['_LINEHINGEPARTIALACTIVITYALONGZPOSITIVETYPE']._serialized_end=19869
|
|
55
|
+
_globals['_LINEHINGEPARTIALACTIVITYAROUNDXNEGATIVETYPE']._serialized_start=19872
|
|
56
|
+
_globals['_LINEHINGEPARTIALACTIVITYAROUNDXNEGATIVETYPE']._serialized_end=20378
|
|
57
|
+
_globals['_LINEHINGEPARTIALACTIVITYAROUNDXPOSITIVETYPE']._serialized_start=20381
|
|
58
|
+
_globals['_LINEHINGEPARTIALACTIVITYAROUNDXPOSITIVETYPE']._serialized_end=20887
|
|
59
|
+
_globals['_LINEHINGEDIAGRAMALONGXSTART']._serialized_start=20890
|
|
60
|
+
_globals['_LINEHINGEDIAGRAMALONGXSTART']._serialized_end=21184
|
|
61
|
+
_globals['_LINEHINGEDIAGRAMALONGYSTART']._serialized_start=21187
|
|
62
|
+
_globals['_LINEHINGEDIAGRAMALONGYSTART']._serialized_end=21481
|
|
63
|
+
_globals['_LINEHINGEDIAGRAMALONGZSTART']._serialized_start=21484
|
|
64
|
+
_globals['_LINEHINGEDIAGRAMALONGZSTART']._serialized_end=21778
|
|
65
|
+
_globals['_LINEHINGEDIAGRAMAROUNDXSTART']._serialized_start=21781
|
|
66
|
+
_globals['_LINEHINGEDIAGRAMAROUNDXSTART']._serialized_end=22080
|
|
67
|
+
_globals['_LINEHINGEDIAGRAMALONGXEND']._serialized_start=22083
|
|
68
|
+
_globals['_LINEHINGEDIAGRAMALONGXEND']._serialized_end=22367
|
|
69
|
+
_globals['_LINEHINGEDIAGRAMALONGYEND']._serialized_start=22370
|
|
70
|
+
_globals['_LINEHINGEDIAGRAMALONGYEND']._serialized_end=22654
|
|
71
|
+
_globals['_LINEHINGEDIAGRAMALONGZEND']._serialized_start=22657
|
|
72
|
+
_globals['_LINEHINGEDIAGRAMALONGZEND']._serialized_end=22941
|
|
73
|
+
_globals['_LINEHINGEDIAGRAMAROUNDXEND']._serialized_start=22944
|
|
74
|
+
_globals['_LINEHINGEDIAGRAMAROUNDXEND']._serialized_end=23233
|
|
75
|
+
_globals['_LINEHINGEFORCEMOMENTDIAGRAMAROUNDXSTART']._serialized_start=23236
|
|
76
|
+
_globals['_LINEHINGEFORCEMOMENTDIAGRAMAROUNDXSTART']._serialized_end=23560
|
|
77
|
+
_globals['_LINEHINGEFORCEMOMENTDIAGRAMAROUNDXEND']._serialized_start=23563
|
|
78
|
+
_globals['_LINEHINGEFORCEMOMENTDIAGRAMAROUNDXEND']._serialized_end=23879
|
|
79
|
+
_globals['_LINEHINGEFORCEMOMENTDIAGRAMAROUNDXDEPENDSON']._serialized_start=23882
|
|
80
|
+
_globals['_LINEHINGEFORCEMOMENTDIAGRAMAROUNDXDEPENDSON']._serialized_end=24202
|
|
81
|
+
_globals['_LINEHINGE']._serialized_start=118
|
|
82
|
+
_globals['_LINEHINGE']._serialized_end=12150
|
|
83
|
+
_globals['_ARRAYOFLINEHINGEDIAGRAMALONGXTABLE']._serialized_start=12152
|
|
84
|
+
_globals['_ARRAYOFLINEHINGEDIAGRAMALONGXTABLE']._serialized_end=12188
|
|
85
|
+
_globals['_ARRAYOFLINEHINGEDIAGRAMALONGYTABLE']._serialized_start=12190
|
|
86
|
+
_globals['_ARRAYOFLINEHINGEDIAGRAMALONGYTABLE']._serialized_end=12226
|
|
87
|
+
_globals['_ARRAYOFLINEHINGEDIAGRAMALONGZTABLE']._serialized_start=12228
|
|
88
|
+
_globals['_ARRAYOFLINEHINGEDIAGRAMALONGZTABLE']._serialized_end=12264
|
|
89
|
+
_globals['_ARRAYOFLINEHINGEDIAGRAMAROUNDXTABLE']._serialized_start=12266
|
|
90
|
+
_globals['_ARRAYOFLINEHINGEDIAGRAMAROUNDXTABLE']._serialized_end=12303
|
|
91
|
+
_globals['_ARRAYOFLINEHINGEDIAGRAMALONGXCOLORTABLE']._serialized_start=12305
|
|
92
|
+
_globals['_ARRAYOFLINEHINGEDIAGRAMALONGXCOLORTABLE']._serialized_end=12346
|
|
93
|
+
_globals['_ARRAYOFLINEHINGEDIAGRAMALONGYCOLORTABLE']._serialized_start=12348
|
|
94
|
+
_globals['_ARRAYOFLINEHINGEDIAGRAMALONGYCOLORTABLE']._serialized_end=12389
|
|
95
|
+
_globals['_ARRAYOFLINEHINGEDIAGRAMALONGZCOLORTABLE']._serialized_start=12391
|
|
96
|
+
_globals['_ARRAYOFLINEHINGEDIAGRAMALONGZCOLORTABLE']._serialized_end=12432
|
|
97
|
+
_globals['_ARRAYOFLINEHINGEDIAGRAMAROUNDXCOLORTABLE']._serialized_start=12434
|
|
98
|
+
_globals['_ARRAYOFLINEHINGEDIAGRAMAROUNDXCOLORTABLE']._serialized_end=12476
|
|
99
|
+
_globals['_ARRAYOFLINEHINGEFORCEMOMENTDIAGRAMAROUNDXTABLE']._serialized_start=12478
|
|
100
|
+
_globals['_ARRAYOFLINEHINGEFORCEMOMENTDIAGRAMAROUNDXTABLE']._serialized_end=12526
|
|
101
|
+
_globals['_ARRAYOFLINEHINGEGENERATEDLINEHINGES']._serialized_start=12528
|
|
102
|
+
_globals['_ARRAYOFLINEHINGEGENERATEDLINEHINGES']._serialized_end=12565
|
|
103
|
+
# @@protoc_insertion_point(module_scope)
|