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,473 @@
|
|
|
1
|
+
from dlubal.api.common import common_pb2 as _common_pb2
|
|
2
|
+
from google.protobuf.internal import containers as _containers
|
|
3
|
+
from google.protobuf.internal import enum_type_wrapper as _enum_type_wrapper
|
|
4
|
+
from google.protobuf import descriptor as _descriptor
|
|
5
|
+
from google.protobuf import message as _message
|
|
6
|
+
from typing import ClassVar as _ClassVar, Iterable as _Iterable, Mapping as _Mapping, Optional as _Optional, Union as _Union
|
|
7
|
+
|
|
8
|
+
DESCRIPTOR: _descriptor.FileDescriptor
|
|
9
|
+
|
|
10
|
+
class SurfaceGeometry(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
11
|
+
__slots__ = ()
|
|
12
|
+
SURFACE_GEOMETRY_UNKNOWN: _ClassVar[SurfaceGeometry]
|
|
13
|
+
SURFACE_GEOMETRY_MINIMUM_CURVATURE_SPLINE: _ClassVar[SurfaceGeometry]
|
|
14
|
+
SURFACE_GEOMETRY_NURBS: _ClassVar[SurfaceGeometry]
|
|
15
|
+
SURFACE_GEOMETRY_PIPE: _ClassVar[SurfaceGeometry]
|
|
16
|
+
SURFACE_GEOMETRY_PLANE: _ClassVar[SurfaceGeometry]
|
|
17
|
+
SURFACE_GEOMETRY_QUADRANGLE: _ClassVar[SurfaceGeometry]
|
|
18
|
+
SURFACE_GEOMETRY_ROTATED: _ClassVar[SurfaceGeometry]
|
|
19
|
+
SURFACE_GEOMETRY_TRIMMED: _ClassVar[SurfaceGeometry]
|
|
20
|
+
|
|
21
|
+
class SurfaceType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
22
|
+
__slots__ = ()
|
|
23
|
+
SURFACE_TYPE_STANDARD: _ClassVar[SurfaceType]
|
|
24
|
+
SURFACE_TYPE_FLOOR: _ClassVar[SurfaceType]
|
|
25
|
+
SURFACE_TYPE_FLOOR_DIAPHRAGM: _ClassVar[SurfaceType]
|
|
26
|
+
SURFACE_TYPE_FLOOR_FLEXIBLE_DIAPHRAGM: _ClassVar[SurfaceType]
|
|
27
|
+
SURFACE_TYPE_FLOOR_SEMIRIGID: _ClassVar[SurfaceType]
|
|
28
|
+
SURFACE_TYPE_GROUNDWATER: _ClassVar[SurfaceType]
|
|
29
|
+
SURFACE_TYPE_LOAD_TRANSFER: _ClassVar[SurfaceType]
|
|
30
|
+
SURFACE_TYPE_MEMBRANE: _ClassVar[SurfaceType]
|
|
31
|
+
SURFACE_TYPE_RIGID: _ClassVar[SurfaceType]
|
|
32
|
+
SURFACE_TYPE_WITHOUT_MEMBRANE_TENSION: _ClassVar[SurfaceType]
|
|
33
|
+
SURFACE_TYPE_WITHOUT_THICKNESS: _ClassVar[SurfaceType]
|
|
34
|
+
|
|
35
|
+
class SurfaceLoadTransferDirection(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
36
|
+
__slots__ = ()
|
|
37
|
+
SURFACE_LOAD_TRANSFER_DIRECTION_IN_X: _ClassVar[SurfaceLoadTransferDirection]
|
|
38
|
+
SURFACE_LOAD_TRANSFER_DIRECTION_IN_BOTH: _ClassVar[SurfaceLoadTransferDirection]
|
|
39
|
+
SURFACE_LOAD_TRANSFER_DIRECTION_IN_Y: _ClassVar[SurfaceLoadTransferDirection]
|
|
40
|
+
SURFACE_LOAD_TRANSFER_DIRECTION_ISOTROPIC: _ClassVar[SurfaceLoadTransferDirection]
|
|
41
|
+
|
|
42
|
+
class SurfaceLoadDistribution(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
43
|
+
__slots__ = ()
|
|
44
|
+
SURFACE_LOAD_DISTRIBUTION_UNIFORM: _ClassVar[SurfaceLoadDistribution]
|
|
45
|
+
SURFACE_LOAD_DISTRIBUTION_VARYING_LINEAR: _ClassVar[SurfaceLoadDistribution]
|
|
46
|
+
|
|
47
|
+
class SurfaceQuadranglePreferableShape(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
48
|
+
__slots__ = ()
|
|
49
|
+
SURFACE_QUADRANGLE_PREFERABLE_SHAPE_ROTATED: _ClassVar[SurfaceQuadranglePreferableShape]
|
|
50
|
+
SURFACE_QUADRANGLE_PREFERABLE_SHAPE_PIPE: _ClassVar[SurfaceQuadranglePreferableShape]
|
|
51
|
+
|
|
52
|
+
class SurfaceMeshingType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
53
|
+
__slots__ = ()
|
|
54
|
+
SURFACE_MESHING_TYPE_USE_GLOBAL_SETTINGS: _ClassVar[SurfaceMeshingType]
|
|
55
|
+
SURFACE_MESHING_TYPE_FREE: _ClassVar[SurfaceMeshingType]
|
|
56
|
+
SURFACE_MESHING_TYPE_MAPPED: _ClassVar[SurfaceMeshingType]
|
|
57
|
+
|
|
58
|
+
class SurfaceInputAxesRotationSpecificationType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
59
|
+
__slots__ = ()
|
|
60
|
+
SURFACE_INPUT_AXES_ROTATION_SPECIFICATION_TYPE_ANGULAR_ROTATION: _ClassVar[SurfaceInputAxesRotationSpecificationType]
|
|
61
|
+
SURFACE_INPUT_AXES_ROTATION_SPECIFICATION_TYPE_DIRECT_TO_POINT: _ClassVar[SurfaceInputAxesRotationSpecificationType]
|
|
62
|
+
SURFACE_INPUT_AXES_ROTATION_SPECIFICATION_TYPE_PARALLEL_TO_COORDINATE_SYSTEM: _ClassVar[SurfaceInputAxesRotationSpecificationType]
|
|
63
|
+
SURFACE_INPUT_AXES_ROTATION_SPECIFICATION_TYPE_PARALLEL_TO_LINES: _ClassVar[SurfaceInputAxesRotationSpecificationType]
|
|
64
|
+
|
|
65
|
+
class SurfaceInputAxesAxis(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
66
|
+
__slots__ = ()
|
|
67
|
+
SURFACE_INPUT_AXES_AXIS_X: _ClassVar[SurfaceInputAxesAxis]
|
|
68
|
+
SURFACE_INPUT_AXES_AXIS_Y: _ClassVar[SurfaceInputAxesAxis]
|
|
69
|
+
|
|
70
|
+
class SurfaceResultAxesRotationSpecificationType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
71
|
+
__slots__ = ()
|
|
72
|
+
SURFACE_RESULT_AXES_ROTATION_SPECIFICATION_TYPE_IDENTICAL_TO_INPUT_AXES: _ClassVar[SurfaceResultAxesRotationSpecificationType]
|
|
73
|
+
|
|
74
|
+
class SurfaceGridType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
75
|
+
__slots__ = ()
|
|
76
|
+
SURFACE_GRID_TYPE_CARTESIAN: _ClassVar[SurfaceGridType]
|
|
77
|
+
SURFACE_GRID_TYPE_POLAR: _ClassVar[SurfaceGridType]
|
|
78
|
+
|
|
79
|
+
class SurfaceDeflectionCheckSurfaceType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
80
|
+
__slots__ = ()
|
|
81
|
+
SURFACE_DEFLECTION_CHECK_SURFACE_TYPE_DOUBLE_SUPPORTED: _ClassVar[SurfaceDeflectionCheckSurfaceType]
|
|
82
|
+
SURFACE_DEFLECTION_CHECK_SURFACE_TYPE_CANTILEVER: _ClassVar[SurfaceDeflectionCheckSurfaceType]
|
|
83
|
+
|
|
84
|
+
class SurfaceDeflectionCheckDisplacementReference(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
85
|
+
__slots__ = ()
|
|
86
|
+
SURFACE_DEFLECTION_CHECK_DISPLACEMENT_REFERENCE_DEFORMED_USER_DEFINED_REFERENCE_PLANE: _ClassVar[SurfaceDeflectionCheckDisplacementReference]
|
|
87
|
+
SURFACE_DEFLECTION_CHECK_DISPLACEMENT_REFERENCE_PARALLEL_SURFACE: _ClassVar[SurfaceDeflectionCheckDisplacementReference]
|
|
88
|
+
SURFACE_DEFLECTION_CHECK_DISPLACEMENT_REFERENCE_UNDEFORMED_SYSTEM: _ClassVar[SurfaceDeflectionCheckDisplacementReference]
|
|
89
|
+
|
|
90
|
+
class SurfaceDeflectionCheckReferenceLengthZDefinitionType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
91
|
+
__slots__ = ()
|
|
92
|
+
SURFACE_DEFLECTION_CHECK_REFERENCE_LENGTH_Z_DEFINITION_TYPE_MANUALLY: _ClassVar[SurfaceDeflectionCheckReferenceLengthZDefinitionType]
|
|
93
|
+
SURFACE_DEFLECTION_CHECK_REFERENCE_LENGTH_Z_DEFINITION_TYPE_BY_MAXIMUM_BOUNDARY_LINE: _ClassVar[SurfaceDeflectionCheckReferenceLengthZDefinitionType]
|
|
94
|
+
SURFACE_DEFLECTION_CHECK_REFERENCE_LENGTH_Z_DEFINITION_TYPE_BY_MINIMUM_BOUNDARY_LINE: _ClassVar[SurfaceDeflectionCheckReferenceLengthZDefinitionType]
|
|
95
|
+
SURFACE_GEOMETRY_UNKNOWN: SurfaceGeometry
|
|
96
|
+
SURFACE_GEOMETRY_MINIMUM_CURVATURE_SPLINE: SurfaceGeometry
|
|
97
|
+
SURFACE_GEOMETRY_NURBS: SurfaceGeometry
|
|
98
|
+
SURFACE_GEOMETRY_PIPE: SurfaceGeometry
|
|
99
|
+
SURFACE_GEOMETRY_PLANE: SurfaceGeometry
|
|
100
|
+
SURFACE_GEOMETRY_QUADRANGLE: SurfaceGeometry
|
|
101
|
+
SURFACE_GEOMETRY_ROTATED: SurfaceGeometry
|
|
102
|
+
SURFACE_GEOMETRY_TRIMMED: SurfaceGeometry
|
|
103
|
+
SURFACE_TYPE_STANDARD: SurfaceType
|
|
104
|
+
SURFACE_TYPE_FLOOR: SurfaceType
|
|
105
|
+
SURFACE_TYPE_FLOOR_DIAPHRAGM: SurfaceType
|
|
106
|
+
SURFACE_TYPE_FLOOR_FLEXIBLE_DIAPHRAGM: SurfaceType
|
|
107
|
+
SURFACE_TYPE_FLOOR_SEMIRIGID: SurfaceType
|
|
108
|
+
SURFACE_TYPE_GROUNDWATER: SurfaceType
|
|
109
|
+
SURFACE_TYPE_LOAD_TRANSFER: SurfaceType
|
|
110
|
+
SURFACE_TYPE_MEMBRANE: SurfaceType
|
|
111
|
+
SURFACE_TYPE_RIGID: SurfaceType
|
|
112
|
+
SURFACE_TYPE_WITHOUT_MEMBRANE_TENSION: SurfaceType
|
|
113
|
+
SURFACE_TYPE_WITHOUT_THICKNESS: SurfaceType
|
|
114
|
+
SURFACE_LOAD_TRANSFER_DIRECTION_IN_X: SurfaceLoadTransferDirection
|
|
115
|
+
SURFACE_LOAD_TRANSFER_DIRECTION_IN_BOTH: SurfaceLoadTransferDirection
|
|
116
|
+
SURFACE_LOAD_TRANSFER_DIRECTION_IN_Y: SurfaceLoadTransferDirection
|
|
117
|
+
SURFACE_LOAD_TRANSFER_DIRECTION_ISOTROPIC: SurfaceLoadTransferDirection
|
|
118
|
+
SURFACE_LOAD_DISTRIBUTION_UNIFORM: SurfaceLoadDistribution
|
|
119
|
+
SURFACE_LOAD_DISTRIBUTION_VARYING_LINEAR: SurfaceLoadDistribution
|
|
120
|
+
SURFACE_QUADRANGLE_PREFERABLE_SHAPE_ROTATED: SurfaceQuadranglePreferableShape
|
|
121
|
+
SURFACE_QUADRANGLE_PREFERABLE_SHAPE_PIPE: SurfaceQuadranglePreferableShape
|
|
122
|
+
SURFACE_MESHING_TYPE_USE_GLOBAL_SETTINGS: SurfaceMeshingType
|
|
123
|
+
SURFACE_MESHING_TYPE_FREE: SurfaceMeshingType
|
|
124
|
+
SURFACE_MESHING_TYPE_MAPPED: SurfaceMeshingType
|
|
125
|
+
SURFACE_INPUT_AXES_ROTATION_SPECIFICATION_TYPE_ANGULAR_ROTATION: SurfaceInputAxesRotationSpecificationType
|
|
126
|
+
SURFACE_INPUT_AXES_ROTATION_SPECIFICATION_TYPE_DIRECT_TO_POINT: SurfaceInputAxesRotationSpecificationType
|
|
127
|
+
SURFACE_INPUT_AXES_ROTATION_SPECIFICATION_TYPE_PARALLEL_TO_COORDINATE_SYSTEM: SurfaceInputAxesRotationSpecificationType
|
|
128
|
+
SURFACE_INPUT_AXES_ROTATION_SPECIFICATION_TYPE_PARALLEL_TO_LINES: SurfaceInputAxesRotationSpecificationType
|
|
129
|
+
SURFACE_INPUT_AXES_AXIS_X: SurfaceInputAxesAxis
|
|
130
|
+
SURFACE_INPUT_AXES_AXIS_Y: SurfaceInputAxesAxis
|
|
131
|
+
SURFACE_RESULT_AXES_ROTATION_SPECIFICATION_TYPE_IDENTICAL_TO_INPUT_AXES: SurfaceResultAxesRotationSpecificationType
|
|
132
|
+
SURFACE_GRID_TYPE_CARTESIAN: SurfaceGridType
|
|
133
|
+
SURFACE_GRID_TYPE_POLAR: SurfaceGridType
|
|
134
|
+
SURFACE_DEFLECTION_CHECK_SURFACE_TYPE_DOUBLE_SUPPORTED: SurfaceDeflectionCheckSurfaceType
|
|
135
|
+
SURFACE_DEFLECTION_CHECK_SURFACE_TYPE_CANTILEVER: SurfaceDeflectionCheckSurfaceType
|
|
136
|
+
SURFACE_DEFLECTION_CHECK_DISPLACEMENT_REFERENCE_DEFORMED_USER_DEFINED_REFERENCE_PLANE: SurfaceDeflectionCheckDisplacementReference
|
|
137
|
+
SURFACE_DEFLECTION_CHECK_DISPLACEMENT_REFERENCE_PARALLEL_SURFACE: SurfaceDeflectionCheckDisplacementReference
|
|
138
|
+
SURFACE_DEFLECTION_CHECK_DISPLACEMENT_REFERENCE_UNDEFORMED_SYSTEM: SurfaceDeflectionCheckDisplacementReference
|
|
139
|
+
SURFACE_DEFLECTION_CHECK_REFERENCE_LENGTH_Z_DEFINITION_TYPE_MANUALLY: SurfaceDeflectionCheckReferenceLengthZDefinitionType
|
|
140
|
+
SURFACE_DEFLECTION_CHECK_REFERENCE_LENGTH_Z_DEFINITION_TYPE_BY_MAXIMUM_BOUNDARY_LINE: SurfaceDeflectionCheckReferenceLengthZDefinitionType
|
|
141
|
+
SURFACE_DEFLECTION_CHECK_REFERENCE_LENGTH_Z_DEFINITION_TYPE_BY_MINIMUM_BOUNDARY_LINE: SurfaceDeflectionCheckReferenceLengthZDefinitionType
|
|
142
|
+
|
|
143
|
+
class Surface(_message.Message):
|
|
144
|
+
__slots__ = ("no", "geometry", "type", "boundary_lines", "thickness", "material", "analytical_area", "analytical_volume", "analytical_mass", "analytical_center_of_gravity", "analytical_center_of_gravity_x", "analytical_center_of_gravity_y", "analytical_center_of_gravity_z", "area", "volume", "mass", "center_of_gravity", "center_of_gravity_x", "center_of_gravity_y", "center_of_gravity_z", "position", "position_short", "grid_enabled", "is_deactivated_for_calculation", "comment", "design_properties_via_surface", "design_properties_via_parent_surface_set", "design_properties_parent_surface_set", "load_transfer_direction", "is_surface_weight_enabled", "is_advanced_distribution_settings_enabled", "surface_weight", "sampling_factor", "stripe_width", "consider_member_eccentricity", "consider_section_distribution", "load_distribution", "neglect_equilibrium_of_moments", "excluded_members", "excluded_parallel_to_members", "excluded_lines", "excluded_parallel_to_lines", "excluded_nodes", "loaded_members", "loaded_lines", "loaded_nodes", "nurbs_control_point_count_in_direction_u", "nurbs_control_point_count_in_direction_v", "nurbs_order_in_direction_u", "nurbs_order_in_direction_v", "nurbs_control_points", "quadrangle_corner_nodes", "quadrangle_corner_node_1", "quadrangle_corner_node_2", "quadrangle_corner_node_3", "quadrangle_corner_node_4", "quadrangle_preferable_shape", "pipe_radius", "pipe_use_radius_end", "pipe_radius_end", "pipe_center_line", "pipe_generated_lines", "has_line_hinges", "support", "eccentricity", "mesh_refinement", "meshing_type", "input_axes_rotation_specification_type", "input_axes_angular_rotation", "input_axes_axis", "input_axes_lines", "input_axes_point_1", "input_axes_point_1_x", "input_axes_point_1_y", "input_axes_point_1_z", "input_axes_point_2", "input_axes_point_2_x", "input_axes_point_2_y", "input_axes_point_2_z", "input_axes_coordinate_system", "result_axes_rotation_specification_type", "reversed_normal", "grid_type", "grid_origin", "grid_origin_x", "grid_origin_y", "grid_origin_z", "grid_adapt_automatically", "grid_point_count_negative_x", "grid_point_count_positive_x", "grid_point_count_negative_y", "grid_point_count_positive_y", "grid_numbering_increment", "grid_point_count_r", "grid_distance_x", "grid_distance_y", "grid_distance_r", "grid_rotation_alpha", "grid_rotation_beta", "grid_angle_gamma", "auto_detection_of_integrated_objects", "integrated_nodes", "integrated_lines", "integrated_openings", "has_integrated_objects", "has_input_axes_rotation", "has_result_axes_rotation", "surface_timber_design_uls_configuration", "surface_timber_design_sls_configuration", "surface_timber_design_fr_configuration", "timber_service_class", "timber_moisture_class", "timber_service_conditions", "surface_reinforcements", "is_user_defined_concrete_cover_enabled", "concrete_cover_top", "concrete_cover_bottom", "user_defined_concrete_cover_top", "user_defined_concrete_cover_bottom", "concrete_durability_top", "concrete_durability_bottom", "reinforcement_direction_top", "reinforcement_direction_bottom", "deflection_check_surface_type", "deflection_check_displacement_reference", "deflection_check_reference_length_z", "deflection_check_reference_length_z_definition_type", "deflection_check_reference_plane_point_1", "deflection_check_reference_plane_point_1_x", "deflection_check_reference_plane_point_1_y", "deflection_check_reference_plane_point_1_z", "deflection_check_reference_plane_point_2", "deflection_check_reference_plane_point_2_x", "deflection_check_reference_plane_point_2_y", "deflection_check_reference_plane_point_2_z", "deflection_check_reference_plane_point_3", "deflection_check_reference_plane_point_3_x", "deflection_check_reference_plane_point_3_y", "deflection_check_reference_plane_point_3_z", "surface_reinforcement_table", "surface_concrete_design_uls_configuration", "surface_concrete_design_sls_configuration", "surface_concrete_design_fr_configuration", "surface_concrete_design_seismic_configuration", "rotated_boundary_line", "rotated_angle_of_rotation", "rotated_point_p", "rotated_point_p_x", "rotated_point_p_y", "rotated_point_p_z", "rotated_point_r", "rotated_point_r_x", "rotated_point_r_y", "rotated_point_r_z", "rotated_generated_lines", "stress_analysis_configuration", "is_generated", "generating_object_info", "id_for_export_import", "metadata_for_export_import")
|
|
145
|
+
NO_FIELD_NUMBER: _ClassVar[int]
|
|
146
|
+
GEOMETRY_FIELD_NUMBER: _ClassVar[int]
|
|
147
|
+
TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
148
|
+
BOUNDARY_LINES_FIELD_NUMBER: _ClassVar[int]
|
|
149
|
+
THICKNESS_FIELD_NUMBER: _ClassVar[int]
|
|
150
|
+
MATERIAL_FIELD_NUMBER: _ClassVar[int]
|
|
151
|
+
ANALYTICAL_AREA_FIELD_NUMBER: _ClassVar[int]
|
|
152
|
+
ANALYTICAL_VOLUME_FIELD_NUMBER: _ClassVar[int]
|
|
153
|
+
ANALYTICAL_MASS_FIELD_NUMBER: _ClassVar[int]
|
|
154
|
+
ANALYTICAL_CENTER_OF_GRAVITY_FIELD_NUMBER: _ClassVar[int]
|
|
155
|
+
ANALYTICAL_CENTER_OF_GRAVITY_X_FIELD_NUMBER: _ClassVar[int]
|
|
156
|
+
ANALYTICAL_CENTER_OF_GRAVITY_Y_FIELD_NUMBER: _ClassVar[int]
|
|
157
|
+
ANALYTICAL_CENTER_OF_GRAVITY_Z_FIELD_NUMBER: _ClassVar[int]
|
|
158
|
+
AREA_FIELD_NUMBER: _ClassVar[int]
|
|
159
|
+
VOLUME_FIELD_NUMBER: _ClassVar[int]
|
|
160
|
+
MASS_FIELD_NUMBER: _ClassVar[int]
|
|
161
|
+
CENTER_OF_GRAVITY_FIELD_NUMBER: _ClassVar[int]
|
|
162
|
+
CENTER_OF_GRAVITY_X_FIELD_NUMBER: _ClassVar[int]
|
|
163
|
+
CENTER_OF_GRAVITY_Y_FIELD_NUMBER: _ClassVar[int]
|
|
164
|
+
CENTER_OF_GRAVITY_Z_FIELD_NUMBER: _ClassVar[int]
|
|
165
|
+
POSITION_FIELD_NUMBER: _ClassVar[int]
|
|
166
|
+
POSITION_SHORT_FIELD_NUMBER: _ClassVar[int]
|
|
167
|
+
GRID_ENABLED_FIELD_NUMBER: _ClassVar[int]
|
|
168
|
+
IS_DEACTIVATED_FOR_CALCULATION_FIELD_NUMBER: _ClassVar[int]
|
|
169
|
+
COMMENT_FIELD_NUMBER: _ClassVar[int]
|
|
170
|
+
DESIGN_PROPERTIES_VIA_SURFACE_FIELD_NUMBER: _ClassVar[int]
|
|
171
|
+
DESIGN_PROPERTIES_VIA_PARENT_SURFACE_SET_FIELD_NUMBER: _ClassVar[int]
|
|
172
|
+
DESIGN_PROPERTIES_PARENT_SURFACE_SET_FIELD_NUMBER: _ClassVar[int]
|
|
173
|
+
LOAD_TRANSFER_DIRECTION_FIELD_NUMBER: _ClassVar[int]
|
|
174
|
+
IS_SURFACE_WEIGHT_ENABLED_FIELD_NUMBER: _ClassVar[int]
|
|
175
|
+
IS_ADVANCED_DISTRIBUTION_SETTINGS_ENABLED_FIELD_NUMBER: _ClassVar[int]
|
|
176
|
+
SURFACE_WEIGHT_FIELD_NUMBER: _ClassVar[int]
|
|
177
|
+
SAMPLING_FACTOR_FIELD_NUMBER: _ClassVar[int]
|
|
178
|
+
STRIPE_WIDTH_FIELD_NUMBER: _ClassVar[int]
|
|
179
|
+
CONSIDER_MEMBER_ECCENTRICITY_FIELD_NUMBER: _ClassVar[int]
|
|
180
|
+
CONSIDER_SECTION_DISTRIBUTION_FIELD_NUMBER: _ClassVar[int]
|
|
181
|
+
LOAD_DISTRIBUTION_FIELD_NUMBER: _ClassVar[int]
|
|
182
|
+
NEGLECT_EQUILIBRIUM_OF_MOMENTS_FIELD_NUMBER: _ClassVar[int]
|
|
183
|
+
EXCLUDED_MEMBERS_FIELD_NUMBER: _ClassVar[int]
|
|
184
|
+
EXCLUDED_PARALLEL_TO_MEMBERS_FIELD_NUMBER: _ClassVar[int]
|
|
185
|
+
EXCLUDED_LINES_FIELD_NUMBER: _ClassVar[int]
|
|
186
|
+
EXCLUDED_PARALLEL_TO_LINES_FIELD_NUMBER: _ClassVar[int]
|
|
187
|
+
EXCLUDED_NODES_FIELD_NUMBER: _ClassVar[int]
|
|
188
|
+
LOADED_MEMBERS_FIELD_NUMBER: _ClassVar[int]
|
|
189
|
+
LOADED_LINES_FIELD_NUMBER: _ClassVar[int]
|
|
190
|
+
LOADED_NODES_FIELD_NUMBER: _ClassVar[int]
|
|
191
|
+
NURBS_CONTROL_POINT_COUNT_IN_DIRECTION_U_FIELD_NUMBER: _ClassVar[int]
|
|
192
|
+
NURBS_CONTROL_POINT_COUNT_IN_DIRECTION_V_FIELD_NUMBER: _ClassVar[int]
|
|
193
|
+
NURBS_ORDER_IN_DIRECTION_U_FIELD_NUMBER: _ClassVar[int]
|
|
194
|
+
NURBS_ORDER_IN_DIRECTION_V_FIELD_NUMBER: _ClassVar[int]
|
|
195
|
+
NURBS_CONTROL_POINTS_FIELD_NUMBER: _ClassVar[int]
|
|
196
|
+
QUADRANGLE_CORNER_NODES_FIELD_NUMBER: _ClassVar[int]
|
|
197
|
+
QUADRANGLE_CORNER_NODE_1_FIELD_NUMBER: _ClassVar[int]
|
|
198
|
+
QUADRANGLE_CORNER_NODE_2_FIELD_NUMBER: _ClassVar[int]
|
|
199
|
+
QUADRANGLE_CORNER_NODE_3_FIELD_NUMBER: _ClassVar[int]
|
|
200
|
+
QUADRANGLE_CORNER_NODE_4_FIELD_NUMBER: _ClassVar[int]
|
|
201
|
+
QUADRANGLE_PREFERABLE_SHAPE_FIELD_NUMBER: _ClassVar[int]
|
|
202
|
+
PIPE_RADIUS_FIELD_NUMBER: _ClassVar[int]
|
|
203
|
+
PIPE_USE_RADIUS_END_FIELD_NUMBER: _ClassVar[int]
|
|
204
|
+
PIPE_RADIUS_END_FIELD_NUMBER: _ClassVar[int]
|
|
205
|
+
PIPE_CENTER_LINE_FIELD_NUMBER: _ClassVar[int]
|
|
206
|
+
PIPE_GENERATED_LINES_FIELD_NUMBER: _ClassVar[int]
|
|
207
|
+
HAS_LINE_HINGES_FIELD_NUMBER: _ClassVar[int]
|
|
208
|
+
SUPPORT_FIELD_NUMBER: _ClassVar[int]
|
|
209
|
+
ECCENTRICITY_FIELD_NUMBER: _ClassVar[int]
|
|
210
|
+
MESH_REFINEMENT_FIELD_NUMBER: _ClassVar[int]
|
|
211
|
+
MESHING_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
212
|
+
INPUT_AXES_ROTATION_SPECIFICATION_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
213
|
+
INPUT_AXES_ANGULAR_ROTATION_FIELD_NUMBER: _ClassVar[int]
|
|
214
|
+
INPUT_AXES_AXIS_FIELD_NUMBER: _ClassVar[int]
|
|
215
|
+
INPUT_AXES_LINES_FIELD_NUMBER: _ClassVar[int]
|
|
216
|
+
INPUT_AXES_POINT_1_FIELD_NUMBER: _ClassVar[int]
|
|
217
|
+
INPUT_AXES_POINT_1_X_FIELD_NUMBER: _ClassVar[int]
|
|
218
|
+
INPUT_AXES_POINT_1_Y_FIELD_NUMBER: _ClassVar[int]
|
|
219
|
+
INPUT_AXES_POINT_1_Z_FIELD_NUMBER: _ClassVar[int]
|
|
220
|
+
INPUT_AXES_POINT_2_FIELD_NUMBER: _ClassVar[int]
|
|
221
|
+
INPUT_AXES_POINT_2_X_FIELD_NUMBER: _ClassVar[int]
|
|
222
|
+
INPUT_AXES_POINT_2_Y_FIELD_NUMBER: _ClassVar[int]
|
|
223
|
+
INPUT_AXES_POINT_2_Z_FIELD_NUMBER: _ClassVar[int]
|
|
224
|
+
INPUT_AXES_COORDINATE_SYSTEM_FIELD_NUMBER: _ClassVar[int]
|
|
225
|
+
RESULT_AXES_ROTATION_SPECIFICATION_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
226
|
+
REVERSED_NORMAL_FIELD_NUMBER: _ClassVar[int]
|
|
227
|
+
GRID_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
228
|
+
GRID_ORIGIN_FIELD_NUMBER: _ClassVar[int]
|
|
229
|
+
GRID_ORIGIN_X_FIELD_NUMBER: _ClassVar[int]
|
|
230
|
+
GRID_ORIGIN_Y_FIELD_NUMBER: _ClassVar[int]
|
|
231
|
+
GRID_ORIGIN_Z_FIELD_NUMBER: _ClassVar[int]
|
|
232
|
+
GRID_ADAPT_AUTOMATICALLY_FIELD_NUMBER: _ClassVar[int]
|
|
233
|
+
GRID_POINT_COUNT_NEGATIVE_X_FIELD_NUMBER: _ClassVar[int]
|
|
234
|
+
GRID_POINT_COUNT_POSITIVE_X_FIELD_NUMBER: _ClassVar[int]
|
|
235
|
+
GRID_POINT_COUNT_NEGATIVE_Y_FIELD_NUMBER: _ClassVar[int]
|
|
236
|
+
GRID_POINT_COUNT_POSITIVE_Y_FIELD_NUMBER: _ClassVar[int]
|
|
237
|
+
GRID_NUMBERING_INCREMENT_FIELD_NUMBER: _ClassVar[int]
|
|
238
|
+
GRID_POINT_COUNT_R_FIELD_NUMBER: _ClassVar[int]
|
|
239
|
+
GRID_DISTANCE_X_FIELD_NUMBER: _ClassVar[int]
|
|
240
|
+
GRID_DISTANCE_Y_FIELD_NUMBER: _ClassVar[int]
|
|
241
|
+
GRID_DISTANCE_R_FIELD_NUMBER: _ClassVar[int]
|
|
242
|
+
GRID_ROTATION_ALPHA_FIELD_NUMBER: _ClassVar[int]
|
|
243
|
+
GRID_ROTATION_BETA_FIELD_NUMBER: _ClassVar[int]
|
|
244
|
+
GRID_ANGLE_GAMMA_FIELD_NUMBER: _ClassVar[int]
|
|
245
|
+
AUTO_DETECTION_OF_INTEGRATED_OBJECTS_FIELD_NUMBER: _ClassVar[int]
|
|
246
|
+
INTEGRATED_NODES_FIELD_NUMBER: _ClassVar[int]
|
|
247
|
+
INTEGRATED_LINES_FIELD_NUMBER: _ClassVar[int]
|
|
248
|
+
INTEGRATED_OPENINGS_FIELD_NUMBER: _ClassVar[int]
|
|
249
|
+
HAS_INTEGRATED_OBJECTS_FIELD_NUMBER: _ClassVar[int]
|
|
250
|
+
HAS_INPUT_AXES_ROTATION_FIELD_NUMBER: _ClassVar[int]
|
|
251
|
+
HAS_RESULT_AXES_ROTATION_FIELD_NUMBER: _ClassVar[int]
|
|
252
|
+
SURFACE_TIMBER_DESIGN_ULS_CONFIGURATION_FIELD_NUMBER: _ClassVar[int]
|
|
253
|
+
SURFACE_TIMBER_DESIGN_SLS_CONFIGURATION_FIELD_NUMBER: _ClassVar[int]
|
|
254
|
+
SURFACE_TIMBER_DESIGN_FR_CONFIGURATION_FIELD_NUMBER: _ClassVar[int]
|
|
255
|
+
TIMBER_SERVICE_CLASS_FIELD_NUMBER: _ClassVar[int]
|
|
256
|
+
TIMBER_MOISTURE_CLASS_FIELD_NUMBER: _ClassVar[int]
|
|
257
|
+
TIMBER_SERVICE_CONDITIONS_FIELD_NUMBER: _ClassVar[int]
|
|
258
|
+
SURFACE_REINFORCEMENTS_FIELD_NUMBER: _ClassVar[int]
|
|
259
|
+
IS_USER_DEFINED_CONCRETE_COVER_ENABLED_FIELD_NUMBER: _ClassVar[int]
|
|
260
|
+
CONCRETE_COVER_TOP_FIELD_NUMBER: _ClassVar[int]
|
|
261
|
+
CONCRETE_COVER_BOTTOM_FIELD_NUMBER: _ClassVar[int]
|
|
262
|
+
USER_DEFINED_CONCRETE_COVER_TOP_FIELD_NUMBER: _ClassVar[int]
|
|
263
|
+
USER_DEFINED_CONCRETE_COVER_BOTTOM_FIELD_NUMBER: _ClassVar[int]
|
|
264
|
+
CONCRETE_DURABILITY_TOP_FIELD_NUMBER: _ClassVar[int]
|
|
265
|
+
CONCRETE_DURABILITY_BOTTOM_FIELD_NUMBER: _ClassVar[int]
|
|
266
|
+
REINFORCEMENT_DIRECTION_TOP_FIELD_NUMBER: _ClassVar[int]
|
|
267
|
+
REINFORCEMENT_DIRECTION_BOTTOM_FIELD_NUMBER: _ClassVar[int]
|
|
268
|
+
DEFLECTION_CHECK_SURFACE_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
269
|
+
DEFLECTION_CHECK_DISPLACEMENT_REFERENCE_FIELD_NUMBER: _ClassVar[int]
|
|
270
|
+
DEFLECTION_CHECK_REFERENCE_LENGTH_Z_FIELD_NUMBER: _ClassVar[int]
|
|
271
|
+
DEFLECTION_CHECK_REFERENCE_LENGTH_Z_DEFINITION_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
272
|
+
DEFLECTION_CHECK_REFERENCE_PLANE_POINT_1_FIELD_NUMBER: _ClassVar[int]
|
|
273
|
+
DEFLECTION_CHECK_REFERENCE_PLANE_POINT_1_X_FIELD_NUMBER: _ClassVar[int]
|
|
274
|
+
DEFLECTION_CHECK_REFERENCE_PLANE_POINT_1_Y_FIELD_NUMBER: _ClassVar[int]
|
|
275
|
+
DEFLECTION_CHECK_REFERENCE_PLANE_POINT_1_Z_FIELD_NUMBER: _ClassVar[int]
|
|
276
|
+
DEFLECTION_CHECK_REFERENCE_PLANE_POINT_2_FIELD_NUMBER: _ClassVar[int]
|
|
277
|
+
DEFLECTION_CHECK_REFERENCE_PLANE_POINT_2_X_FIELD_NUMBER: _ClassVar[int]
|
|
278
|
+
DEFLECTION_CHECK_REFERENCE_PLANE_POINT_2_Y_FIELD_NUMBER: _ClassVar[int]
|
|
279
|
+
DEFLECTION_CHECK_REFERENCE_PLANE_POINT_2_Z_FIELD_NUMBER: _ClassVar[int]
|
|
280
|
+
DEFLECTION_CHECK_REFERENCE_PLANE_POINT_3_FIELD_NUMBER: _ClassVar[int]
|
|
281
|
+
DEFLECTION_CHECK_REFERENCE_PLANE_POINT_3_X_FIELD_NUMBER: _ClassVar[int]
|
|
282
|
+
DEFLECTION_CHECK_REFERENCE_PLANE_POINT_3_Y_FIELD_NUMBER: _ClassVar[int]
|
|
283
|
+
DEFLECTION_CHECK_REFERENCE_PLANE_POINT_3_Z_FIELD_NUMBER: _ClassVar[int]
|
|
284
|
+
SURFACE_REINFORCEMENT_TABLE_FIELD_NUMBER: _ClassVar[int]
|
|
285
|
+
SURFACE_CONCRETE_DESIGN_ULS_CONFIGURATION_FIELD_NUMBER: _ClassVar[int]
|
|
286
|
+
SURFACE_CONCRETE_DESIGN_SLS_CONFIGURATION_FIELD_NUMBER: _ClassVar[int]
|
|
287
|
+
SURFACE_CONCRETE_DESIGN_FR_CONFIGURATION_FIELD_NUMBER: _ClassVar[int]
|
|
288
|
+
SURFACE_CONCRETE_DESIGN_SEISMIC_CONFIGURATION_FIELD_NUMBER: _ClassVar[int]
|
|
289
|
+
ROTATED_BOUNDARY_LINE_FIELD_NUMBER: _ClassVar[int]
|
|
290
|
+
ROTATED_ANGLE_OF_ROTATION_FIELD_NUMBER: _ClassVar[int]
|
|
291
|
+
ROTATED_POINT_P_FIELD_NUMBER: _ClassVar[int]
|
|
292
|
+
ROTATED_POINT_P_X_FIELD_NUMBER: _ClassVar[int]
|
|
293
|
+
ROTATED_POINT_P_Y_FIELD_NUMBER: _ClassVar[int]
|
|
294
|
+
ROTATED_POINT_P_Z_FIELD_NUMBER: _ClassVar[int]
|
|
295
|
+
ROTATED_POINT_R_FIELD_NUMBER: _ClassVar[int]
|
|
296
|
+
ROTATED_POINT_R_X_FIELD_NUMBER: _ClassVar[int]
|
|
297
|
+
ROTATED_POINT_R_Y_FIELD_NUMBER: _ClassVar[int]
|
|
298
|
+
ROTATED_POINT_R_Z_FIELD_NUMBER: _ClassVar[int]
|
|
299
|
+
ROTATED_GENERATED_LINES_FIELD_NUMBER: _ClassVar[int]
|
|
300
|
+
STRESS_ANALYSIS_CONFIGURATION_FIELD_NUMBER: _ClassVar[int]
|
|
301
|
+
IS_GENERATED_FIELD_NUMBER: _ClassVar[int]
|
|
302
|
+
GENERATING_OBJECT_INFO_FIELD_NUMBER: _ClassVar[int]
|
|
303
|
+
ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
304
|
+
METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
305
|
+
no: int
|
|
306
|
+
geometry: SurfaceGeometry
|
|
307
|
+
type: SurfaceType
|
|
308
|
+
boundary_lines: _containers.RepeatedScalarFieldContainer[int]
|
|
309
|
+
thickness: int
|
|
310
|
+
material: int
|
|
311
|
+
analytical_area: float
|
|
312
|
+
analytical_volume: float
|
|
313
|
+
analytical_mass: float
|
|
314
|
+
analytical_center_of_gravity: _common_pb2.Vector3d
|
|
315
|
+
analytical_center_of_gravity_x: float
|
|
316
|
+
analytical_center_of_gravity_y: float
|
|
317
|
+
analytical_center_of_gravity_z: float
|
|
318
|
+
area: float
|
|
319
|
+
volume: float
|
|
320
|
+
mass: float
|
|
321
|
+
center_of_gravity: _common_pb2.Vector3d
|
|
322
|
+
center_of_gravity_x: float
|
|
323
|
+
center_of_gravity_y: float
|
|
324
|
+
center_of_gravity_z: float
|
|
325
|
+
position: str
|
|
326
|
+
position_short: str
|
|
327
|
+
grid_enabled: bool
|
|
328
|
+
is_deactivated_for_calculation: bool
|
|
329
|
+
comment: str
|
|
330
|
+
design_properties_via_surface: bool
|
|
331
|
+
design_properties_via_parent_surface_set: bool
|
|
332
|
+
design_properties_parent_surface_set: int
|
|
333
|
+
load_transfer_direction: SurfaceLoadTransferDirection
|
|
334
|
+
is_surface_weight_enabled: bool
|
|
335
|
+
is_advanced_distribution_settings_enabled: bool
|
|
336
|
+
surface_weight: float
|
|
337
|
+
sampling_factor: float
|
|
338
|
+
stripe_width: float
|
|
339
|
+
consider_member_eccentricity: bool
|
|
340
|
+
consider_section_distribution: bool
|
|
341
|
+
load_distribution: SurfaceLoadDistribution
|
|
342
|
+
neglect_equilibrium_of_moments: bool
|
|
343
|
+
excluded_members: _containers.RepeatedScalarFieldContainer[int]
|
|
344
|
+
excluded_parallel_to_members: _containers.RepeatedScalarFieldContainer[int]
|
|
345
|
+
excluded_lines: _containers.RepeatedScalarFieldContainer[int]
|
|
346
|
+
excluded_parallel_to_lines: _containers.RepeatedScalarFieldContainer[int]
|
|
347
|
+
excluded_nodes: _containers.RepeatedScalarFieldContainer[int]
|
|
348
|
+
loaded_members: _containers.RepeatedScalarFieldContainer[int]
|
|
349
|
+
loaded_lines: _containers.RepeatedScalarFieldContainer[int]
|
|
350
|
+
loaded_nodes: _containers.RepeatedScalarFieldContainer[int]
|
|
351
|
+
nurbs_control_point_count_in_direction_u: int
|
|
352
|
+
nurbs_control_point_count_in_direction_v: int
|
|
353
|
+
nurbs_order_in_direction_u: int
|
|
354
|
+
nurbs_order_in_direction_v: int
|
|
355
|
+
nurbs_control_points: ArrayOfSurfaceNurbsControlPointsRows
|
|
356
|
+
quadrangle_corner_nodes: _containers.RepeatedScalarFieldContainer[int]
|
|
357
|
+
quadrangle_corner_node_1: int
|
|
358
|
+
quadrangle_corner_node_2: int
|
|
359
|
+
quadrangle_corner_node_3: int
|
|
360
|
+
quadrangle_corner_node_4: int
|
|
361
|
+
quadrangle_preferable_shape: SurfaceQuadranglePreferableShape
|
|
362
|
+
pipe_radius: float
|
|
363
|
+
pipe_use_radius_end: bool
|
|
364
|
+
pipe_radius_end: float
|
|
365
|
+
pipe_center_line: int
|
|
366
|
+
pipe_generated_lines: _containers.RepeatedScalarFieldContainer[int]
|
|
367
|
+
has_line_hinges: bool
|
|
368
|
+
support: int
|
|
369
|
+
eccentricity: int
|
|
370
|
+
mesh_refinement: int
|
|
371
|
+
meshing_type: SurfaceMeshingType
|
|
372
|
+
input_axes_rotation_specification_type: SurfaceInputAxesRotationSpecificationType
|
|
373
|
+
input_axes_angular_rotation: float
|
|
374
|
+
input_axes_axis: SurfaceInputAxesAxis
|
|
375
|
+
input_axes_lines: _containers.RepeatedScalarFieldContainer[int]
|
|
376
|
+
input_axes_point_1: _common_pb2.Vector3d
|
|
377
|
+
input_axes_point_1_x: float
|
|
378
|
+
input_axes_point_1_y: float
|
|
379
|
+
input_axes_point_1_z: float
|
|
380
|
+
input_axes_point_2: _common_pb2.Vector3d
|
|
381
|
+
input_axes_point_2_x: float
|
|
382
|
+
input_axes_point_2_y: float
|
|
383
|
+
input_axes_point_2_z: float
|
|
384
|
+
input_axes_coordinate_system: int
|
|
385
|
+
result_axes_rotation_specification_type: SurfaceResultAxesRotationSpecificationType
|
|
386
|
+
reversed_normal: bool
|
|
387
|
+
grid_type: SurfaceGridType
|
|
388
|
+
grid_origin: _common_pb2.Vector3d
|
|
389
|
+
grid_origin_x: float
|
|
390
|
+
grid_origin_y: float
|
|
391
|
+
grid_origin_z: float
|
|
392
|
+
grid_adapt_automatically: bool
|
|
393
|
+
grid_point_count_negative_x: int
|
|
394
|
+
grid_point_count_positive_x: int
|
|
395
|
+
grid_point_count_negative_y: int
|
|
396
|
+
grid_point_count_positive_y: int
|
|
397
|
+
grid_numbering_increment: int
|
|
398
|
+
grid_point_count_r: int
|
|
399
|
+
grid_distance_x: float
|
|
400
|
+
grid_distance_y: float
|
|
401
|
+
grid_distance_r: float
|
|
402
|
+
grid_rotation_alpha: float
|
|
403
|
+
grid_rotation_beta: float
|
|
404
|
+
grid_angle_gamma: float
|
|
405
|
+
auto_detection_of_integrated_objects: bool
|
|
406
|
+
integrated_nodes: _containers.RepeatedScalarFieldContainer[int]
|
|
407
|
+
integrated_lines: _containers.RepeatedScalarFieldContainer[int]
|
|
408
|
+
integrated_openings: _containers.RepeatedScalarFieldContainer[int]
|
|
409
|
+
has_integrated_objects: bool
|
|
410
|
+
has_input_axes_rotation: bool
|
|
411
|
+
has_result_axes_rotation: bool
|
|
412
|
+
surface_timber_design_uls_configuration: int
|
|
413
|
+
surface_timber_design_sls_configuration: int
|
|
414
|
+
surface_timber_design_fr_configuration: int
|
|
415
|
+
timber_service_class: int
|
|
416
|
+
timber_moisture_class: int
|
|
417
|
+
timber_service_conditions: int
|
|
418
|
+
surface_reinforcements: _containers.RepeatedScalarFieldContainer[int]
|
|
419
|
+
is_user_defined_concrete_cover_enabled: bool
|
|
420
|
+
concrete_cover_top: float
|
|
421
|
+
concrete_cover_bottom: float
|
|
422
|
+
user_defined_concrete_cover_top: float
|
|
423
|
+
user_defined_concrete_cover_bottom: float
|
|
424
|
+
concrete_durability_top: int
|
|
425
|
+
concrete_durability_bottom: int
|
|
426
|
+
reinforcement_direction_top: int
|
|
427
|
+
reinforcement_direction_bottom: int
|
|
428
|
+
deflection_check_surface_type: SurfaceDeflectionCheckSurfaceType
|
|
429
|
+
deflection_check_displacement_reference: SurfaceDeflectionCheckDisplacementReference
|
|
430
|
+
deflection_check_reference_length_z: float
|
|
431
|
+
deflection_check_reference_length_z_definition_type: SurfaceDeflectionCheckReferenceLengthZDefinitionType
|
|
432
|
+
deflection_check_reference_plane_point_1: _common_pb2.Vector3d
|
|
433
|
+
deflection_check_reference_plane_point_1_x: float
|
|
434
|
+
deflection_check_reference_plane_point_1_y: float
|
|
435
|
+
deflection_check_reference_plane_point_1_z: float
|
|
436
|
+
deflection_check_reference_plane_point_2: _common_pb2.Vector3d
|
|
437
|
+
deflection_check_reference_plane_point_2_x: float
|
|
438
|
+
deflection_check_reference_plane_point_2_y: float
|
|
439
|
+
deflection_check_reference_plane_point_2_z: float
|
|
440
|
+
deflection_check_reference_plane_point_3: _common_pb2.Vector3d
|
|
441
|
+
deflection_check_reference_plane_point_3_x: float
|
|
442
|
+
deflection_check_reference_plane_point_3_y: float
|
|
443
|
+
deflection_check_reference_plane_point_3_z: float
|
|
444
|
+
surface_reinforcement_table: ArrayOfSurfaceSurfaceReinforcementTable
|
|
445
|
+
surface_concrete_design_uls_configuration: int
|
|
446
|
+
surface_concrete_design_sls_configuration: int
|
|
447
|
+
surface_concrete_design_fr_configuration: int
|
|
448
|
+
surface_concrete_design_seismic_configuration: int
|
|
449
|
+
rotated_boundary_line: int
|
|
450
|
+
rotated_angle_of_rotation: float
|
|
451
|
+
rotated_point_p: _common_pb2.Vector3d
|
|
452
|
+
rotated_point_p_x: float
|
|
453
|
+
rotated_point_p_y: float
|
|
454
|
+
rotated_point_p_z: float
|
|
455
|
+
rotated_point_r: _common_pb2.Vector3d
|
|
456
|
+
rotated_point_r_x: float
|
|
457
|
+
rotated_point_r_y: float
|
|
458
|
+
rotated_point_r_z: float
|
|
459
|
+
rotated_generated_lines: _containers.RepeatedScalarFieldContainer[int]
|
|
460
|
+
stress_analysis_configuration: int
|
|
461
|
+
is_generated: bool
|
|
462
|
+
generating_object_info: str
|
|
463
|
+
id_for_export_import: str
|
|
464
|
+
metadata_for_export_import: str
|
|
465
|
+
def __init__(self, no: _Optional[int] = ..., geometry: _Optional[_Union[SurfaceGeometry, str]] = ..., type: _Optional[_Union[SurfaceType, str]] = ..., boundary_lines: _Optional[_Iterable[int]] = ..., thickness: _Optional[int] = ..., material: _Optional[int] = ..., analytical_area: _Optional[float] = ..., analytical_volume: _Optional[float] = ..., analytical_mass: _Optional[float] = ..., analytical_center_of_gravity: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., analytical_center_of_gravity_x: _Optional[float] = ..., analytical_center_of_gravity_y: _Optional[float] = ..., analytical_center_of_gravity_z: _Optional[float] = ..., area: _Optional[float] = ..., volume: _Optional[float] = ..., mass: _Optional[float] = ..., center_of_gravity: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., center_of_gravity_x: _Optional[float] = ..., center_of_gravity_y: _Optional[float] = ..., center_of_gravity_z: _Optional[float] = ..., position: _Optional[str] = ..., position_short: _Optional[str] = ..., grid_enabled: bool = ..., is_deactivated_for_calculation: bool = ..., comment: _Optional[str] = ..., design_properties_via_surface: bool = ..., design_properties_via_parent_surface_set: bool = ..., design_properties_parent_surface_set: _Optional[int] = ..., load_transfer_direction: _Optional[_Union[SurfaceLoadTransferDirection, str]] = ..., is_surface_weight_enabled: bool = ..., is_advanced_distribution_settings_enabled: bool = ..., surface_weight: _Optional[float] = ..., sampling_factor: _Optional[float] = ..., stripe_width: _Optional[float] = ..., consider_member_eccentricity: bool = ..., consider_section_distribution: bool = ..., load_distribution: _Optional[_Union[SurfaceLoadDistribution, str]] = ..., neglect_equilibrium_of_moments: bool = ..., excluded_members: _Optional[_Iterable[int]] = ..., excluded_parallel_to_members: _Optional[_Iterable[int]] = ..., excluded_lines: _Optional[_Iterable[int]] = ..., excluded_parallel_to_lines: _Optional[_Iterable[int]] = ..., excluded_nodes: _Optional[_Iterable[int]] = ..., loaded_members: _Optional[_Iterable[int]] = ..., loaded_lines: _Optional[_Iterable[int]] = ..., loaded_nodes: _Optional[_Iterable[int]] = ..., nurbs_control_point_count_in_direction_u: _Optional[int] = ..., nurbs_control_point_count_in_direction_v: _Optional[int] = ..., nurbs_order_in_direction_u: _Optional[int] = ..., nurbs_order_in_direction_v: _Optional[int] = ..., nurbs_control_points: _Optional[_Union[ArrayOfSurfaceNurbsControlPointsRows, _Mapping]] = ..., quadrangle_corner_nodes: _Optional[_Iterable[int]] = ..., quadrangle_corner_node_1: _Optional[int] = ..., quadrangle_corner_node_2: _Optional[int] = ..., quadrangle_corner_node_3: _Optional[int] = ..., quadrangle_corner_node_4: _Optional[int] = ..., quadrangle_preferable_shape: _Optional[_Union[SurfaceQuadranglePreferableShape, str]] = ..., pipe_radius: _Optional[float] = ..., pipe_use_radius_end: bool = ..., pipe_radius_end: _Optional[float] = ..., pipe_center_line: _Optional[int] = ..., pipe_generated_lines: _Optional[_Iterable[int]] = ..., has_line_hinges: bool = ..., support: _Optional[int] = ..., eccentricity: _Optional[int] = ..., mesh_refinement: _Optional[int] = ..., meshing_type: _Optional[_Union[SurfaceMeshingType, str]] = ..., input_axes_rotation_specification_type: _Optional[_Union[SurfaceInputAxesRotationSpecificationType, str]] = ..., input_axes_angular_rotation: _Optional[float] = ..., input_axes_axis: _Optional[_Union[SurfaceInputAxesAxis, str]] = ..., input_axes_lines: _Optional[_Iterable[int]] = ..., input_axes_point_1: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., input_axes_point_1_x: _Optional[float] = ..., input_axes_point_1_y: _Optional[float] = ..., input_axes_point_1_z: _Optional[float] = ..., input_axes_point_2: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., input_axes_point_2_x: _Optional[float] = ..., input_axes_point_2_y: _Optional[float] = ..., input_axes_point_2_z: _Optional[float] = ..., input_axes_coordinate_system: _Optional[int] = ..., result_axes_rotation_specification_type: _Optional[_Union[SurfaceResultAxesRotationSpecificationType, str]] = ..., reversed_normal: bool = ..., grid_type: _Optional[_Union[SurfaceGridType, str]] = ..., grid_origin: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., grid_origin_x: _Optional[float] = ..., grid_origin_y: _Optional[float] = ..., grid_origin_z: _Optional[float] = ..., grid_adapt_automatically: bool = ..., grid_point_count_negative_x: _Optional[int] = ..., grid_point_count_positive_x: _Optional[int] = ..., grid_point_count_negative_y: _Optional[int] = ..., grid_point_count_positive_y: _Optional[int] = ..., grid_numbering_increment: _Optional[int] = ..., grid_point_count_r: _Optional[int] = ..., grid_distance_x: _Optional[float] = ..., grid_distance_y: _Optional[float] = ..., grid_distance_r: _Optional[float] = ..., grid_rotation_alpha: _Optional[float] = ..., grid_rotation_beta: _Optional[float] = ..., grid_angle_gamma: _Optional[float] = ..., auto_detection_of_integrated_objects: bool = ..., integrated_nodes: _Optional[_Iterable[int]] = ..., integrated_lines: _Optional[_Iterable[int]] = ..., integrated_openings: _Optional[_Iterable[int]] = ..., has_integrated_objects: bool = ..., has_input_axes_rotation: bool = ..., has_result_axes_rotation: bool = ..., surface_timber_design_uls_configuration: _Optional[int] = ..., surface_timber_design_sls_configuration: _Optional[int] = ..., surface_timber_design_fr_configuration: _Optional[int] = ..., timber_service_class: _Optional[int] = ..., timber_moisture_class: _Optional[int] = ..., timber_service_conditions: _Optional[int] = ..., surface_reinforcements: _Optional[_Iterable[int]] = ..., is_user_defined_concrete_cover_enabled: bool = ..., concrete_cover_top: _Optional[float] = ..., concrete_cover_bottom: _Optional[float] = ..., user_defined_concrete_cover_top: _Optional[float] = ..., user_defined_concrete_cover_bottom: _Optional[float] = ..., concrete_durability_top: _Optional[int] = ..., concrete_durability_bottom: _Optional[int] = ..., reinforcement_direction_top: _Optional[int] = ..., reinforcement_direction_bottom: _Optional[int] = ..., deflection_check_surface_type: _Optional[_Union[SurfaceDeflectionCheckSurfaceType, str]] = ..., deflection_check_displacement_reference: _Optional[_Union[SurfaceDeflectionCheckDisplacementReference, str]] = ..., deflection_check_reference_length_z: _Optional[float] = ..., deflection_check_reference_length_z_definition_type: _Optional[_Union[SurfaceDeflectionCheckReferenceLengthZDefinitionType, str]] = ..., deflection_check_reference_plane_point_1: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., deflection_check_reference_plane_point_1_x: _Optional[float] = ..., deflection_check_reference_plane_point_1_y: _Optional[float] = ..., deflection_check_reference_plane_point_1_z: _Optional[float] = ..., deflection_check_reference_plane_point_2: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., deflection_check_reference_plane_point_2_x: _Optional[float] = ..., deflection_check_reference_plane_point_2_y: _Optional[float] = ..., deflection_check_reference_plane_point_2_z: _Optional[float] = ..., deflection_check_reference_plane_point_3: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., deflection_check_reference_plane_point_3_x: _Optional[float] = ..., deflection_check_reference_plane_point_3_y: _Optional[float] = ..., deflection_check_reference_plane_point_3_z: _Optional[float] = ..., surface_reinforcement_table: _Optional[_Union[ArrayOfSurfaceSurfaceReinforcementTable, _Mapping]] = ..., surface_concrete_design_uls_configuration: _Optional[int] = ..., surface_concrete_design_sls_configuration: _Optional[int] = ..., surface_concrete_design_fr_configuration: _Optional[int] = ..., surface_concrete_design_seismic_configuration: _Optional[int] = ..., rotated_boundary_line: _Optional[int] = ..., rotated_angle_of_rotation: _Optional[float] = ..., rotated_point_p: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., rotated_point_p_x: _Optional[float] = ..., rotated_point_p_y: _Optional[float] = ..., rotated_point_p_z: _Optional[float] = ..., rotated_point_r: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., rotated_point_r_x: _Optional[float] = ..., rotated_point_r_y: _Optional[float] = ..., rotated_point_r_z: _Optional[float] = ..., rotated_generated_lines: _Optional[_Iterable[int]] = ..., stress_analysis_configuration: _Optional[int] = ..., is_generated: bool = ..., generating_object_info: _Optional[str] = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
|
|
466
|
+
|
|
467
|
+
class ArrayOfSurfaceNurbsControlPointsRows(_message.Message):
|
|
468
|
+
__slots__ = ()
|
|
469
|
+
def __init__(self) -> None: ...
|
|
470
|
+
|
|
471
|
+
class ArrayOfSurfaceSurfaceReinforcementTable(_message.Message):
|
|
472
|
+
__slots__ = ()
|
|
473
|
+
def __init__(self) -> None: ...
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# NO CHECKED-IN PROTOBUF GENCODE
|
|
4
|
+
# source: dlubal/api/rfem/structure_core/surface_set.proto
|
|
5
|
+
# Protobuf Python Version: 5.28.1
|
|
6
|
+
"""Generated protocol buffer code."""
|
|
7
|
+
from google.protobuf import descriptor as _descriptor
|
|
8
|
+
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
9
|
+
from google.protobuf import runtime_version as _runtime_version
|
|
10
|
+
from google.protobuf import symbol_database as _symbol_database
|
|
11
|
+
from google.protobuf.internal import builder as _builder
|
|
12
|
+
_runtime_version.ValidateProtobufRuntimeVersion(
|
|
13
|
+
_runtime_version.Domain.PUBLIC,
|
|
14
|
+
5,
|
|
15
|
+
28,
|
|
16
|
+
1,
|
|
17
|
+
'',
|
|
18
|
+
'dlubal/api/rfem/structure_core/surface_set.proto'
|
|
19
|
+
)
|
|
20
|
+
# @@protoc_insertion_point(imports)
|
|
21
|
+
|
|
22
|
+
_sym_db = _symbol_database.Default()
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
from dlubal.api.common import common_pb2 as dlubal_dot_api_dot_common_dot_common__pb2
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n0dlubal/api/rfem/structure_core/surface_set.proto\x12\x1e\x64lubal.api.rfem.structure_core\x1a\x1e\x64lubal/api/common/common.proto\"\xc6%\n\nSurfaceSet\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\x12H\n\x08set_type\x18\x04 \x01(\x0e\x32\x31.dlubal.api.rfem.structure_core.SurfaceSetSetTypeH\x02\x88\x01\x01\x12\x10\n\x08surfaces\x18\x05 \x03(\x05\x12\x19\n\x0csurface_area\x18\x06 \x01(\x01H\x03\x88\x01\x01\x12\x13\n\x06volume\x18\x07 \x01(\x01H\x04\x88\x01\x01\x12\x11\n\x04mass\x18\x08 \x01(\x01H\x05\x88\x01\x01\x12;\n\x11\x63\x65nter_of_gravity\x18\t \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x06\x88\x01\x01\x12 \n\x13\x63\x65nter_of_gravity_x\x18\n \x01(\x01H\x07\x88\x01\x01\x12 \n\x13\x63\x65nter_of_gravity_y\x18\x0b \x01(\x01H\x08\x88\x01\x01\x12 \n\x13\x63\x65nter_of_gravity_z\x18\x0c \x01(\x01H\t\x88\x01\x01\x12\x15\n\x08position\x18\r \x01(\tH\n\x88\x01\x01\x12\x1b\n\x0eposition_short\x18\x0e \x01(\tH\x0b\x88\x01\x01\x12*\n\x1dstress_analysis_configuration\x18\x0f \x01(\x05H\x0c\x88\x01\x01\x12(\n\x1b\x64\x65sign_properties_activated\x18\x10 \x01(\x08H\r\x88\x01\x01\x12!\n\x14timber_service_class\x18\x11 \x01(\x05H\x0e\x88\x01\x01\x12\"\n\x15timber_moisture_class\x18\x12 \x01(\x05H\x0f\x88\x01\x01\x12&\n\x19timber_service_conditions\x18\x13 \x01(\x05H\x10\x88\x01\x01\x12\x14\n\x07\x63omment\x18\x14 \x01(\tH\x11\x88\x01\x01\x12\x19\n\x0cis_generated\x18\x15 \x01(\x08H\x12\x88\x01\x01\x12#\n\x16generating_object_info\x18\x16 \x01(\tH\x13\x88\x01\x01\x12\x33\n&is_user_defined_concrete_cover_enabled\x18\x17 \x01(\x08H\x14\x88\x01\x01\x12\x1f\n\x12\x63oncrete_cover_top\x18\x18 \x01(\x01H\x15\x88\x01\x01\x12\"\n\x15\x63oncrete_cover_bottom\x18\x19 \x01(\x01H\x16\x88\x01\x01\x12,\n\x1fuser_defined_concrete_cover_top\x18\x1a \x01(\x01H\x17\x88\x01\x01\x12/\n\"user_defined_concrete_cover_bottom\x18\x1b \x01(\x01H\x18\x88\x01\x01\x12$\n\x17\x63oncrete_durability_top\x18\x1c \x01(\x05H\x19\x88\x01\x01\x12\'\n\x1a\x63oncrete_durability_bottom\x18\x1d \x01(\x05H\x1a\x88\x01\x01\x12(\n\x1breinforcement_direction_top\x18\x1e \x01(\x05H\x1b\x88\x01\x01\x12+\n\x1ereinforcement_direction_bottom\x18\x1f \x01(\x05H\x1c\x88\x01\x01\x12\x1e\n\x16surface_reinforcements\x18 \x03(\x05\x12t\n\x1bsurface_reinforcement_table\x18! \x01(\x0b\x32J.dlubal.api.rfem.structure_core.ArrayOfSurfaceSetSurfaceReinforcementTableH\x1d\x88\x01\x01\x12\x36\n)surface_concrete_design_uls_configuration\x18\" \x01(\x05H\x1e\x88\x01\x01\x12\x36\n)surface_concrete_design_sls_configuration\x18# \x01(\x05H\x1f\x88\x01\x01\x12\x35\n(surface_concrete_design_fr_configuration\x18$ \x01(\x05H \x88\x01\x01\x12:\n-surface_concrete_design_seismic_configuration\x18% \x01(\x05H!\x88\x01\x01\x12p\n\x1d\x64\x65\x66lection_check_surface_type\x18& \x01(\x0e\x32\x44.dlubal.api.rfem.structure_core.SurfaceSetDeflectionCheckSurfaceTypeH\"\x88\x01\x01\x12\x84\x01\n\'deflection_check_displacement_reference\x18\' \x01(\x0e\x32N.dlubal.api.rfem.structure_core.SurfaceSetDeflectionCheckDisplacementReferenceH#\x88\x01\x01\x12\x30\n#deflection_check_reference_length_z\x18( \x01(\x01H$\x88\x01\x01\x12\x99\x01\n3deflection_check_reference_length_z_definition_type\x18) \x01(\x0e\x32W.dlubal.api.rfem.structure_core.SurfaceSetDeflectionCheckReferenceLengthZDefinitionTypeH%\x88\x01\x01\x12R\n(deflection_check_reference_plane_point_1\x18* \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH&\x88\x01\x01\x12\x37\n*deflection_check_reference_plane_point_1_x\x18+ \x01(\x01H\'\x88\x01\x01\x12\x37\n*deflection_check_reference_plane_point_1_y\x18, \x01(\x01H(\x88\x01\x01\x12\x37\n*deflection_check_reference_plane_point_1_z\x18- \x01(\x01H)\x88\x01\x01\x12R\n(deflection_check_reference_plane_point_2\x18. \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH*\x88\x01\x01\x12\x37\n*deflection_check_reference_plane_point_2_x\x18/ \x01(\x01H+\x88\x01\x01\x12\x37\n*deflection_check_reference_plane_point_2_y\x18\x30 \x01(\x01H,\x88\x01\x01\x12\x37\n*deflection_check_reference_plane_point_2_z\x18\x31 \x01(\x01H-\x88\x01\x01\x12R\n(deflection_check_reference_plane_point_3\x18\x32 \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH.\x88\x01\x01\x12\x37\n*deflection_check_reference_plane_point_3_x\x18\x33 \x01(\x01H/\x88\x01\x01\x12\x37\n*deflection_check_reference_plane_point_3_y\x18\x34 \x01(\x01H0\x88\x01\x01\x12\x37\n*deflection_check_reference_plane_point_3_z\x18\x35 \x01(\x01H1\x88\x01\x01\x12\x34\n\'surface_timber_design_uls_configuration\x18\x36 \x01(\x05H2\x88\x01\x01\x12\x34\n\'surface_timber_design_sls_configuration\x18\x37 \x01(\x05H3\x88\x01\x01\x12\x33\n&surface_timber_design_fr_configuration\x18\x38 \x01(\x05H4\x88\x01\x01\x12!\n\x14id_for_export_import\x18\x39 \x01(\tH5\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18: \x01(\tH6\x88\x01\x01\x42\x1c\n\x1a_user_defined_name_enabledB\x07\n\x05_nameB\x0b\n\t_set_typeB\x0f\n\r_surface_areaB\t\n\x07_volumeB\x07\n\x05_massB\x14\n\x12_center_of_gravityB\x16\n\x14_center_of_gravity_xB\x16\n\x14_center_of_gravity_yB\x16\n\x14_center_of_gravity_zB\x0b\n\t_positionB\x11\n\x0f_position_shortB \n\x1e_stress_analysis_configurationB\x1e\n\x1c_design_properties_activatedB\x17\n\x15_timber_service_classB\x18\n\x16_timber_moisture_classB\x1c\n\x1a_timber_service_conditionsB\n\n\x08_commentB\x0f\n\r_is_generatedB\x19\n\x17_generating_object_infoB)\n\'_is_user_defined_concrete_cover_enabledB\x15\n\x13_concrete_cover_topB\x18\n\x16_concrete_cover_bottomB\"\n _user_defined_concrete_cover_topB%\n#_user_defined_concrete_cover_bottomB\x1a\n\x18_concrete_durability_topB\x1d\n\x1b_concrete_durability_bottomB\x1e\n\x1c_reinforcement_direction_topB!\n\x1f_reinforcement_direction_bottomB\x1e\n\x1c_surface_reinforcement_tableB,\n*_surface_concrete_design_uls_configurationB,\n*_surface_concrete_design_sls_configurationB+\n)_surface_concrete_design_fr_configurationB0\n._surface_concrete_design_seismic_configurationB \n\x1e_deflection_check_surface_typeB*\n(_deflection_check_displacement_referenceB&\n$_deflection_check_reference_length_zB6\n4_deflection_check_reference_length_z_definition_typeB+\n)_deflection_check_reference_plane_point_1B-\n+_deflection_check_reference_plane_point_1_xB-\n+_deflection_check_reference_plane_point_1_yB-\n+_deflection_check_reference_plane_point_1_zB+\n)_deflection_check_reference_plane_point_2B-\n+_deflection_check_reference_plane_point_2_xB-\n+_deflection_check_reference_plane_point_2_yB-\n+_deflection_check_reference_plane_point_2_zB+\n)_deflection_check_reference_plane_point_3B-\n+_deflection_check_reference_plane_point_3_xB-\n+_deflection_check_reference_plane_point_3_yB-\n+_deflection_check_reference_plane_point_3_zB*\n(_surface_timber_design_uls_configurationB*\n(_surface_timber_design_sls_configurationB)\n\'_surface_timber_design_fr_configurationB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_import\",\n*ArrayOfSurfaceSetSurfaceReinforcementTable*X\n\x11SurfaceSetSetType\x12#\n\x1fSURFACE_SET_SET_TYPE_CONTINUOUS\x10\x00\x12\x1e\n\x1aSURFACE_SET_SET_TYPE_GROUP\x10\x01*\xa0\x01\n$SurfaceSetDeflectionCheckSurfaceType\x12>\n:SURFACE_SET_DEFLECTION_CHECK_SURFACE_TYPE_DOUBLE_SUPPORTED\x10\x00\x12\x38\n4SURFACE_SET_DEFLECTION_CHECK_SURFACE_TYPE_CANTILEVER\x10\x01*\xa4\x02\n.SurfaceSetDeflectionCheckDisplacementReference\x12]\nYSURFACE_SET_DEFLECTION_CHECK_DISPLACEMENT_REFERENCE_DEFORMED_USER_DEFINED_REFERENCE_PLANE\x10\x00\x12H\nDSURFACE_SET_DEFLECTION_CHECK_DISPLACEMENT_REFERENCE_PARALLEL_SURFACE\x10\x01\x12I\nESURFACE_SET_DEFLECTION_CHECK_DISPLACEMENT_REFERENCE_UNDEFORMED_SYSTEM\x10\x02*\xc3\x02\n7SurfaceSetDeflectionCheckReferenceLengthZDefinitionType\x12L\nHSURFACE_SET_DEFLECTION_CHECK_REFERENCE_LENGTH_Z_DEFINITION_TYPE_MANUALLY\x10\x00\x12\\\nXSURFACE_SET_DEFLECTION_CHECK_REFERENCE_LENGTH_Z_DEFINITION_TYPE_BY_MAXIMUM_BOUNDARY_LINE\x10\x01\x12\\\nXSURFACE_SET_DEFLECTION_CHECK_REFERENCE_LENGTH_Z_DEFINITION_TYPE_BY_MINIMUM_BOUNDARY_LINE\x10\x02\x62\x06proto3')
|
|
29
|
+
|
|
30
|
+
_globals = globals()
|
|
31
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
32
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.structure_core.surface_set_pb2', _globals)
|
|
33
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
34
|
+
DESCRIPTOR._loaded_options = None
|
|
35
|
+
_globals['_SURFACESETSETTYPE']._serialized_start=4971
|
|
36
|
+
_globals['_SURFACESETSETTYPE']._serialized_end=5059
|
|
37
|
+
_globals['_SURFACESETDEFLECTIONCHECKSURFACETYPE']._serialized_start=5062
|
|
38
|
+
_globals['_SURFACESETDEFLECTIONCHECKSURFACETYPE']._serialized_end=5222
|
|
39
|
+
_globals['_SURFACESETDEFLECTIONCHECKDISPLACEMENTREFERENCE']._serialized_start=5225
|
|
40
|
+
_globals['_SURFACESETDEFLECTIONCHECKDISPLACEMENTREFERENCE']._serialized_end=5517
|
|
41
|
+
_globals['_SURFACESETDEFLECTIONCHECKREFERENCELENGTHZDEFINITIONTYPE']._serialized_start=5520
|
|
42
|
+
_globals['_SURFACESETDEFLECTIONCHECKREFERENCELENGTHZDEFINITIONTYPE']._serialized_end=5843
|
|
43
|
+
_globals['_SURFACESET']._serialized_start=117
|
|
44
|
+
_globals['_SURFACESET']._serialized_end=4923
|
|
45
|
+
_globals['_ARRAYOFSURFACESETSURFACEREINFORCEMENTTABLE']._serialized_start=4925
|
|
46
|
+
_globals['_ARRAYOFSURFACESETSURFACEREINFORCEMENTTABLE']._serialized_end=4969
|
|
47
|
+
# @@protoc_insertion_point(module_scope)
|