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,77 @@
|
|
|
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/load_case.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/load_case.proto'
|
|
19
|
+
)
|
|
20
|
+
# @@protoc_insertion_point(imports)
|
|
21
|
+
|
|
22
|
+
_sym_db = _symbol_database.Default()
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
from dlubal.api.common import common_pb2 as dlubal_dot_api_dot_common_dot_common__pb2
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\'dlubal/api/rfem/loading/load_case.proto\x12\x17\x64lubal.api.rfem.loading\x1a\x1e\x64lubal/api/common/common.proto\"\x90s\n\x08LoadCase\x12\n\n\x02no\x18\x01 \x01(\x05\x12I\n\ranalysis_type\x18\x02 \x01(\x0e\x32-.dlubal.api.rfem.loading.LoadCaseAnalysisTypeH\x00\x88\x01\x01\x12\x11\n\x04name\x18\x03 \x01(\tH\x01\x88\x01\x01\x12$\n\x17\x63\x61lculate_critical_load\x18\x04 \x01(\x08H\x02\x88\x01\x01\x12%\n\x18static_analysis_settings\x18\x05 \x01(\x05H\x03\x88\x01\x01\x12(\n\x1bstability_analysis_settings\x18\x06 \x01(\x05H\x04\x88\x01\x01\x12$\n\x17modal_analysis_settings\x18\x07 \x01(\x05H\x05\x88\x01\x01\x12\'\n\x1aspectral_analysis_settings\x18\x08 \x01(\x05H\x06\x88\x01\x01\x12\"\n\x15\x63onsider_imperfection\x18\t \x01(\x08H\x07\x88\x01\x01\x12\x1e\n\x11imperfection_case\x18\n \x01(\x05H\x08\x88\x01\x01\x12#\n\x16\x63onsider_initial_state\x18\x0b \x01(\x08H\t\x88\x01\x01\x12\x1f\n\x12initial_state_case\x18\x0c \x01(\x05H\n\x88\x01\x01\x12g\n\x1dinitial_state_definition_type\x18\r \x01(\x0e\x32;.dlubal.api.rfem.loading.LoadCaseInitialStateDefinitionTypeH\x0b\x88\x01\x01\x12\x8a\x01\n,individual_factors_of_selected_objects_table\x18\x0e \x01(\x0b\x32O.dlubal.api.rfem.loading.ArrayOfLoadCaseIndividualFactorsOfSelectedObjectsTableH\x0c\x88\x01\x01\x12(\n\x1b\x63onsider_construction_stage\x18\x0f \x01(\x08H\r\x88\x01\x01\x12$\n\x17\x63onstruction_stage_case\x18\x10 \x01(\x05H\x0e\x88\x01\x01\x12\x15\n\x08to_solve\x18\x11 \x01(\x08H\x0f\x88\x01\x01\x12\x1c\n\x0f\x61\x63tion_category\x18\x12 \x01(\tH\x10\x88\x01\x01\x12\x1f\n\x12self_weight_active\x18\x13 \x01(\x08H\x11\x88\x01\x01\x12=\n\x13self_weight_factors\x18\x14 \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x12\x88\x01\x01\x12!\n\x14self_weight_factor_x\x18\x15 \x01(\x01H\x13\x88\x01\x01\x12!\n\x14self_weight_factor_y\x18\x16 \x01(\x01H\x14\x88\x01\x01\x12!\n\x14self_weight_factor_z\x18\x17 \x01(\x01H\x15\x88\x01\x01\x12\x43\n\nfactor_phi\x18\x18 \x01(\x0e\x32*.dlubal.api.rfem.loading.LoadCaseFactorPhiH\x16\x88\x01\x01\x12\x1a\n\rload_duration\x18\x19 \x01(\tH\x17\x88\x01\x01\x12\x1a\n\rloading_start\x18\x1a \x01(\x01H\x18\x88\x01\x01\x12$\n\x17time_being_investigated\x18\x1b \x01(\x01H\x19\x88\x01\x01\x12\x1f\n\x12import_masses_from\x18\x1c \x01(\x05H\x1a\x88\x01\x01\x12\'\n\x1aimport_modal_analysis_from\x18\x1d \x01(\x05H\x1b\x88\x01\x01\x12:\n-response_spectrum_is_enabled_in_any_direction\x18\x1e \x01(\x08H\x1c\x88\x01\x01\x12\x38\n+response_spectrum_is_enabled_in_direction_x\x18\x1f \x01(\x08H\x1d\x88\x01\x01\x12\x38\n+response_spectrum_is_enabled_in_direction_y\x18 \x01(\x08H\x1e\x88\x01\x01\x12\x38\n+response_spectrum_is_enabled_in_direction_z\x18! \x01(\x08H\x1f\x88\x01\x01\x12-\n response_spectrum_in_direction_x\x18\" \x01(\x05H \x88\x01\x01\x12-\n response_spectrum_in_direction_y\x18# \x01(\x05H!\x88\x01\x01\x12-\n response_spectrum_in_direction_z\x18$ \x01(\x05H\"\x88\x01\x01\x12:\n-response_spectrum_scale_factor_in_direction_x\x18% \x01(\x01H#\x88\x01\x01\x12:\n-response_spectrum_scale_factor_in_direction_y\x18& \x01(\x01H$\x88\x01\x01\x12:\n-response_spectrum_scale_factor_in_direction_z\x18\' \x01(\x01H%\x88\x01\x01\x12-\n response_spectrum_rotation_angle\x18( \x01(\x01H&\x88\x01\x01\x12:\n-response_spectrum_consider_accidental_torsion\x18) \x01(\x08H\'\x88\x01\x01\x12\x44\n7response_spectrum_eccentricity_for_x_direction_absolute\x18* \x01(\x01H(\x88\x01\x01\x12\x44\n7response_spectrum_eccentricity_for_y_direction_absolute\x18+ \x01(\x01H)\x88\x01\x01\x12\x44\n7response_spectrum_eccentricity_for_x_direction_relative\x18, \x01(\x01H*\x88\x01\x01\x12\x44\n7response_spectrum_eccentricity_for_y_direction_relative\x18- \x01(\x01H+\x88\x01\x01\x12\x33\n&response_spectrum_building_length_in_x\x18. \x01(\x01H,\x88\x01\x01\x12\x33\n&response_spectrum_building_length_in_y\x18/ \x01(\x01H-\x88\x01\x01\x12R\nEresponse_spectrum_eccentricity_for_x_direction_is_defined_as_relative\x18\x30 \x01(\x08H.\x88\x01\x01\x12R\nEresponse_spectrum_eccentricity_for_y_direction_is_defined_as_relative\x18\x31 \x01(\x08H/\x88\x01\x01\x12<\n/response_spectrum_user_defined_building_lengths\x18\x32 \x01(\x08H0\x88\x01\x01\x12\x82\x01\n(selection_of_modes_mode_activation_table\x18\x33 \x01(\x0b\x32K.dlubal.api.rfem.loading.ArrayOfLoadCaseSelectionOfModesModeActivationTableH1\x88\x01\x01\x12P\nCselection_of_modes_deselect_modes_according_to_criterion_is_enabled\x18\x34 \x01(\x08H2\x88\x01\x01\x12Q\nDselection_of_modes_deselect_modes_modes_according_to_criterion_value\x18\x35 \x01(\x01H3\x88\x01\x01\x12G\n:selection_of_modes_total_effective_modal_mass_factor_f_mex\x18\x36 \x01(\x01H4\x88\x01\x01\x12G\n:selection_of_modes_total_effective_modal_mass_factor_f_mey\x18\x37 \x01(\x01H5\x88\x01\x01\x12G\n:selection_of_modes_total_effective_modal_mass_factor_f_mez\x18\x38 \x01(\x01H6\x88\x01\x01\x12\x14\n\x07\x63omment\x18\x39 \x01(\tH7\x88\x01\x01\x12\x19\n\x0cis_generated\x18: \x01(\x08H8\x88\x01\x01\x12#\n\x16generating_object_info\x18; \x01(\tH9\x88\x01\x01\x12+\n\x1estructure_modification_enabled\x18< \x01(\x08H:\x88\x01\x01\x12#\n\x16structure_modification\x18= \x01(\x05H;\x88\x01\x01\x12\"\n\x15possibility_of_crowds\x18> \x01(\x08H<\x88\x01\x01\x12l\n specification_for_load_case_gr1a\x18? \x01(\x0e\x32=.dlubal.api.rfem.loading.LoadCaseSpecificationForLoadCaseGr1aH=\x88\x01\x01\x12j\n\x1fspecification_for_load_case_gr2\x18@ \x01(\x0e\x32<.dlubal.api.rfem.loading.LoadCaseSpecificationForLoadCaseGr2H>\x88\x01\x01\x12j\n\x1fspecification_for_load_case_gr5\x18\x41 \x01(\x0e\x32<.dlubal.api.rfem.loading.LoadCaseSpecificationForLoadCaseGr5H?\x88\x01\x01\x12j\n\x1fspecification_for_load_case_gr6\x18\x42 \x01(\x0e\x32<.dlubal.api.rfem.loading.LoadCaseSpecificationForLoadCaseGr6H@\x88\x01\x01\x12$\n\x17liveload_less_equal_100\x18\x43 \x01(\x08HA\x88\x01\x01\x12N\nAliveload_consider_design_situation_effective_seismic_weight_check\x18\x44 \x01(\x08HB\x88\x01\x01\x12\xab\x01\nAliveload_consider_design_situation_effective_seismic_weight_combo\x18\x45 \x01(\x0e\x32[.dlubal.api.rfem.loading.LoadCaseLiveloadConsiderDesignSituationEffectiveSeismicWeightComboHC\x88\x01\x01\x12U\nHliveload_consider_design_situation_effective_seismic_weight_CYTHYE_check\x18\x46 \x01(\x08HD\x88\x01\x01\x12\xb8\x01\nHliveload_consider_design_situation_effective_seismic_weight_CYTHYE_combo\x18G \x01(\x0e\x32\x61.dlubal.api.rfem.loading.LoadCaseLiveloadConsiderDesignSituationEffectiveSeismicWeightCYTHYEComboHE\x88\x01\x01\x12\x44\n7liveload_consider_design_situation_seismic_weight_check\x18H \x01(\x08HF\x88\x01\x01\x12\x98\x01\n7liveload_consider_design_situation_seismic_weight_combo\x18I \x01(\x0e\x32R.dlubal.api.rfem.loading.LoadCaseLiveloadConsiderDesignSituationSeismicWeightComboHG\x88\x01\x01\x12\x42\n5liveload_consider_design_situation_seismic_mass_check\x18J \x01(\x08HH\x88\x01\x01\x12\x94\x01\n5liveload_consider_design_situation_seismic_mass_combo\x18K \x01(\x0e\x32P.dlubal.api.rfem.loading.LoadCaseLiveloadConsiderDesignSituationSeismicMassComboHI\x88\x01\x01\x12?\n2consider_design_situation_effective_seismic_weight\x18L \x01(\x08HJ\x88\x01\x01\x12#\n\x16liveload_less_equal_48\x18M \x01(\x08HK\x88\x01\x01\x12R\nEliveload_consider_design_situation_effective_seismic_weight_aci_check\x18N \x01(\x08HL\x88\x01\x01\x12\xb2\x01\nEliveload_consider_design_situation_effective_seismic_weight_aci_combo\x18O \x01(\x0e\x32^.dlubal.api.rfem.loading.LoadCaseLiveloadConsiderDesignSituationEffectiveSeismicWeightAciComboHM\x88\x01\x01\x12(\n\x1bliveload_less_equal_100_ibc\x18P \x01(\x08HN\x88\x01\x01\x12R\nEliveload_consider_design_situation_effective_seismic_weight_ibc_check\x18Q \x01(\x08HO\x88\x01\x01\x12\xb2\x01\nEliveload_consider_design_situation_effective_seismic_weight_ibc_combo\x18R \x01(\x0e\x32^.dlubal.api.rfem.loading.LoadCaseLiveloadConsiderDesignSituationEffectiveSeismicWeightIbcComboHP\x88\x01\x01\x12\x32\n%cranehookload_nocombined_roofliveload\x18S \x01(\x08HQ\x88\x01\x01\x12\x36\n)roof_configurations_that_do_not_shed_snow\x18T \x01(\x08HR\x88\x01\x01\x12 \n\x13\x66lat_roof_snow_load\x18U \x01(\x08HS\x88\x01\x01\x12\x64\n\x1c\x66lat_roof_snow_load_category\x18V \x01(\x0e\x32\x39.dlubal.api.rfem.loading.LoadCaseFlatRoofSnowLoadCategoryHT\x88\x01\x01\x12/\n\"deadload_factor_shall_be_increased\x18W \x01(\x08HU\x88\x01\x01\x12\x30\n#deadload_factor_shall_be_increased1\x18X \x01(\x08HV\x88\x01\x01\x12\x30\n#deadload_factor_shall_be_increased2\x18Y \x01(\x08HW\x88\x01\x01\x12\x33\n&dead_no_effective_seismic_weight_NBC05\x18Z \x01(\x08HX\x88\x01\x01\x12\x33\n&dead_no_effective_seismic_weight_NBC15\x18[ \x01(\x08HY\x88\x01\x01\x12\x36\n)liveload_principal_factor_may_be_reduced1\x18\\ \x01(\x08HZ\x88\x01\x01\x12\x38\n+liveload_companion_factor_may_be_increased1\x18] \x01(\x08H[\x88\x01\x01\x12\x36\n)liveload_principal_factor_may_be_reduced2\x18^ \x01(\x08H\\\x88\x01\x01\x12\x38\n+liveload_companion_factor_may_be_increased2\x18_ \x01(\x08H]\x88\x01\x01\x12\x45\n8consider_design_situation_effective_seismic_weight_NBC05\x18` \x01(\x08H^\x88\x01\x01\x12\x45\n8consider_design_situation_effective_seismic_weight_NBC15\x18\x61 \x01(\x08H_\x88\x01\x01\x12-\n dead_no_effective_seismic_weight\x18\x62 \x01(\x08H`\x88\x01\x01\x12H\n;longtermload_tp_considered_in_limit_state_of_serviceability\x18\x63 \x01(\x08Ha\x88\x01\x01\x12%\n\x18greater_intensity_than_4\x18\x64 \x01(\x08Hb\x88\x01\x01\x12L\n?distinguish_different_overstrength_factor_in_direction_xy_check\x18\x65 \x01(\x08Hc\x88\x01\x01\x12\xa7\x01\n?distinguish_different_overstrength_factor_in_direction_xy_combo\x18\x66 \x01(\x0e\x32Y.dlubal.api.rfem.loading.LoadCaseDistinguishDifferentOverstrengthFactorInDirectionXyComboHd\x88\x01\x01\x12N\n\x10load_duration_sp\x18g \x01(\x0e\x32/.dlubal.api.rfem.loading.LoadCaseLoadDurationSpHe\x88\x01\x01\x12Z\n\x16ground_water_elevation\x18h \x01(\x0e\x32\x35.dlubal.api.rfem.loading.LoadCaseGroundWaterElevationHf\x88\x01\x01\x12\x1e\n\x11\x64irection_x_check\x18i \x01(\x08Hg\x88\x01\x01\x12\x1e\n\x11\x64irection_y_check\x18j \x01(\x08Hh\x88\x01\x01\x12)\n\x1c\x63onsider_inclusive_load_case\x18k \x01(\x08Hi\x88\x01\x01\x12 \n\x13inclusive_load_case\x18l \x01(\x05Hj\x88\x01\x01\x12?\n2consider_design_situation_seismic_mass_combination\x18m \x01(\x08Hk\x88\x01\x01\x12[\n\x17type_of_imposed_actions\x18n \x01(\x0e\x32\x35.dlubal.api.rfem.loading.LoadCaseTypeOfImposedActionsHl\x88\x01\x01\x12\x31\n$wind_simulation_wind_direction_angle\x18o \x01(\x01Hm\x88\x01\x01\x12@\n3wind_simulation_wind_tunnel_depth_minus_coefficient\x18p \x01(\x01Hn\x88\x01\x01\x12?\n2wind_simulation_wind_tunnel_depth_plus_coefficient\x18q \x01(\x01Ho\x88\x01\x01\x12@\n3wind_simulation_wind_tunnel_width_minus_coefficient\x18r \x01(\x01Hp\x88\x01\x01\x12?\n2wind_simulation_wind_tunnel_width_plus_coefficient\x18s \x01(\x01Hq\x88\x01\x01\x12@\n3wind_simulation_wind_tunnel_height_plus_coefficient\x18t \x01(\x01Hr\x88\x01\x01\x12H\n;wind_simulation_construction_bounding_box_depth_coefficient\x18u \x01(\x01Hs\x88\x01\x01\x12I\n<wind_simulation_construction_bounding_box_height_coefficient\x18v \x01(\x01Ht\x88\x01\x01\x12H\n;wind_simulation_construction_bounding_box_width_coefficient\x18w \x01(\x01Hu\x88\x01\x01\x12:\n-wind_simulation_wind_tunnel_depth_coefficient\x18x \x01(\x01Hv\x88\x01\x01\x12:\n-wind_simulation_wind_tunnel_width_coefficient\x18y \x01(\x01Hw\x88\x01\x01\x12;\n.wind_simulation_wind_tunnel_height_coefficient\x18z \x01(\x01Hx\x88\x01\x01\x12)\n\x1cwind_simulation_wind_profile\x18{ \x01(\x05Hy\x88\x01\x01\x12.\n!wind_simulation_analysis_settings\x18| \x01(\x05Hz\x88\x01\x01\x12;\n.wind_simulation_wind_tunnel_depth_minus_length\x18} \x01(\x01H{\x88\x01\x01\x12:\n-wind_simulation_wind_tunnel_depth_plus_length\x18~ \x01(\x01H|\x88\x01\x01\x12;\n.wind_simulation_wind_tunnel_width_minus_length\x18\x7f \x01(\x01H}\x88\x01\x01\x12;\n-wind_simulation_wind_tunnel_width_plus_length\x18\x80\x01 \x01(\x01H~\x88\x01\x01\x12<\n.wind_simulation_wind_tunnel_height_plus_length\x18\x81\x01 \x01(\x01H\x7f\x88\x01\x01\x12>\n/wind_simulation_construction_bounding_box_depth\x18\x82\x01 \x01(\x01H\x80\x01\x88\x01\x01\x12?\n0wind_simulation_construction_bounding_box_height\x18\x83\x01 \x01(\x01H\x81\x01\x88\x01\x01\x12>\n/wind_simulation_construction_bounding_box_width\x18\x84\x01 \x01(\x01H\x82\x01\x88\x01\x01\x12\x30\n!wind_simulation_wind_tunnel_depth\x18\x85\x01 \x01(\x01H\x83\x01\x88\x01\x01\x12\x30\n!wind_simulation_wind_tunnel_width\x18\x86\x01 \x01(\x01H\x84\x01\x88\x01\x01\x12\x31\n\"wind_simulation_wind_tunnel_height\x18\x87\x01 \x01(\x01H\x85\x01\x88\x01\x01\x12?\n0geotechnical_analysis_reset_small_strain_history\x18\x88\x01 \x01(\x08H\x86\x01\x88\x01\x01\x12#\n\x14id_for_export_import\x18\x89\x01 \x01(\tH\x87\x01\x88\x01\x01\x12)\n\x1ametadata_for_export_import\x18\x8a\x01 \x01(\tH\x88\x01\x88\x01\x01\x42\x10\n\x0e_analysis_typeB\x07\n\x05_nameB\x1a\n\x18_calculate_critical_loadB\x1b\n\x19_static_analysis_settingsB\x1e\n\x1c_stability_analysis_settingsB\x1a\n\x18_modal_analysis_settingsB\x1d\n\x1b_spectral_analysis_settingsB\x18\n\x16_consider_imperfectionB\x14\n\x12_imperfection_caseB\x19\n\x17_consider_initial_stateB\x15\n\x13_initial_state_caseB \n\x1e_initial_state_definition_typeB/\n-_individual_factors_of_selected_objects_tableB\x1e\n\x1c_consider_construction_stageB\x1a\n\x18_construction_stage_caseB\x0b\n\t_to_solveB\x12\n\x10_action_categoryB\x15\n\x13_self_weight_activeB\x16\n\x14_self_weight_factorsB\x17\n\x15_self_weight_factor_xB\x17\n\x15_self_weight_factor_yB\x17\n\x15_self_weight_factor_zB\r\n\x0b_factor_phiB\x10\n\x0e_load_durationB\x10\n\x0e_loading_startB\x1a\n\x18_time_being_investigatedB\x15\n\x13_import_masses_fromB\x1d\n\x1b_import_modal_analysis_fromB0\n._response_spectrum_is_enabled_in_any_directionB.\n,_response_spectrum_is_enabled_in_direction_xB.\n,_response_spectrum_is_enabled_in_direction_yB.\n,_response_spectrum_is_enabled_in_direction_zB#\n!_response_spectrum_in_direction_xB#\n!_response_spectrum_in_direction_yB#\n!_response_spectrum_in_direction_zB0\n._response_spectrum_scale_factor_in_direction_xB0\n._response_spectrum_scale_factor_in_direction_yB0\n._response_spectrum_scale_factor_in_direction_zB#\n!_response_spectrum_rotation_angleB0\n._response_spectrum_consider_accidental_torsionB:\n8_response_spectrum_eccentricity_for_x_direction_absoluteB:\n8_response_spectrum_eccentricity_for_y_direction_absoluteB:\n8_response_spectrum_eccentricity_for_x_direction_relativeB:\n8_response_spectrum_eccentricity_for_y_direction_relativeB)\n\'_response_spectrum_building_length_in_xB)\n\'_response_spectrum_building_length_in_yBH\nF_response_spectrum_eccentricity_for_x_direction_is_defined_as_relativeBH\nF_response_spectrum_eccentricity_for_y_direction_is_defined_as_relativeB2\n0_response_spectrum_user_defined_building_lengthsB+\n)_selection_of_modes_mode_activation_tableBF\nD_selection_of_modes_deselect_modes_according_to_criterion_is_enabledBG\nE_selection_of_modes_deselect_modes_modes_according_to_criterion_valueB=\n;_selection_of_modes_total_effective_modal_mass_factor_f_mexB=\n;_selection_of_modes_total_effective_modal_mass_factor_f_meyB=\n;_selection_of_modes_total_effective_modal_mass_factor_f_mezB\n\n\x08_commentB\x0f\n\r_is_generatedB\x19\n\x17_generating_object_infoB!\n\x1f_structure_modification_enabledB\x19\n\x17_structure_modificationB\x18\n\x16_possibility_of_crowdsB#\n!_specification_for_load_case_gr1aB\"\n _specification_for_load_case_gr2B\"\n _specification_for_load_case_gr5B\"\n _specification_for_load_case_gr6B\x1a\n\x18_liveload_less_equal_100BD\nB_liveload_consider_design_situation_effective_seismic_weight_checkBD\nB_liveload_consider_design_situation_effective_seismic_weight_comboBK\nI_liveload_consider_design_situation_effective_seismic_weight_CYTHYE_checkBK\nI_liveload_consider_design_situation_effective_seismic_weight_CYTHYE_comboB:\n8_liveload_consider_design_situation_seismic_weight_checkB:\n8_liveload_consider_design_situation_seismic_weight_comboB8\n6_liveload_consider_design_situation_seismic_mass_checkB8\n6_liveload_consider_design_situation_seismic_mass_comboB5\n3_consider_design_situation_effective_seismic_weightB\x19\n\x17_liveload_less_equal_48BH\nF_liveload_consider_design_situation_effective_seismic_weight_aci_checkBH\nF_liveload_consider_design_situation_effective_seismic_weight_aci_comboB\x1e\n\x1c_liveload_less_equal_100_ibcBH\nF_liveload_consider_design_situation_effective_seismic_weight_ibc_checkBH\nF_liveload_consider_design_situation_effective_seismic_weight_ibc_comboB(\n&_cranehookload_nocombined_roofliveloadB,\n*_roof_configurations_that_do_not_shed_snowB\x16\n\x14_flat_roof_snow_loadB\x1f\n\x1d_flat_roof_snow_load_categoryB%\n#_deadload_factor_shall_be_increasedB&\n$_deadload_factor_shall_be_increased1B&\n$_deadload_factor_shall_be_increased2B)\n\'_dead_no_effective_seismic_weight_NBC05B)\n\'_dead_no_effective_seismic_weight_NBC15B,\n*_liveload_principal_factor_may_be_reduced1B.\n,_liveload_companion_factor_may_be_increased1B,\n*_liveload_principal_factor_may_be_reduced2B.\n,_liveload_companion_factor_may_be_increased2B;\n9_consider_design_situation_effective_seismic_weight_NBC05B;\n9_consider_design_situation_effective_seismic_weight_NBC15B#\n!_dead_no_effective_seismic_weightB>\n<_longtermload_tp_considered_in_limit_state_of_serviceabilityB\x1b\n\x19_greater_intensity_than_4BB\n@_distinguish_different_overstrength_factor_in_direction_xy_checkBB\n@_distinguish_different_overstrength_factor_in_direction_xy_comboB\x13\n\x11_load_duration_spB\x19\n\x17_ground_water_elevationB\x14\n\x12_direction_x_checkB\x14\n\x12_direction_y_checkB\x1f\n\x1d_consider_inclusive_load_caseB\x16\n\x14_inclusive_load_caseB5\n3_consider_design_situation_seismic_mass_combinationB\x1a\n\x18_type_of_imposed_actionsB\'\n%_wind_simulation_wind_direction_angleB6\n4_wind_simulation_wind_tunnel_depth_minus_coefficientB5\n3_wind_simulation_wind_tunnel_depth_plus_coefficientB6\n4_wind_simulation_wind_tunnel_width_minus_coefficientB5\n3_wind_simulation_wind_tunnel_width_plus_coefficientB6\n4_wind_simulation_wind_tunnel_height_plus_coefficientB>\n<_wind_simulation_construction_bounding_box_depth_coefficientB?\n=_wind_simulation_construction_bounding_box_height_coefficientB>\n<_wind_simulation_construction_bounding_box_width_coefficientB0\n._wind_simulation_wind_tunnel_depth_coefficientB0\n._wind_simulation_wind_tunnel_width_coefficientB1\n/_wind_simulation_wind_tunnel_height_coefficientB\x1f\n\x1d_wind_simulation_wind_profileB$\n\"_wind_simulation_analysis_settingsB1\n/_wind_simulation_wind_tunnel_depth_minus_lengthB0\n._wind_simulation_wind_tunnel_depth_plus_lengthB1\n/_wind_simulation_wind_tunnel_width_minus_lengthB0\n._wind_simulation_wind_tunnel_width_plus_lengthB1\n/_wind_simulation_wind_tunnel_height_plus_lengthB2\n0_wind_simulation_construction_bounding_box_depthB3\n1_wind_simulation_construction_bounding_box_heightB2\n0_wind_simulation_construction_bounding_box_widthB$\n\"_wind_simulation_wind_tunnel_depthB$\n\"_wind_simulation_wind_tunnel_widthB%\n#_wind_simulation_wind_tunnel_heightB3\n1_geotechnical_analysis_reset_small_strain_historyB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_import\"8\n6ArrayOfLoadCaseIndividualFactorsOfSelectedObjectsTable\"4\n2ArrayOfLoadCaseSelectionOfModesModeActivationTable*\xc9\x03\n\x14LoadCaseAnalysisType\x12#\n\x1fLOAD_CASE_ANALYSIS_TYPE_UNKNOWN\x10\x00\x12/\n+LOAD_CASE_ANALYSIS_TYPE_CREEP_AND_SHRINKAGE\x10\x03\x12+\n\'LOAD_CASE_ANALYSIS_TYPE_CUTTING_PATTERN\x10\x0b\x12!\n\x1dLOAD_CASE_ANALYSIS_TYPE_MODAL\x10\x07\x12-\n)LOAD_CASE_ANALYSIS_TYPE_RESPONSE_SPECTRUM\x10\x08\x12\"\n\x1eLOAD_CASE_ANALYSIS_TYPE_STATIC\x10\x01\x12*\n&LOAD_CASE_ANALYSIS_TYPE_TIME_DEPENDENT\x10\x02\x12(\n$LOAD_CASE_ANALYSIS_TYPE_TIME_HISTORY\x10\n\x12\x35\n1LOAD_CASE_ANALYSIS_TYPE_TIME_HISTORY_TIME_DIAGRAM\x10\x06\x12+\n\'LOAD_CASE_ANALYSIS_TYPE_WIND_SIMULATION\x10\t*\x98\x02\n\"LoadCaseInitialStateDefinitionType\x12\x37\n3LOAD_CASE_INITIAL_STATE_DEFINITION_TYPE_FINAL_STATE\x10\x00\x12\x35\n1LOAD_CASE_INITIAL_STATE_DEFINITION_TYPE_STIFFNESS\x10\x02\x12\x33\n/LOAD_CASE_INITIAL_STATE_DEFINITION_TYPE_STRAINS\x10\x01\x12M\nILOAD_CASE_INITIAL_STATE_DEFINITION_TYPE_STRAINS_WITH_USER_DEFINED_FACTORS\x10\x03*g\n\x11LoadCaseFactorPhi\x12\x1a\n\x16LOAD_CASE_FACTOR_PHI_1\x10\x00\x12\x1a\n\x16LOAD_CASE_FACTOR_PHI_2\x10\x01\x12\x1a\n\x16LOAD_CASE_FACTOR_PHI_3\x10\x02*\xd9\x01\n$LoadCaseSpecificationForLoadCaseGr1a\x12\x32\n.LOAD_CASE_SPECIFICATION_FOR_LOAD_CASE_GR1A_TS1\x10\x00\x12I\nELOAD_CASE_SPECIFICATION_FOR_LOAD_CASE_GR1A_PEDESTRIAN_AND_CYCLE_TRACK\x10\x02\x12\x32\n.LOAD_CASE_SPECIFICATION_FOR_LOAD_CASE_GR1A_UDL\x10\x01*\xd3\x01\n#LoadCaseSpecificationForLoadCaseGr2\x12X\nTLOAD_CASE_SPECIFICATION_FOR_LOAD_CASE_GR2_HORIZONTAL_FORCES_BRAKING_AND_ACCELERATION\x10\x00\x12R\nNLOAD_CASE_SPECIFICATION_FOR_LOAD_CASE_GR2_HORIZONTAL_FORCES_CENTRIFUGAL_FORCES\x10\x01*\xc9\x01\n#LoadCaseSpecificationForLoadCaseGr5\x12=\n9LOAD_CASE_SPECIFICATION_FOR_LOAD_CASE_GR5_SPECIAL_VEHICLE\x10\x00\x12\x30\n,LOAD_CASE_SPECIFICATION_FOR_LOAD_CASE_GR5_TS\x10\x01\x12\x31\n-LOAD_CASE_SPECIFICATION_FOR_LOAD_CASE_GR5_UDL\x10\x02*\x82\x03\n#LoadCaseSpecificationForLoadCaseGr6\x12\x30\n,LOAD_CASE_SPECIFICATION_FOR_LOAD_CASE_GR6_TS\x10\x00\x12X\nTLOAD_CASE_SPECIFICATION_FOR_LOAD_CASE_GR6_HORIZONTAL_FORCES_BRAKING_AND_ACCELERATION\x10\x03\x12R\nNLOAD_CASE_SPECIFICATION_FOR_LOAD_CASE_GR6_HORIZONTAL_FORCES_CENTRIFUGAL_FORCES\x10\x04\x12H\nDLOAD_CASE_SPECIFICATION_FOR_LOAD_CASE_GR6_PEDESTRIAN_AND_CYCLE_TRACK\x10\x02\x12\x31\n-LOAD_CASE_SPECIFICATION_FOR_LOAD_CASE_GR6_UDL\x10\x01*\xca\x03\nBLoadCaseLiveloadConsiderDesignSituationEffectiveSeismicWeightCombo\x12y\nuLOAD_CASE_LIVELOAD_CONSIDER_DESIGN_SITUATION_EFFECTIVE_SEISMIC_WEIGHT_COMBO_EEFFECTIVE_SEISMIC_WEIGHT_FLOOR_LIVE_LOAD\x10\x00\x12\x92\x01\n\x8d\x01LOAD_CASE_LIVELOAD_CONSIDER_DESIGN_SITUATION_EFFECTIVE_SEISMIC_WEIGHT_COMBO_EEFFECTIVE_SEISMIC_WEIGHT_OPERATING_WEIGHT_OF_PERMANENT_EQUIPMENT\x10\x02\x12t\npLOAD_CASE_LIVELOAD_CONSIDER_DESIGN_SITUATION_EFFECTIVE_SEISMIC_WEIGHT_COMBO_EEFFECTIVE_SEISMIC_WEIGHT_PARTITIONS\x10\x01*\xe6\x03\nHLoadCaseLiveloadConsiderDesignSituationEffectiveSeismicWeightCYTHYECombo\x12\x80\x01\n|LOAD_CASE_LIVELOAD_CONSIDER_DESIGN_SITUATION_EFFECTIVE_SEISMIC_WEIGHT_CYTHYE_COMBO_EEFFECTIVE_SEISMIC_WEIGHT_FLOOR_LIVE_LOAD\x10\x00\x12\x99\x01\n\x94\x01LOAD_CASE_LIVELOAD_CONSIDER_DESIGN_SITUATION_EFFECTIVE_SEISMIC_WEIGHT_CYTHYE_COMBO_EEFFECTIVE_SEISMIC_WEIGHT_OPERATING_WEIGHT_OF_PERMANENT_EQUIPMENT\x10\x02\x12{\nwLOAD_CASE_LIVELOAD_CONSIDER_DESIGN_SITUATION_EFFECTIVE_SEISMIC_WEIGHT_CYTHYE_COMBO_EEFFECTIVE_SEISMIC_WEIGHT_PARTITIONS\x10\x01*\x91\x02\n9LoadCaseLiveloadConsiderDesignSituationSeismicWeightCombo\x12i\neLOAD_CASE_LIVELOAD_CONSIDER_DESIGN_SITUATION_SEISMIC_WEIGHT_COMBO_ESEISMIC_WEIGHT_FLOOR_LOADS_UP_TO_3\x10\x00\x12i\neLOAD_CASE_LIVELOAD_CONSIDER_DESIGN_SITUATION_SEISMIC_WEIGHT_COMBO_ESEISMIC_WEIGHT_FLOOR_LOADS_ABOVE_3\x10\x01*\xe3\x03\n7LoadCaseLiveloadConsiderDesignSituationSeismicMassCombo\x12}\nyLOAD_CASE_LIVELOAD_CONSIDER_DESIGN_SITUATION_SEISMIC_MASS_COMBO_ESEISMIC_MASS_LOAD_CALCULATED_ACCORDING_ACTUAL_CONDITIONS\x10\x00\x12\x90\x01\n\x8b\x01LOAD_CASE_LIVELOAD_CONSIDER_DESIGN_SITUATION_SEISMIC_MASS_COMBO_ESEISMIC_MASS_LOAD_CALCULATED_ACCORDING_EQUIVALENT_UNIFORM_LIBRARY_ARCHIVES\x10\x01\x12\x95\x01\n\x90\x01LOAD_CASE_LIVELOAD_CONSIDER_DESIGN_SITUATION_SEISMIC_MASS_COMBO_ESEISMIC_MASS_LOAD_CALCULATED_ACCORDING_EQUIVALENT_UNIFORM_OTHER_CIVIL_BUILDINGS\x10\x02*\xd9\x03\nELoadCaseLiveloadConsiderDesignSituationEffectiveSeismicWeightAciCombo\x12}\nyLOAD_CASE_LIVELOAD_CONSIDER_DESIGN_SITUATION_EFFECTIVE_SEISMIC_WEIGHT_ACI_COMBO_EEFFECTIVE_SEISMIC_WEIGHT_FLOOR_LIVE_LOAD\x10\x00\x12\x96\x01\n\x91\x01LOAD_CASE_LIVELOAD_CONSIDER_DESIGN_SITUATION_EFFECTIVE_SEISMIC_WEIGHT_ACI_COMBO_EEFFECTIVE_SEISMIC_WEIGHT_OPERATING_WEIGHT_OF_PERMANENT_EQUIPMENT\x10\x02\x12x\ntLOAD_CASE_LIVELOAD_CONSIDER_DESIGN_SITUATION_EFFECTIVE_SEISMIC_WEIGHT_ACI_COMBO_EEFFECTIVE_SEISMIC_WEIGHT_PARTITIONS\x10\x01*\xd9\x03\nELoadCaseLiveloadConsiderDesignSituationEffectiveSeismicWeightIbcCombo\x12}\nyLOAD_CASE_LIVELOAD_CONSIDER_DESIGN_SITUATION_EFFECTIVE_SEISMIC_WEIGHT_IBC_COMBO_EEFFECTIVE_SEISMIC_WEIGHT_FLOOR_LIVE_LOAD\x10\x00\x12\x96\x01\n\x91\x01LOAD_CASE_LIVELOAD_CONSIDER_DESIGN_SITUATION_EFFECTIVE_SEISMIC_WEIGHT_IBC_COMBO_EEFFECTIVE_SEISMIC_WEIGHT_OPERATING_WEIGHT_OF_PERMANENT_EQUIPMENT\x10\x02\x12x\ntLOAD_CASE_LIVELOAD_CONSIDER_DESIGN_SITUATION_EFFECTIVE_SEISMIC_WEIGHT_IBC_COMBO_EEFFECTIVE_SEISMIC_WEIGHT_PARTITIONS\x10\x01*\xb9\x01\n LoadCaseFlatRoofSnowLoadCategory\x12J\nFLOAD_CASE_FLAT_ROOF_SNOW_LOAD_CATEGORY_CAT_SNOW_LOADS_OF_30PSF_OR_LESS\x10\x00\x12I\nELOAD_CASE_FLAT_ROOF_SNOW_LOAD_CATEGORY_CAT_SNOW_LOADS_EXCEEDING_30PSF\x10\x01*\xe4\x01\n@LoadCaseDistinguishDifferentOverstrengthFactorInDirectionXyCombo\x12O\nKLOAD_CASE_DISTINGUISH_DIFFERENT_OVERSTRENGTH_FACTOR_IN_DIRECTION_XY_COMBO_X\x10\x00\x12O\nKLOAD_CASE_DISTINGUISH_DIFFERENT_OVERSTRENGTH_FACTOR_IN_DIRECTION_XY_COMBO_Y\x10\x01*c\n\x16LoadCaseLoadDurationSp\x12#\n\x1fLOAD_CASE_LOAD_DURATION_SP_LONG\x10\x00\x12$\n LOAD_CASE_LOAD_DURATION_SP_SHORT\x10\x01*z\n\x1cLoadCaseGroundWaterElevation\x12,\n(LOAD_CASE_GROUND_WATER_ELEVATION_MAXIMUM\x10\x00\x12,\n(LOAD_CASE_GROUND_WATER_ELEVATION_MINIMUM\x10\x01*\xdf\x07\n\x1cLoadCaseTypeOfImposedActions\x12\x44\n@LOAD_CASE_TYPE_OF_IMPOSED_ACTIONS_DISTRIBUTED_FLOORS_RESIDENTIAL\x10\x00\x12>\n:LOAD_CASE_TYPE_OF_IMPOSED_ACTIONS_CONCENTRACED_BALUSTRADES\x10\r\x12\x43\n?LOAD_CASE_TYPE_OF_IMPOSED_ACTIONS_CONCENTRACED_DOMESTIC_HOUSING\x10\n\x12\x41\n=LOAD_CASE_TYPE_OF_IMPOSED_ACTIONS_CONCENTRACED_FLOORS_OFFICES\x10\x08\x12<\n8LOAD_CASE_TYPE_OF_IMPOSED_ACTIONS_CONCENTRACED_MACHINERY\x10\x0e\x12>\n:LOAD_CASE_TYPE_OF_IMPOSED_ACTIONS_CONCENTRACED_OTHER_ROOFS\x10\x0c\x12\x38\n4LOAD_CASE_TYPE_OF_IMPOSED_ACTIONS_CONCENTRACED_ROOFS\x10\x0b\x12:\n6LOAD_CASE_TYPE_OF_IMPOSED_ACTIONS_CONCENTRACED_STORAGE\x10\t\x12@\n<LOAD_CASE_TYPE_OF_IMPOSED_ACTIONS_DISTRIBUTED_FLOORS_OFFICES\x10\x01\x12>\n:LOAD_CASE_TYPE_OF_IMPOSED_ACTIONS_DISTRIBUTED_FLOORS_OTHER\x10\x05\x12@\n<LOAD_CASE_TYPE_OF_IMPOSED_ACTIONS_DISTRIBUTED_FLOORS_PARKING\x10\x02\x12?\n;LOAD_CASE_TYPE_OF_IMPOSED_ACTIONS_DISTRIBUTED_FLOORS_RETAIL\x10\x03\x12@\n<LOAD_CASE_TYPE_OF_IMPOSED_ACTIONS_DISTRIBUTED_FLOORS_STORAGE\x10\x04\x12=\n9LOAD_CASE_TYPE_OF_IMPOSED_ACTIONS_DISTRIBUTED_OTHER_ROOFS\x10\x07\x12\x37\n3LOAD_CASE_TYPE_OF_IMPOSED_ACTIONS_DISTRIBUTED_ROOFS\x10\x06\x62\x06proto3')
|
|
29
|
+
|
|
30
|
+
_globals = globals()
|
|
31
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
32
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.loading.load_case_pb2', _globals)
|
|
33
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
34
|
+
DESCRIPTOR._loaded_options = None
|
|
35
|
+
_globals['_LOADCASEANALYSISTYPE']._serialized_start=14952
|
|
36
|
+
_globals['_LOADCASEANALYSISTYPE']._serialized_end=15409
|
|
37
|
+
_globals['_LOADCASEINITIALSTATEDEFINITIONTYPE']._serialized_start=15412
|
|
38
|
+
_globals['_LOADCASEINITIALSTATEDEFINITIONTYPE']._serialized_end=15692
|
|
39
|
+
_globals['_LOADCASEFACTORPHI']._serialized_start=15694
|
|
40
|
+
_globals['_LOADCASEFACTORPHI']._serialized_end=15797
|
|
41
|
+
_globals['_LOADCASESPECIFICATIONFORLOADCASEGR1A']._serialized_start=15800
|
|
42
|
+
_globals['_LOADCASESPECIFICATIONFORLOADCASEGR1A']._serialized_end=16017
|
|
43
|
+
_globals['_LOADCASESPECIFICATIONFORLOADCASEGR2']._serialized_start=16020
|
|
44
|
+
_globals['_LOADCASESPECIFICATIONFORLOADCASEGR2']._serialized_end=16231
|
|
45
|
+
_globals['_LOADCASESPECIFICATIONFORLOADCASEGR5']._serialized_start=16234
|
|
46
|
+
_globals['_LOADCASESPECIFICATIONFORLOADCASEGR5']._serialized_end=16435
|
|
47
|
+
_globals['_LOADCASESPECIFICATIONFORLOADCASEGR6']._serialized_start=16438
|
|
48
|
+
_globals['_LOADCASESPECIFICATIONFORLOADCASEGR6']._serialized_end=16824
|
|
49
|
+
_globals['_LOADCASELIVELOADCONSIDERDESIGNSITUATIONEFFECTIVESEISMICWEIGHTCOMBO']._serialized_start=16827
|
|
50
|
+
_globals['_LOADCASELIVELOADCONSIDERDESIGNSITUATIONEFFECTIVESEISMICWEIGHTCOMBO']._serialized_end=17285
|
|
51
|
+
_globals['_LOADCASELIVELOADCONSIDERDESIGNSITUATIONEFFECTIVESEISMICWEIGHTCYTHYECOMBO']._serialized_start=17288
|
|
52
|
+
_globals['_LOADCASELIVELOADCONSIDERDESIGNSITUATIONEFFECTIVESEISMICWEIGHTCYTHYECOMBO']._serialized_end=17774
|
|
53
|
+
_globals['_LOADCASELIVELOADCONSIDERDESIGNSITUATIONSEISMICWEIGHTCOMBO']._serialized_start=17777
|
|
54
|
+
_globals['_LOADCASELIVELOADCONSIDERDESIGNSITUATIONSEISMICWEIGHTCOMBO']._serialized_end=18050
|
|
55
|
+
_globals['_LOADCASELIVELOADCONSIDERDESIGNSITUATIONSEISMICMASSCOMBO']._serialized_start=18053
|
|
56
|
+
_globals['_LOADCASELIVELOADCONSIDERDESIGNSITUATIONSEISMICMASSCOMBO']._serialized_end=18536
|
|
57
|
+
_globals['_LOADCASELIVELOADCONSIDERDESIGNSITUATIONEFFECTIVESEISMICWEIGHTACICOMBO']._serialized_start=18539
|
|
58
|
+
_globals['_LOADCASELIVELOADCONSIDERDESIGNSITUATIONEFFECTIVESEISMICWEIGHTACICOMBO']._serialized_end=19012
|
|
59
|
+
_globals['_LOADCASELIVELOADCONSIDERDESIGNSITUATIONEFFECTIVESEISMICWEIGHTIBCCOMBO']._serialized_start=19015
|
|
60
|
+
_globals['_LOADCASELIVELOADCONSIDERDESIGNSITUATIONEFFECTIVESEISMICWEIGHTIBCCOMBO']._serialized_end=19488
|
|
61
|
+
_globals['_LOADCASEFLATROOFSNOWLOADCATEGORY']._serialized_start=19491
|
|
62
|
+
_globals['_LOADCASEFLATROOFSNOWLOADCATEGORY']._serialized_end=19676
|
|
63
|
+
_globals['_LOADCASEDISTINGUISHDIFFERENTOVERSTRENGTHFACTORINDIRECTIONXYCOMBO']._serialized_start=19679
|
|
64
|
+
_globals['_LOADCASEDISTINGUISHDIFFERENTOVERSTRENGTHFACTORINDIRECTIONXYCOMBO']._serialized_end=19907
|
|
65
|
+
_globals['_LOADCASELOADDURATIONSP']._serialized_start=19909
|
|
66
|
+
_globals['_LOADCASELOADDURATIONSP']._serialized_end=20008
|
|
67
|
+
_globals['_LOADCASEGROUNDWATERELEVATION']._serialized_start=20010
|
|
68
|
+
_globals['_LOADCASEGROUNDWATERELEVATION']._serialized_end=20132
|
|
69
|
+
_globals['_LOADCASETYPEOFIMPOSEDACTIONS']._serialized_start=20135
|
|
70
|
+
_globals['_LOADCASETYPEOFIMPOSEDACTIONS']._serialized_end=21126
|
|
71
|
+
_globals['_LOADCASE']._serialized_start=101
|
|
72
|
+
_globals['_LOADCASE']._serialized_end=14837
|
|
73
|
+
_globals['_ARRAYOFLOADCASEINDIVIDUALFACTORSOFSELECTEDOBJECTSTABLE']._serialized_start=14839
|
|
74
|
+
_globals['_ARRAYOFLOADCASEINDIVIDUALFACTORSOFSELECTEDOBJECTSTABLE']._serialized_end=14895
|
|
75
|
+
_globals['_ARRAYOFLOADCASESELECTIONOFMODESMODEACTIVATIONTABLE']._serialized_start=14897
|
|
76
|
+
_globals['_ARRAYOFLOADCASESELECTIONOFMODESMODEACTIVATIONTABLE']._serialized_end=14949
|
|
77
|
+
# @@protoc_insertion_point(module_scope)
|