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.

Files changed (342) hide show
  1. dlubal/__init__.py +0 -0
  2. dlubal/api/__init__.py +0 -0
  3. dlubal/api/common/__init__.py +3 -0
  4. dlubal/api/common/common_pb2.py +42 -0
  5. dlubal/api/common/common_pb2.pyi +41 -0
  6. dlubal/api/common/connection.py +251 -0
  7. dlubal/api/common/exceptions.py +12 -0
  8. dlubal/api/common/model_id_pb2.py +38 -0
  9. dlubal/api/common/model_id_pb2.pyi +17 -0
  10. dlubal/api/common/table.py +35 -0
  11. dlubal/api/common/table_data_pb2.py +39 -0
  12. dlubal/api/common/table_data_pb2.pyi +21 -0
  13. dlubal/api/rfem/__init__.py +32 -0
  14. dlubal/api/rfem/aluminum_design_objects/__init__.py +2 -0
  15. dlubal/api/rfem/aluminum_design_objects/aluminum_design_sls_configuration_pb2.py +36 -0
  16. dlubal/api/rfem/aluminum_design_objects/aluminum_design_sls_configuration_pb2.pyi +30 -0
  17. dlubal/api/rfem/aluminum_design_objects/aluminum_design_uls_configuration_pb2.py +36 -0
  18. dlubal/api/rfem/aluminum_design_objects/aluminum_design_uls_configuration_pb2.pyi +30 -0
  19. dlubal/api/rfem/application.py +290 -0
  20. dlubal/api/rfem/application_pb2.py +67 -0
  21. dlubal/api/rfem/application_pb2.pyi +135 -0
  22. dlubal/api/rfem/application_pb2_grpc.py +973 -0
  23. dlubal/api/rfem/base_data/__init__.py +1 -0
  24. dlubal/api/rfem/base_data/terrain_pb2.py +40 -0
  25. dlubal/api/rfem/base_data/terrain_pb2.pyi +53 -0
  26. dlubal/api/rfem/building_model/__init__.py +4 -0
  27. dlubal/api/rfem/building_model/building_story_pb2.py +54 -0
  28. dlubal/api/rfem/building_model/building_story_pb2.pyi +151 -0
  29. dlubal/api/rfem/building_model/deep_beam_pb2.py +41 -0
  30. dlubal/api/rfem/building_model/deep_beam_pb2.pyi +73 -0
  31. dlubal/api/rfem/building_model/floor_set_pb2.py +39 -0
  32. dlubal/api/rfem/building_model/floor_set_pb2.pyi +59 -0
  33. dlubal/api/rfem/building_model/shear_wall_pb2.py +41 -0
  34. dlubal/api/rfem/building_model/shear_wall_pb2.pyi +73 -0
  35. dlubal/api/rfem/calculation_diagrams/__init__.py +1 -0
  36. dlubal/api/rfem/calculation_diagrams/calculation_diagram_pb2.py +50 -0
  37. dlubal/api/rfem/calculation_diagrams/calculation_diagram_pb2.pyi +1694 -0
  38. dlubal/api/rfem/concrete_design_objects/__init__.py +2 -0
  39. dlubal/api/rfem/concrete_design_objects/concrete_design_sls_configuration_pb2.py +36 -0
  40. dlubal/api/rfem/concrete_design_objects/concrete_design_sls_configuration_pb2.pyi +46 -0
  41. dlubal/api/rfem/concrete_design_objects/concrete_design_uls_configuration_pb2.py +36 -0
  42. dlubal/api/rfem/concrete_design_objects/concrete_design_uls_configuration_pb2.pyi +46 -0
  43. dlubal/api/rfem/construction_stages/__init__.py +1 -0
  44. dlubal/api/rfem/construction_stages/construction_stage_pb2.py +46 -0
  45. dlubal/api/rfem/construction_stages/construction_stage_pb2.pyi +176 -0
  46. dlubal/api/rfem/dynamic_loads/__init__.py +2 -0
  47. dlubal/api/rfem/dynamic_loads/accelerogram_pb2.py +40 -0
  48. dlubal/api/rfem/dynamic_loads/accelerogram_pb2.pyi +51 -0
  49. dlubal/api/rfem/dynamic_loads/response_spectrum_pb2.py +42 -0
  50. dlubal/api/rfem/dynamic_loads/response_spectrum_pb2.pyi +72 -0
  51. dlubal/api/rfem/geotechnical_analysis/__init__.py +2 -0
  52. dlubal/api/rfem/geotechnical_analysis/borehole_pb2.py +41 -0
  53. dlubal/api/rfem/geotechnical_analysis/borehole_pb2.pyi +54 -0
  54. dlubal/api/rfem/geotechnical_analysis/soil_massif_pb2.py +47 -0
  55. dlubal/api/rfem/geotechnical_analysis/soil_massif_pb2.pyi +119 -0
  56. dlubal/api/rfem/global_parameters/__init__.py +1 -0
  57. dlubal/api/rfem/global_parameters/global_parameter_pb2.py +40 -0
  58. dlubal/api/rfem/global_parameters/global_parameter_pb2.pyi +284 -0
  59. dlubal/api/rfem/guide_objects/__init__.py +10 -0
  60. dlubal/api/rfem/guide_objects/building_grid_pb2.py +53 -0
  61. dlubal/api/rfem/guide_objects/building_grid_pb2.pyi +219 -0
  62. dlubal/api/rfem/guide_objects/clipping_box_pb2.py +37 -0
  63. dlubal/api/rfem/guide_objects/clipping_box_pb2.pyi +40 -0
  64. dlubal/api/rfem/guide_objects/clipping_plane_pb2.py +45 -0
  65. dlubal/api/rfem/guide_objects/clipping_plane_pb2.pyi +116 -0
  66. dlubal/api/rfem/guide_objects/coordinate_system_pb2.py +41 -0
  67. dlubal/api/rfem/guide_objects/coordinate_system_pb2.pyi +93 -0
  68. dlubal/api/rfem/guide_objects/dimension_pb2.py +61 -0
  69. dlubal/api/rfem/guide_objects/dimension_pb2.pyi +245 -0
  70. dlubal/api/rfem/guide_objects/dxf_file_model_object_pb2.py +41 -0
  71. dlubal/api/rfem/guide_objects/dxf_file_model_object_pb2.pyi +119 -0
  72. dlubal/api/rfem/guide_objects/dxf_model_object_pb2.py +36 -0
  73. dlubal/api/rfem/guide_objects/dxf_model_object_pb2.pyi +15 -0
  74. dlubal/api/rfem/guide_objects/note_pb2.py +45 -0
  75. dlubal/api/rfem/guide_objects/note_pb2.pyi +129 -0
  76. dlubal/api/rfem/guide_objects/object_snap_pb2.py +38 -0
  77. dlubal/api/rfem/guide_objects/object_snap_pb2.pyi +85 -0
  78. dlubal/api/rfem/guide_objects/visual_object_pb2.py +43 -0
  79. dlubal/api/rfem/guide_objects/visual_object_pb2.pyi +129 -0
  80. dlubal/api/rfem/imperfections/__init__.py +5 -0
  81. dlubal/api/rfem/imperfections/imperfection_case_pb2.py +50 -0
  82. dlubal/api/rfem/imperfections/imperfection_case_pb2.pyi +158 -0
  83. dlubal/api/rfem/imperfections/member_imperfection_pb2.py +48 -0
  84. dlubal/api/rfem/imperfections/member_imperfection_pb2.pyi +205 -0
  85. dlubal/api/rfem/imperfections/member_set_imperfection_pb2.py +48 -0
  86. dlubal/api/rfem/imperfections/member_set_imperfection_pb2.pyi +203 -0
  87. dlubal/api/rfem/imperfections/surface_imperfection_pb2.py +40 -0
  88. dlubal/api/rfem/imperfections/surface_imperfection_pb2.pyi +55 -0
  89. dlubal/api/rfem/imperfections/surface_set_imperfection_pb2.py +40 -0
  90. dlubal/api/rfem/imperfections/surface_set_imperfection_pb2.pyi +55 -0
  91. dlubal/api/rfem/load_wizards/__init__.py +2 -0
  92. dlubal/api/rfem/load_wizards/wind_profile_pb2.py +44 -0
  93. dlubal/api/rfem/load_wizards/wind_profile_pb2.pyi +727 -0
  94. dlubal/api/rfem/load_wizards/wind_simulation_pb2.py +46 -0
  95. dlubal/api/rfem/load_wizards/wind_simulation_pb2.pyi +84 -0
  96. dlubal/api/rfem/loading/__init__.py +15 -0
  97. dlubal/api/rfem/loading/action_combination_pb2.py +40 -0
  98. dlubal/api/rfem/loading/action_combination_pb2.pyi +58 -0
  99. dlubal/api/rfem/loading/action_pb2.py +42 -0
  100. dlubal/api/rfem/loading/action_pb2.pyi +80 -0
  101. dlubal/api/rfem/loading/combination_wizard_pb2.py +40 -0
  102. dlubal/api/rfem/loading/combination_wizard_pb2.pyi +65 -0
  103. dlubal/api/rfem/loading/design_situation_pb2.py +38 -0
  104. dlubal/api/rfem/loading/design_situation_pb2.pyi +41 -0
  105. dlubal/api/rfem/loading/load_case_pb2.py +77 -0
  106. dlubal/api/rfem/loading/load_case_pb2.pyi +489 -0
  107. dlubal/api/rfem/loading/load_combination_pb2.py +48 -0
  108. dlubal/api/rfem/loading/load_combination_pb2.pyi +150 -0
  109. dlubal/api/rfem/loading/modal_analysis_settings_pb2.py +48 -0
  110. dlubal/api/rfem/loading/modal_analysis_settings_pb2.pyi +115 -0
  111. dlubal/api/rfem/loading/optimization_settings_pb2.py +42 -0
  112. dlubal/api/rfem/loading/optimization_settings_pb2.pyi +72 -0
  113. dlubal/api/rfem/loading/pushover_analysis_settings_pb2.py +38 -0
  114. dlubal/api/rfem/loading/pushover_analysis_settings_pb2.pyi +51 -0
  115. dlubal/api/rfem/loading/relationship_between_load_cases_pb2.py +40 -0
  116. dlubal/api/rfem/loading/relationship_between_load_cases_pb2.pyi +36 -0
  117. dlubal/api/rfem/loading/result_combination_pb2.py +42 -0
  118. dlubal/api/rfem/loading/result_combination_pb2.pyi +74 -0
  119. dlubal/api/rfem/loading/spectral_analysis_settings_pb2.py +46 -0
  120. dlubal/api/rfem/loading/spectral_analysis_settings_pb2.pyi +91 -0
  121. dlubal/api/rfem/loading/stability_analysis_settings_pb2.py +44 -0
  122. dlubal/api/rfem/loading/stability_analysis_settings_pb2.pyi +118 -0
  123. dlubal/api/rfem/loading/static_analysis_settings_pb2.py +46 -0
  124. dlubal/api/rfem/loading/static_analysis_settings_pb2.pyi +159 -0
  125. dlubal/api/rfem/loading/wind_simulation_analysis_settings_pb2.py +48 -0
  126. dlubal/api/rfem/loading/wind_simulation_analysis_settings_pb2.pyi +150 -0
  127. dlubal/api/rfem/loads/__init__.py +17 -0
  128. dlubal/api/rfem/loads/free_circular_load_pb2.py +42 -0
  129. dlubal/api/rfem/loads/free_circular_load_pb2.pyi +100 -0
  130. dlubal/api/rfem/loads/free_concentrated_load_pb2.py +42 -0
  131. dlubal/api/rfem/loads/free_concentrated_load_pb2.pyi +84 -0
  132. dlubal/api/rfem/loads/free_line_load_pb2.py +42 -0
  133. dlubal/api/rfem/loads/free_line_load_pb2.pyi +104 -0
  134. dlubal/api/rfem/loads/free_polygon_load_pb2.py +44 -0
  135. dlubal/api/rfem/loads/free_polygon_load_pb2.pyi +112 -0
  136. dlubal/api/rfem/loads/free_rectangular_load_pb2.py +49 -0
  137. dlubal/api/rfem/loads/free_rectangular_load_pb2.pyi +166 -0
  138. dlubal/api/rfem/loads/imposed_line_deformation_pb2.py +37 -0
  139. dlubal/api/rfem/loads/imposed_line_deformation_pb2.pyi +47 -0
  140. dlubal/api/rfem/loads/imposed_nodal_deformation_pb2.py +37 -0
  141. dlubal/api/rfem/loads/imposed_nodal_deformation_pb2.pyi +43 -0
  142. dlubal/api/rfem/loads/line_load_pb2.py +46 -0
  143. dlubal/api/rfem/loads/line_load_pb2.pyi +155 -0
  144. dlubal/api/rfem/loads/line_set_load_pb2.py +46 -0
  145. dlubal/api/rfem/loads/line_set_load_pb2.pyi +155 -0
  146. dlubal/api/rfem/loads/member_load_pb2.py +67 -0
  147. dlubal/api/rfem/loads/member_load_pb2.pyi +390 -0
  148. dlubal/api/rfem/loads/member_set_load_pb2.py +67 -0
  149. dlubal/api/rfem/loads/member_set_load_pb2.pyi +388 -0
  150. dlubal/api/rfem/loads/nodal_load_pb2.py +47 -0
  151. dlubal/api/rfem/loads/nodal_load_pb2.pyi +207 -0
  152. dlubal/api/rfem/loads/opening_load_pb2.py +42 -0
  153. dlubal/api/rfem/loads/opening_load_pb2.pyi +84 -0
  154. dlubal/api/rfem/loads/solid_load_pb2.py +53 -0
  155. dlubal/api/rfem/loads/solid_load_pb2.pyi +180 -0
  156. dlubal/api/rfem/loads/solid_set_load_pb2.py +53 -0
  157. dlubal/api/rfem/loads/solid_set_load_pb2.pyi +180 -0
  158. dlubal/api/rfem/loads/surface_load_pb2.py +57 -0
  159. dlubal/api/rfem/loads/surface_load_pb2.pyi +285 -0
  160. dlubal/api/rfem/loads/surface_set_load_pb2.py +57 -0
  161. dlubal/api/rfem/loads/surface_set_load_pb2.pyi +285 -0
  162. dlubal/api/rfem/packing.py +45 -0
  163. dlubal/api/rfem/result_objects/__init__.py +1 -0
  164. dlubal/api/rfem/result_objects/result_section_pb2.py +43 -0
  165. dlubal/api/rfem/result_objects/result_section_pb2.pyi +119 -0
  166. dlubal/api/rfem/results/__init__.py +2 -0
  167. dlubal/api/rfem/results/results_id_pb2.py +36 -0
  168. dlubal/api/rfem/results/results_id_pb2.pyi +14 -0
  169. dlubal/api/rfem/results/results_query_pb2.py +40 -0
  170. dlubal/api/rfem/results/results_query_pb2.pyi +26 -0
  171. dlubal/api/rfem/steel_design_objects/__init__.py +4 -0
  172. dlubal/api/rfem/steel_design_objects/steel_design_fr_configuration_pb2.py +36 -0
  173. dlubal/api/rfem/steel_design_objects/steel_design_fr_configuration_pb2.pyi +30 -0
  174. dlubal/api/rfem/steel_design_objects/steel_design_seismic_configuration_pb2.py +36 -0
  175. dlubal/api/rfem/steel_design_objects/steel_design_seismic_configuration_pb2.pyi +30 -0
  176. dlubal/api/rfem/steel_design_objects/steel_design_sls_configuration_pb2.py +36 -0
  177. dlubal/api/rfem/steel_design_objects/steel_design_sls_configuration_pb2.pyi +30 -0
  178. dlubal/api/rfem/steel_design_objects/steel_design_uls_configuration_pb2.py +36 -0
  179. dlubal/api/rfem/steel_design_objects/steel_design_uls_configuration_pb2.pyi +30 -0
  180. dlubal/api/rfem/structure_advanced/__init__.py +9 -0
  181. dlubal/api/rfem/structure_advanced/block_pb2.py +51 -0
  182. dlubal/api/rfem/structure_advanced/block_pb2.pyi +180 -0
  183. dlubal/api/rfem/structure_advanced/intersection_pb2.py +36 -0
  184. dlubal/api/rfem/structure_advanced/intersection_pb2.pyi +26 -0
  185. dlubal/api/rfem/structure_advanced/line_release_pb2.py +40 -0
  186. dlubal/api/rfem/structure_advanced/line_release_pb2.pyi +56 -0
  187. dlubal/api/rfem/structure_advanced/nodal_release_pb2.py +38 -0
  188. dlubal/api/rfem/structure_advanced/nodal_release_pb2.pyi +46 -0
  189. dlubal/api/rfem/structure_advanced/rigid_link_pb2.py +41 -0
  190. dlubal/api/rfem/structure_advanced/rigid_link_pb2.pyi +104 -0
  191. dlubal/api/rfem/structure_advanced/structure_modification_pb2.py +56 -0
  192. dlubal/api/rfem/structure_advanced/structure_modification_pb2.pyi +161 -0
  193. dlubal/api/rfem/structure_advanced/surface_release_pb2.py +38 -0
  194. dlubal/api/rfem/structure_advanced/surface_release_pb2.pyi +50 -0
  195. dlubal/api/rfem/structure_advanced/surface_results_adjustment_pb2.py +55 -0
  196. dlubal/api/rfem/structure_advanced/surface_results_adjustment_pb2.pyi +140 -0
  197. dlubal/api/rfem/structure_advanced/surfaces_contact_pb2.py +36 -0
  198. dlubal/api/rfem/structure_advanced/surfaces_contact_pb2.pyi +24 -0
  199. dlubal/api/rfem/structure_core/__init__.py +15 -0
  200. dlubal/api/rfem/structure_core/line_pb2.py +53 -0
  201. dlubal/api/rfem/structure_core/line_pb2.pyi +298 -0
  202. dlubal/api/rfem/structure_core/line_set_pb2.py +39 -0
  203. dlubal/api/rfem/structure_core/line_set_pb2.pyi +53 -0
  204. dlubal/api/rfem/structure_core/material_pb2.py +100 -0
  205. dlubal/api/rfem/structure_core/material_pb2.pyi +955 -0
  206. dlubal/api/rfem/structure_core/member_pb2.py +79 -0
  207. dlubal/api/rfem/structure_core/member_pb2.pyi +566 -0
  208. dlubal/api/rfem/structure_core/member_representative_pb2.py +83 -0
  209. dlubal/api/rfem/structure_core/member_representative_pb2.pyi +590 -0
  210. dlubal/api/rfem/structure_core/member_set_pb2.py +53 -0
  211. dlubal/api/rfem/structure_core/member_set_pb2.pyi +225 -0
  212. dlubal/api/rfem/structure_core/member_set_representative_pb2.py +99 -0
  213. dlubal/api/rfem/structure_core/member_set_representative_pb2.pyi +811 -0
  214. dlubal/api/rfem/structure_core/node_pb2.py +43 -0
  215. dlubal/api/rfem/structure_core/node_pb2.pyi +142 -0
  216. dlubal/api/rfem/structure_core/opening_pb2.py +37 -0
  217. dlubal/api/rfem/structure_core/opening_pb2.pyi +41 -0
  218. dlubal/api/rfem/structure_core/section_pb2.py +66 -0
  219. dlubal/api/rfem/structure_core/section_pb2.pyi +1939 -0
  220. dlubal/api/rfem/structure_core/solid_pb2.py +53 -0
  221. dlubal/api/rfem/structure_core/solid_pb2.pyi +212 -0
  222. dlubal/api/rfem/structure_core/solid_set_pb2.py +39 -0
  223. dlubal/api/rfem/structure_core/solid_set_pb2.pyi +55 -0
  224. dlubal/api/rfem/structure_core/surface_pb2.py +67 -0
  225. dlubal/api/rfem/structure_core/surface_pb2.pyi +473 -0
  226. dlubal/api/rfem/structure_core/surface_set_pb2.py +47 -0
  227. dlubal/api/rfem/structure_core/surface_set_pb2.pyi +164 -0
  228. dlubal/api/rfem/structure_core/thickness_pb2.py +64 -0
  229. dlubal/api/rfem/structure_core/thickness_pb2.pyi +479 -0
  230. dlubal/api/rfem/timber_design_objects/__init__.py +3 -0
  231. dlubal/api/rfem/timber_design_objects/timber_design_fr_configuration_pb2.py +36 -0
  232. dlubal/api/rfem/timber_design_objects/timber_design_fr_configuration_pb2.pyi +30 -0
  233. dlubal/api/rfem/timber_design_objects/timber_design_sls_configuration_pb2.py +36 -0
  234. dlubal/api/rfem/timber_design_objects/timber_design_sls_configuration_pb2.pyi +30 -0
  235. dlubal/api/rfem/timber_design_objects/timber_design_uls_configuration_pb2.py +36 -0
  236. dlubal/api/rfem/timber_design_objects/timber_design_uls_configuration_pb2.pyi +30 -0
  237. dlubal/api/rfem/types_for_aluminum_design/__init__.py +3 -0
  238. dlubal/api/rfem/types_for_aluminum_design/aluminum_effective_lengths_pb2.py +56 -0
  239. dlubal/api/rfem/types_for_aluminum_design/aluminum_effective_lengths_pb2.pyi +150 -0
  240. dlubal/api/rfem/types_for_aluminum_design/aluminum_member_local_section_reduction_pb2.py +38 -0
  241. dlubal/api/rfem/types_for_aluminum_design/aluminum_member_local_section_reduction_pb2.pyi +36 -0
  242. dlubal/api/rfem/types_for_aluminum_design/aluminum_member_transverse_weld_pb2.py +38 -0
  243. dlubal/api/rfem/types_for_aluminum_design/aluminum_member_transverse_weld_pb2.pyi +36 -0
  244. dlubal/api/rfem/types_for_concrete_design/__init__.py +5 -0
  245. dlubal/api/rfem/types_for_concrete_design/concrete_durability_pb2.py +68 -0
  246. dlubal/api/rfem/types_for_concrete_design/concrete_durability_pb2.pyi +269 -0
  247. dlubal/api/rfem/types_for_concrete_design/concrete_effective_lengths_pb2.py +66 -0
  248. dlubal/api/rfem/types_for_concrete_design/concrete_effective_lengths_pb2.pyi +186 -0
  249. dlubal/api/rfem/types_for_concrete_design/punching_reinforcement_pb2.py +52 -0
  250. dlubal/api/rfem/types_for_concrete_design/punching_reinforcement_pb2.pyi +196 -0
  251. dlubal/api/rfem/types_for_concrete_design/reinforcement_direction_pb2.py +38 -0
  252. dlubal/api/rfem/types_for_concrete_design/reinforcement_direction_pb2.pyi +48 -0
  253. dlubal/api/rfem/types_for_concrete_design/surface_reinforcement_pb2.py +72 -0
  254. dlubal/api/rfem/types_for_concrete_design/surface_reinforcement_pb2.pyi +560 -0
  255. dlubal/api/rfem/types_for_lines/__init__.py +4 -0
  256. dlubal/api/rfem/types_for_lines/line_hinge_pb2.py +103 -0
  257. dlubal/api/rfem/types_for_lines/line_hinge_pb2.pyi +610 -0
  258. dlubal/api/rfem/types_for_lines/line_mesh_refinement_pb2.py +38 -0
  259. dlubal/api/rfem/types_for_lines/line_mesh_refinement_pb2.pyi +50 -0
  260. dlubal/api/rfem/types_for_lines/line_support_pb2.py +127 -0
  261. dlubal/api/rfem/types_for_lines/line_support_pb2.pyi +883 -0
  262. dlubal/api/rfem/types_for_lines/line_welded_joint_pb2.py +42 -0
  263. dlubal/api/rfem/types_for_lines/line_welded_joint_pb2.pyi +93 -0
  264. dlubal/api/rfem/types_for_members/__init__.py +13 -0
  265. dlubal/api/rfem/types_for_members/design_support_pb2.py +50 -0
  266. dlubal/api/rfem/types_for_members/design_support_pb2.pyi +166 -0
  267. dlubal/api/rfem/types_for_members/member_definable_stiffness_pb2.py +36 -0
  268. dlubal/api/rfem/types_for_members/member_definable_stiffness_pb2.pyi +52 -0
  269. dlubal/api/rfem/types_for_members/member_eccentricity_pb2.py +49 -0
  270. dlubal/api/rfem/types_for_members/member_eccentricity_pb2.pyi +117 -0
  271. dlubal/api/rfem/types_for_members/member_hinge_pb2.py +151 -0
  272. dlubal/api/rfem/types_for_members/member_hinge_pb2.pyi +1226 -0
  273. dlubal/api/rfem/types_for_members/member_nonlinearity_pb2.py +38 -0
  274. dlubal/api/rfem/types_for_members/member_nonlinearity_pb2.pyi +62 -0
  275. dlubal/api/rfem/types_for_members/member_openings_pb2.py +38 -0
  276. dlubal/api/rfem/types_for_members/member_openings_pb2.pyi +36 -0
  277. dlubal/api/rfem/types_for_members/member_result_intermediate_point_pb2.py +38 -0
  278. dlubal/api/rfem/types_for_members/member_result_intermediate_point_pb2.pyi +40 -0
  279. dlubal/api/rfem/types_for_members/member_rotational_restraint_pb2.py +48 -0
  280. dlubal/api/rfem/types_for_members/member_rotational_restraint_pb2.pyi +111 -0
  281. dlubal/api/rfem/types_for_members/member_shear_panel_pb2.py +40 -0
  282. dlubal/api/rfem/types_for_members/member_shear_panel_pb2.pyi +82 -0
  283. dlubal/api/rfem/types_for_members/member_spring_pb2.py +50 -0
  284. dlubal/api/rfem/types_for_members/member_spring_pb2.pyi +139 -0
  285. dlubal/api/rfem/types_for_members/member_stiffness_modification_pb2.py +46 -0
  286. dlubal/api/rfem/types_for_members/member_stiffness_modification_pb2.pyi +130 -0
  287. dlubal/api/rfem/types_for_members/member_support_pb2.py +49 -0
  288. dlubal/api/rfem/types_for_members/member_support_pb2.pyi +162 -0
  289. dlubal/api/rfem/types_for_members/member_transverse_stiffener_pb2.py +38 -0
  290. dlubal/api/rfem/types_for_members/member_transverse_stiffener_pb2.pyi +36 -0
  291. dlubal/api/rfem/types_for_nodes/__init__.py +2 -0
  292. dlubal/api/rfem/types_for_nodes/nodal_mesh_refinement_pb2.py +40 -0
  293. dlubal/api/rfem/types_for_nodes/nodal_mesh_refinement_pb2.pyi +65 -0
  294. dlubal/api/rfem/types_for_nodes/nodal_support_pb2.py +171 -0
  295. dlubal/api/rfem/types_for_nodes/nodal_support_pb2.pyi +1202 -0
  296. dlubal/api/rfem/types_for_solids/__init__.py +3 -0
  297. dlubal/api/rfem/types_for_solids/solid_contacts_pb2.py +40 -0
  298. dlubal/api/rfem/types_for_solids/solid_contacts_pb2.pyi +61 -0
  299. dlubal/api/rfem/types_for_solids/solid_gas_pb2.py +36 -0
  300. dlubal/api/rfem/types_for_solids/solid_gas_pb2.pyi +28 -0
  301. dlubal/api/rfem/types_for_solids/solid_mesh_refinement_pb2.py +36 -0
  302. dlubal/api/rfem/types_for_solids/solid_mesh_refinement_pb2.pyi +30 -0
  303. dlubal/api/rfem/types_for_special_objects/__init__.py +4 -0
  304. dlubal/api/rfem/types_for_special_objects/line_release_type_pb2.py +105 -0
  305. dlubal/api/rfem/types_for_special_objects/line_release_type_pb2.pyi +661 -0
  306. dlubal/api/rfem/types_for_special_objects/nodal_release_type_pb2.py +110 -0
  307. dlubal/api/rfem/types_for_special_objects/nodal_release_type_pb2.pyi +732 -0
  308. dlubal/api/rfem/types_for_special_objects/surface_release_type_pb2.py +69 -0
  309. dlubal/api/rfem/types_for_special_objects/surface_release_type_pb2.pyi +306 -0
  310. dlubal/api/rfem/types_for_special_objects/surfaces_contact_type_pb2.py +44 -0
  311. dlubal/api/rfem/types_for_special_objects/surfaces_contact_type_pb2.pyi +81 -0
  312. dlubal/api/rfem/types_for_steel_design/__init__.py +3 -0
  313. dlubal/api/rfem/types_for_steel_design/steel_boundary_conditions_pb2.py +42 -0
  314. dlubal/api/rfem/types_for_steel_design/steel_boundary_conditions_pb2.pyi +60 -0
  315. dlubal/api/rfem/types_for_steel_design/steel_effective_lengths_pb2.py +90 -0
  316. dlubal/api/rfem/types_for_steel_design/steel_effective_lengths_pb2.pyi +337 -0
  317. dlubal/api/rfem/types_for_steel_design/steel_member_local_section_reduction_pb2.py +38 -0
  318. dlubal/api/rfem/types_for_steel_design/steel_member_local_section_reduction_pb2.pyi +36 -0
  319. dlubal/api/rfem/types_for_surfaces/__init__.py +4 -0
  320. dlubal/api/rfem/types_for_surfaces/surface_eccentricity_pb2.py +42 -0
  321. dlubal/api/rfem/types_for_surfaces/surface_eccentricity_pb2.pyi +74 -0
  322. dlubal/api/rfem/types_for_surfaces/surface_mesh_refinement_pb2.py +36 -0
  323. dlubal/api/rfem/types_for_surfaces/surface_mesh_refinement_pb2.pyi +30 -0
  324. dlubal/api/rfem/types_for_surfaces/surface_stiffness_modification_pb2.py +40 -0
  325. dlubal/api/rfem/types_for_surfaces/surface_stiffness_modification_pb2.pyi +157 -0
  326. dlubal/api/rfem/types_for_surfaces/surface_support_pb2.py +43 -0
  327. dlubal/api/rfem/types_for_surfaces/surface_support_pb2.pyi +83 -0
  328. dlubal/api/rfem/types_for_timber_design/__init__.py +5 -0
  329. dlubal/api/rfem/types_for_timber_design/timber_effective_lengths_pb2.py +56 -0
  330. dlubal/api/rfem/types_for_timber_design/timber_effective_lengths_pb2.pyi +139 -0
  331. dlubal/api/rfem/types_for_timber_design/timber_member_local_section_reduction_pb2.py +38 -0
  332. dlubal/api/rfem/types_for_timber_design/timber_member_local_section_reduction_pb2.pyi +36 -0
  333. dlubal/api/rfem/types_for_timber_design/timber_moisture_class_pb2.py +38 -0
  334. dlubal/api/rfem/types_for_timber_design/timber_moisture_class_pb2.pyi +46 -0
  335. dlubal/api/rfem/types_for_timber_design/timber_service_class_pb2.py +38 -0
  336. dlubal/api/rfem/types_for_timber_design/timber_service_class_pb2.pyi +46 -0
  337. dlubal/api/rfem/types_for_timber_design/timber_service_conditions_pb2.py +42 -0
  338. dlubal/api/rfem/types_for_timber_design/timber_service_conditions_pb2.pyi +110 -0
  339. dlubal.api-0.1.293714a1.dist-info/METADATA +40 -0
  340. dlubal.api-0.1.293714a1.dist-info/RECORD +342 -0
  341. dlubal.api-0.1.293714a1.dist-info/WHEEL +5 -0
  342. dlubal.api-0.1.293714a1.dist-info/top_level.txt +1 -0
@@ -0,0 +1,284 @@
1
+ from google.protobuf.internal import enum_type_wrapper as _enum_type_wrapper
2
+ from google.protobuf import descriptor as _descriptor
3
+ from google.protobuf import message as _message
4
+ from typing import ClassVar as _ClassVar, Optional as _Optional, Union as _Union
5
+
6
+ DESCRIPTOR: _descriptor.FileDescriptor
7
+
8
+ class GlobalParameterUnitGroup(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
9
+ __slots__ = ()
10
+ GLOBAL_PARAMETER_UNIT_GROUP_EG_MODULE: _ClassVar[GlobalParameterUnitGroup]
11
+ GLOBAL_PARAMETER_UNIT_GROUP_ANGLE: _ClassVar[GlobalParameterUnitGroup]
12
+ GLOBAL_PARAMETER_UNIT_GROUP_AREA: _ClassVar[GlobalParameterUnitGroup]
13
+ GLOBAL_PARAMETER_UNIT_GROUP_COATING_DIMENSIONS: _ClassVar[GlobalParameterUnitGroup]
14
+ GLOBAL_PARAMETER_UNIT_GROUP_COATING_ROTATIONS: _ClassVar[GlobalParameterUnitGroup]
15
+ GLOBAL_PARAMETER_UNIT_GROUP_DAMPING_COEFFICIENT: _ClassVar[GlobalParameterUnitGroup]
16
+ GLOBAL_PARAMETER_UNIT_GROUP_DENSITY: _ClassVar[GlobalParameterUnitGroup]
17
+ GLOBAL_PARAMETER_UNIT_GROUP_DIMENSIONLESS: _ClassVar[GlobalParameterUnitGroup]
18
+ GLOBAL_PARAMETER_UNIT_GROUP_DYNAMIC_INCREASE_FACTOR: _ClassVar[GlobalParameterUnitGroup]
19
+ GLOBAL_PARAMETER_UNIT_GROUP_FACTOR3: _ClassVar[GlobalParameterUnitGroup]
20
+ GLOBAL_PARAMETER_UNIT_GROUP_FRICTION_COEFFICIENT: _ClassVar[GlobalParameterUnitGroup]
21
+ GLOBAL_PARAMETER_UNIT_GROUP_GEOGRAPHIC_COORDINATES: _ClassVar[GlobalParameterUnitGroup]
22
+ GLOBAL_PARAMETER_UNIT_GROUP_GRAVITATIONAL_ACCELERATION: _ClassVar[GlobalParameterUnitGroup]
23
+ GLOBAL_PARAMETER_UNIT_GROUP_LENGTH: _ClassVar[GlobalParameterUnitGroup]
24
+ GLOBAL_PARAMETER_UNIT_GROUP_LINE_SPRING_CONSTANT: _ClassVar[GlobalParameterUnitGroup]
25
+ GLOBAL_PARAMETER_UNIT_GROUP_LINE_SPRING_ROTATIONAL_STIFFNESS: _ClassVar[GlobalParameterUnitGroup]
26
+ GLOBAL_PARAMETER_UNIT_GROUP_LOADING_COATING_AREA: _ClassVar[GlobalParameterUnitGroup]
27
+ GLOBAL_PARAMETER_UNIT_GROUP_LOADS_AMOUNT_PRECIPITATION: _ClassVar[GlobalParameterUnitGroup]
28
+ GLOBAL_PARAMETER_UNIT_GROUP_LOADS_ANGULAR_ACCELERATION: _ClassVar[GlobalParameterUnitGroup]
29
+ GLOBAL_PARAMETER_UNIT_GROUP_LOADS_ANGULAR_VELOCITY: _ClassVar[GlobalParameterUnitGroup]
30
+ GLOBAL_PARAMETER_UNIT_GROUP_LOADS_AREA_MASS: _ClassVar[GlobalParameterUnitGroup]
31
+ GLOBAL_PARAMETER_UNIT_GROUP_LOADS_AXIAL_STRAIN: _ClassVar[GlobalParameterUnitGroup]
32
+ GLOBAL_PARAMETER_UNIT_GROUP_LOADS_CUTTING_PATTERN_LOAD: _ClassVar[GlobalParameterUnitGroup]
33
+ GLOBAL_PARAMETER_UNIT_GROUP_LOADS_DENSITY: _ClassVar[GlobalParameterUnitGroup]
34
+ GLOBAL_PARAMETER_UNIT_GROUP_LOADS_DISPLACEMENT: _ClassVar[GlobalParameterUnitGroup]
35
+ GLOBAL_PARAMETER_UNIT_GROUP_LOADS_DISPLACEMENT_PER_UNIT_LENGTH: _ClassVar[GlobalParameterUnitGroup]
36
+ GLOBAL_PARAMETER_UNIT_GROUP_LOADS_FORCE: _ClassVar[GlobalParameterUnitGroup]
37
+ GLOBAL_PARAMETER_UNIT_GROUP_LOADS_FORCE_PER_UNIT_LENGTH: _ClassVar[GlobalParameterUnitGroup]
38
+ GLOBAL_PARAMETER_UNIT_GROUP_LOADS_IMPOSED_DISPLACEMENT: _ClassVar[GlobalParameterUnitGroup]
39
+ GLOBAL_PARAMETER_UNIT_GROUP_LOADS_IMPOSED_ROTATION: _ClassVar[GlobalParameterUnitGroup]
40
+ GLOBAL_PARAMETER_UNIT_GROUP_LOADS_KINEMATIC_VISCOSITY: _ClassVar[GlobalParameterUnitGroup]
41
+ GLOBAL_PARAMETER_UNIT_GROUP_LOADS_KINETIC_ENERGY: _ClassVar[GlobalParameterUnitGroup]
42
+ GLOBAL_PARAMETER_UNIT_GROUP_LOADS_LENGTH: _ClassVar[GlobalParameterUnitGroup]
43
+ GLOBAL_PARAMETER_UNIT_GROUP_LOADS_MASS: _ClassVar[GlobalParameterUnitGroup]
44
+ GLOBAL_PARAMETER_UNIT_GROUP_LOADS_MOMENT: _ClassVar[GlobalParameterUnitGroup]
45
+ GLOBAL_PARAMETER_UNIT_GROUP_LOADS_MOMENT_PER_UNIT_LENGTH: _ClassVar[GlobalParameterUnitGroup]
46
+ GLOBAL_PARAMETER_UNIT_GROUP_LOADS_PRECAMBER: _ClassVar[GlobalParameterUnitGroup]
47
+ GLOBAL_PARAMETER_UNIT_GROUP_LOADS_PRESSURE: _ClassVar[GlobalParameterUnitGroup]
48
+ GLOBAL_PARAMETER_UNIT_GROUP_LOADS_RELATIVE_LENGTH: _ClassVar[GlobalParameterUnitGroup]
49
+ GLOBAL_PARAMETER_UNIT_GROUP_LOADS_ROTATION: _ClassVar[GlobalParameterUnitGroup]
50
+ GLOBAL_PARAMETER_UNIT_GROUP_LOADS_ROTATION_PER_UNIT_LENGTH: _ClassVar[GlobalParameterUnitGroup]
51
+ GLOBAL_PARAMETER_UNIT_GROUP_LOADS_SOLID_TYPE_LOAD: _ClassVar[GlobalParameterUnitGroup]
52
+ GLOBAL_PARAMETER_UNIT_GROUP_LOADS_SPECIFIC_ENERGY: _ClassVar[GlobalParameterUnitGroup]
53
+ GLOBAL_PARAMETER_UNIT_GROUP_LOADS_SPECIFIC_WEIGHT: _ClassVar[GlobalParameterUnitGroup]
54
+ GLOBAL_PARAMETER_UNIT_GROUP_LOADS_SURFACE_TYPE_LOAD: _ClassVar[GlobalParameterUnitGroup]
55
+ GLOBAL_PARAMETER_UNIT_GROUP_LOADS_TEMPERATURE: _ClassVar[GlobalParameterUnitGroup]
56
+ GLOBAL_PARAMETER_UNIT_GROUP_LOADS_TEMPERATURE_CHANGE: _ClassVar[GlobalParameterUnitGroup]
57
+ GLOBAL_PARAMETER_UNIT_GROUP_LOADS_TURBULENCE_DISSIPATION_RATE: _ClassVar[GlobalParameterUnitGroup]
58
+ GLOBAL_PARAMETER_UNIT_GROUP_LOADS_VELOCITY: _ClassVar[GlobalParameterUnitGroup]
59
+ GLOBAL_PARAMETER_UNIT_GROUP_MASS: _ClassVar[GlobalParameterUnitGroup]
60
+ GLOBAL_PARAMETER_UNIT_GROUP_MASS_MOMENT_PER_UNIT_AREA: _ClassVar[GlobalParameterUnitGroup]
61
+ GLOBAL_PARAMETER_UNIT_GROUP_MASS_PER_UNIT_AREA: _ClassVar[GlobalParameterUnitGroup]
62
+ GLOBAL_PARAMETER_UNIT_GROUP_MASS_PER_UNIT_LENGTH: _ClassVar[GlobalParameterUnitGroup]
63
+ GLOBAL_PARAMETER_UNIT_GROUP_MATERIAL_ANGLE: _ClassVar[GlobalParameterUnitGroup]
64
+ GLOBAL_PARAMETER_UNIT_GROUP_MATERIAL_DEFORMATION: _ClassVar[GlobalParameterUnitGroup]
65
+ GLOBAL_PARAMETER_UNIT_GROUP_MATERIAL_FACTOR: _ClassVar[GlobalParameterUnitGroup]
66
+ GLOBAL_PARAMETER_UNIT_GROUP_MATERIAL_QUANTITY_INTEGER: _ClassVar[GlobalParameterUnitGroup]
67
+ GLOBAL_PARAMETER_UNIT_GROUP_MATERIAL_SPECIFIC_WEIGHT: _ClassVar[GlobalParameterUnitGroup]
68
+ GLOBAL_PARAMETER_UNIT_GROUP_MATERIAL_THICKNESS: _ClassVar[GlobalParameterUnitGroup]
69
+ GLOBAL_PARAMETER_UNIT_GROUP_ORTHOTROPY_BENDING_MOMENT: _ClassVar[GlobalParameterUnitGroup]
70
+ GLOBAL_PARAMETER_UNIT_GROUP_ORTHOTROPY_LINE_MOMENT: _ClassVar[GlobalParameterUnitGroup]
71
+ GLOBAL_PARAMETER_UNIT_GROUP_PARTIAL_FACTOR: _ClassVar[GlobalParameterUnitGroup]
72
+ GLOBAL_PARAMETER_UNIT_GROUP_POISSONS_RATIO: _ClassVar[GlobalParameterUnitGroup]
73
+ GLOBAL_PARAMETER_UNIT_GROUP_PRECISION_FACTOR: _ClassVar[GlobalParameterUnitGroup]
74
+ GLOBAL_PARAMETER_UNIT_GROUP_QUANTITY: _ClassVar[GlobalParameterUnitGroup]
75
+ GLOBAL_PARAMETER_UNIT_GROUP_QUANTITY_INTEGER: _ClassVar[GlobalParameterUnitGroup]
76
+ GLOBAL_PARAMETER_UNIT_GROUP_RATIO: _ClassVar[GlobalParameterUnitGroup]
77
+ GLOBAL_PARAMETER_UNIT_GROUP_RELATIVE_LENGTH: _ClassVar[GlobalParameterUnitGroup]
78
+ GLOBAL_PARAMETER_UNIT_GROUP_SECTION_ANGLE: _ClassVar[GlobalParameterUnitGroup]
79
+ GLOBAL_PARAMETER_UNIT_GROUP_SECTION_AREA: _ClassVar[GlobalParameterUnitGroup]
80
+ GLOBAL_PARAMETER_UNIT_GROUP_SECTION_BIMOMENT: _ClassVar[GlobalParameterUnitGroup]
81
+ GLOBAL_PARAMETER_UNIT_GROUP_SECTION_COMPLIANCE: _ClassVar[GlobalParameterUnitGroup]
82
+ GLOBAL_PARAMETER_UNIT_GROUP_SECTION_DIMENSION: _ClassVar[GlobalParameterUnitGroup]
83
+ GLOBAL_PARAMETER_UNIT_GROUP_SECTION_EFFECTIVE_AREA: _ClassVar[GlobalParameterUnitGroup]
84
+ GLOBAL_PARAMETER_UNIT_GROUP_SECTION_EFFECTIVE_SECOND_MOMENT_OF_AREA: _ClassVar[GlobalParameterUnitGroup]
85
+ GLOBAL_PARAMETER_UNIT_GROUP_SECTION_FORCE: _ClassVar[GlobalParameterUnitGroup]
86
+ GLOBAL_PARAMETER_UNIT_GROUP_SECTION_LIMIT_FOR_REINFORCEMENT_PLACEMENT: _ClassVar[GlobalParameterUnitGroup]
87
+ GLOBAL_PARAMETER_UNIT_GROUP_SECTION_MOMENT: _ClassVar[GlobalParameterUnitGroup]
88
+ GLOBAL_PARAMETER_UNIT_GROUP_SECTION_MOMENT_OF_INERTIA: _ClassVar[GlobalParameterUnitGroup]
89
+ GLOBAL_PARAMETER_UNIT_GROUP_SECTION_PERIMETER: _ClassVar[GlobalParameterUnitGroup]
90
+ GLOBAL_PARAMETER_UNIT_GROUP_SECTION_QUANTITY: _ClassVar[GlobalParameterUnitGroup]
91
+ GLOBAL_PARAMETER_UNIT_GROUP_SECTION_SECTION_FACTOR: _ClassVar[GlobalParameterUnitGroup]
92
+ GLOBAL_PARAMETER_UNIT_GROUP_SECTION_SECTION_MODULUS: _ClassVar[GlobalParameterUnitGroup]
93
+ GLOBAL_PARAMETER_UNIT_GROUP_SECTION_STATICAL_MOMENT_OF_AREA: _ClassVar[GlobalParameterUnitGroup]
94
+ GLOBAL_PARAMETER_UNIT_GROUP_SECTION_SURFACE: _ClassVar[GlobalParameterUnitGroup]
95
+ GLOBAL_PARAMETER_UNIT_GROUP_SECTION_TEMPERATURE: _ClassVar[GlobalParameterUnitGroup]
96
+ GLOBAL_PARAMETER_UNIT_GROUP_SECTION_TENSION_FIELD_COEFFICIENT_1: _ClassVar[GlobalParameterUnitGroup]
97
+ GLOBAL_PARAMETER_UNIT_GROUP_SECTION_TENSION_FIELD_COEFFICIENT_2: _ClassVar[GlobalParameterUnitGroup]
98
+ GLOBAL_PARAMETER_UNIT_GROUP_SECTION_UNIT_STRESSES: _ClassVar[GlobalParameterUnitGroup]
99
+ GLOBAL_PARAMETER_UNIT_GROUP_SECTION_UNIT_WARPING_FUNCTION: _ClassVar[GlobalParameterUnitGroup]
100
+ GLOBAL_PARAMETER_UNIT_GROUP_SECTION_VOLUME: _ClassVar[GlobalParameterUnitGroup]
101
+ GLOBAL_PARAMETER_UNIT_GROUP_SECTION_WARPING_CONSTANT: _ClassVar[GlobalParameterUnitGroup]
102
+ GLOBAL_PARAMETER_UNIT_GROUP_SECTION_WARPING_ORDINATE: _ClassVar[GlobalParameterUnitGroup]
103
+ GLOBAL_PARAMETER_UNIT_GROUP_SECTION_WARPING_STATICAL_MOMENT: _ClassVar[GlobalParameterUnitGroup]
104
+ GLOBAL_PARAMETER_UNIT_GROUP_SECTION_WEIGHT: _ClassVar[GlobalParameterUnitGroup]
105
+ GLOBAL_PARAMETER_UNIT_GROUP_SELF_WEIGHT_FACTOR: _ClassVar[GlobalParameterUnitGroup]
106
+ GLOBAL_PARAMETER_UNIT_GROUP_SELF_WEIGHT_MASS: _ClassVar[GlobalParameterUnitGroup]
107
+ GLOBAL_PARAMETER_UNIT_GROUP_SHEAR_SPRING_CONSTANT: _ClassVar[GlobalParameterUnitGroup]
108
+ GLOBAL_PARAMETER_UNIT_GROUP_SOLID_SHEAR_STIFFNESS: _ClassVar[GlobalParameterUnitGroup]
109
+ GLOBAL_PARAMETER_UNIT_GROUP_SPRING_ROTATIONAL_STIFFNESS: _ClassVar[GlobalParameterUnitGroup]
110
+ GLOBAL_PARAMETER_UNIT_GROUP_SPRING_STIFFNESS: _ClassVar[GlobalParameterUnitGroup]
111
+ GLOBAL_PARAMETER_UNIT_GROUP_STIFFNESS_MULTIPLICATION_FACTOR: _ClassVar[GlobalParameterUnitGroup]
112
+ GLOBAL_PARAMETER_UNIT_GROUP_STRAIN: _ClassVar[GlobalParameterUnitGroup]
113
+ GLOBAL_PARAMETER_UNIT_GROUP_STRAIN_RATE: _ClassVar[GlobalParameterUnitGroup]
114
+ GLOBAL_PARAMETER_UNIT_GROUP_STRESSES: _ClassVar[GlobalParameterUnitGroup]
115
+ GLOBAL_PARAMETER_UNIT_GROUP_SURFACES_CONTACT_TYPE_SHEAR_STIFFNESS: _ClassVar[GlobalParameterUnitGroup]
116
+ GLOBAL_PARAMETER_UNIT_GROUP_SURFACE_SPRING_CONSTANT: _ClassVar[GlobalParameterUnitGroup]
117
+ GLOBAL_PARAMETER_UNIT_GROUP_THERMAL_EXPANSION_COEFFICIENT: _ClassVar[GlobalParameterUnitGroup]
118
+ GLOBAL_PARAMETER_UNIT_GROUP_THICKNESS: _ClassVar[GlobalParameterUnitGroup]
119
+ GLOBAL_PARAMETER_UNIT_GROUP_TIME: _ClassVar[GlobalParameterUnitGroup]
120
+ GLOBAL_PARAMETER_UNIT_GROUP_VOLUME: _ClassVar[GlobalParameterUnitGroup]
121
+ GLOBAL_PARAMETER_UNIT_GROUP_WEIGHT_AND_KNOT: _ClassVar[GlobalParameterUnitGroup]
122
+
123
+ class GlobalParameterDefinitionType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
124
+ __slots__ = ()
125
+ GLOBAL_PARAMETER_DEFINITION_TYPE_VALUE: _ClassVar[GlobalParameterDefinitionType]
126
+ GLOBAL_PARAMETER_DEFINITION_TYPE_FORMULA: _ClassVar[GlobalParameterDefinitionType]
127
+ GLOBAL_PARAMETER_DEFINITION_TYPE_OPTIMIZATION: _ClassVar[GlobalParameterDefinitionType]
128
+ GLOBAL_PARAMETER_DEFINITION_TYPE_OPTIMIZATION_ASCENDING: _ClassVar[GlobalParameterDefinitionType]
129
+ GLOBAL_PARAMETER_DEFINITION_TYPE_OPTIMIZATION_DESCENDING: _ClassVar[GlobalParameterDefinitionType]
130
+ GLOBAL_PARAMETER_UNIT_GROUP_EG_MODULE: GlobalParameterUnitGroup
131
+ GLOBAL_PARAMETER_UNIT_GROUP_ANGLE: GlobalParameterUnitGroup
132
+ GLOBAL_PARAMETER_UNIT_GROUP_AREA: GlobalParameterUnitGroup
133
+ GLOBAL_PARAMETER_UNIT_GROUP_COATING_DIMENSIONS: GlobalParameterUnitGroup
134
+ GLOBAL_PARAMETER_UNIT_GROUP_COATING_ROTATIONS: GlobalParameterUnitGroup
135
+ GLOBAL_PARAMETER_UNIT_GROUP_DAMPING_COEFFICIENT: GlobalParameterUnitGroup
136
+ GLOBAL_PARAMETER_UNIT_GROUP_DENSITY: GlobalParameterUnitGroup
137
+ GLOBAL_PARAMETER_UNIT_GROUP_DIMENSIONLESS: GlobalParameterUnitGroup
138
+ GLOBAL_PARAMETER_UNIT_GROUP_DYNAMIC_INCREASE_FACTOR: GlobalParameterUnitGroup
139
+ GLOBAL_PARAMETER_UNIT_GROUP_FACTOR3: GlobalParameterUnitGroup
140
+ GLOBAL_PARAMETER_UNIT_GROUP_FRICTION_COEFFICIENT: GlobalParameterUnitGroup
141
+ GLOBAL_PARAMETER_UNIT_GROUP_GEOGRAPHIC_COORDINATES: GlobalParameterUnitGroup
142
+ GLOBAL_PARAMETER_UNIT_GROUP_GRAVITATIONAL_ACCELERATION: GlobalParameterUnitGroup
143
+ GLOBAL_PARAMETER_UNIT_GROUP_LENGTH: GlobalParameterUnitGroup
144
+ GLOBAL_PARAMETER_UNIT_GROUP_LINE_SPRING_CONSTANT: GlobalParameterUnitGroup
145
+ GLOBAL_PARAMETER_UNIT_GROUP_LINE_SPRING_ROTATIONAL_STIFFNESS: GlobalParameterUnitGroup
146
+ GLOBAL_PARAMETER_UNIT_GROUP_LOADING_COATING_AREA: GlobalParameterUnitGroup
147
+ GLOBAL_PARAMETER_UNIT_GROUP_LOADS_AMOUNT_PRECIPITATION: GlobalParameterUnitGroup
148
+ GLOBAL_PARAMETER_UNIT_GROUP_LOADS_ANGULAR_ACCELERATION: GlobalParameterUnitGroup
149
+ GLOBAL_PARAMETER_UNIT_GROUP_LOADS_ANGULAR_VELOCITY: GlobalParameterUnitGroup
150
+ GLOBAL_PARAMETER_UNIT_GROUP_LOADS_AREA_MASS: GlobalParameterUnitGroup
151
+ GLOBAL_PARAMETER_UNIT_GROUP_LOADS_AXIAL_STRAIN: GlobalParameterUnitGroup
152
+ GLOBAL_PARAMETER_UNIT_GROUP_LOADS_CUTTING_PATTERN_LOAD: GlobalParameterUnitGroup
153
+ GLOBAL_PARAMETER_UNIT_GROUP_LOADS_DENSITY: GlobalParameterUnitGroup
154
+ GLOBAL_PARAMETER_UNIT_GROUP_LOADS_DISPLACEMENT: GlobalParameterUnitGroup
155
+ GLOBAL_PARAMETER_UNIT_GROUP_LOADS_DISPLACEMENT_PER_UNIT_LENGTH: GlobalParameterUnitGroup
156
+ GLOBAL_PARAMETER_UNIT_GROUP_LOADS_FORCE: GlobalParameterUnitGroup
157
+ GLOBAL_PARAMETER_UNIT_GROUP_LOADS_FORCE_PER_UNIT_LENGTH: GlobalParameterUnitGroup
158
+ GLOBAL_PARAMETER_UNIT_GROUP_LOADS_IMPOSED_DISPLACEMENT: GlobalParameterUnitGroup
159
+ GLOBAL_PARAMETER_UNIT_GROUP_LOADS_IMPOSED_ROTATION: GlobalParameterUnitGroup
160
+ GLOBAL_PARAMETER_UNIT_GROUP_LOADS_KINEMATIC_VISCOSITY: GlobalParameterUnitGroup
161
+ GLOBAL_PARAMETER_UNIT_GROUP_LOADS_KINETIC_ENERGY: GlobalParameterUnitGroup
162
+ GLOBAL_PARAMETER_UNIT_GROUP_LOADS_LENGTH: GlobalParameterUnitGroup
163
+ GLOBAL_PARAMETER_UNIT_GROUP_LOADS_MASS: GlobalParameterUnitGroup
164
+ GLOBAL_PARAMETER_UNIT_GROUP_LOADS_MOMENT: GlobalParameterUnitGroup
165
+ GLOBAL_PARAMETER_UNIT_GROUP_LOADS_MOMENT_PER_UNIT_LENGTH: GlobalParameterUnitGroup
166
+ GLOBAL_PARAMETER_UNIT_GROUP_LOADS_PRECAMBER: GlobalParameterUnitGroup
167
+ GLOBAL_PARAMETER_UNIT_GROUP_LOADS_PRESSURE: GlobalParameterUnitGroup
168
+ GLOBAL_PARAMETER_UNIT_GROUP_LOADS_RELATIVE_LENGTH: GlobalParameterUnitGroup
169
+ GLOBAL_PARAMETER_UNIT_GROUP_LOADS_ROTATION: GlobalParameterUnitGroup
170
+ GLOBAL_PARAMETER_UNIT_GROUP_LOADS_ROTATION_PER_UNIT_LENGTH: GlobalParameterUnitGroup
171
+ GLOBAL_PARAMETER_UNIT_GROUP_LOADS_SOLID_TYPE_LOAD: GlobalParameterUnitGroup
172
+ GLOBAL_PARAMETER_UNIT_GROUP_LOADS_SPECIFIC_ENERGY: GlobalParameterUnitGroup
173
+ GLOBAL_PARAMETER_UNIT_GROUP_LOADS_SPECIFIC_WEIGHT: GlobalParameterUnitGroup
174
+ GLOBAL_PARAMETER_UNIT_GROUP_LOADS_SURFACE_TYPE_LOAD: GlobalParameterUnitGroup
175
+ GLOBAL_PARAMETER_UNIT_GROUP_LOADS_TEMPERATURE: GlobalParameterUnitGroup
176
+ GLOBAL_PARAMETER_UNIT_GROUP_LOADS_TEMPERATURE_CHANGE: GlobalParameterUnitGroup
177
+ GLOBAL_PARAMETER_UNIT_GROUP_LOADS_TURBULENCE_DISSIPATION_RATE: GlobalParameterUnitGroup
178
+ GLOBAL_PARAMETER_UNIT_GROUP_LOADS_VELOCITY: GlobalParameterUnitGroup
179
+ GLOBAL_PARAMETER_UNIT_GROUP_MASS: GlobalParameterUnitGroup
180
+ GLOBAL_PARAMETER_UNIT_GROUP_MASS_MOMENT_PER_UNIT_AREA: GlobalParameterUnitGroup
181
+ GLOBAL_PARAMETER_UNIT_GROUP_MASS_PER_UNIT_AREA: GlobalParameterUnitGroup
182
+ GLOBAL_PARAMETER_UNIT_GROUP_MASS_PER_UNIT_LENGTH: GlobalParameterUnitGroup
183
+ GLOBAL_PARAMETER_UNIT_GROUP_MATERIAL_ANGLE: GlobalParameterUnitGroup
184
+ GLOBAL_PARAMETER_UNIT_GROUP_MATERIAL_DEFORMATION: GlobalParameterUnitGroup
185
+ GLOBAL_PARAMETER_UNIT_GROUP_MATERIAL_FACTOR: GlobalParameterUnitGroup
186
+ GLOBAL_PARAMETER_UNIT_GROUP_MATERIAL_QUANTITY_INTEGER: GlobalParameterUnitGroup
187
+ GLOBAL_PARAMETER_UNIT_GROUP_MATERIAL_SPECIFIC_WEIGHT: GlobalParameterUnitGroup
188
+ GLOBAL_PARAMETER_UNIT_GROUP_MATERIAL_THICKNESS: GlobalParameterUnitGroup
189
+ GLOBAL_PARAMETER_UNIT_GROUP_ORTHOTROPY_BENDING_MOMENT: GlobalParameterUnitGroup
190
+ GLOBAL_PARAMETER_UNIT_GROUP_ORTHOTROPY_LINE_MOMENT: GlobalParameterUnitGroup
191
+ GLOBAL_PARAMETER_UNIT_GROUP_PARTIAL_FACTOR: GlobalParameterUnitGroup
192
+ GLOBAL_PARAMETER_UNIT_GROUP_POISSONS_RATIO: GlobalParameterUnitGroup
193
+ GLOBAL_PARAMETER_UNIT_GROUP_PRECISION_FACTOR: GlobalParameterUnitGroup
194
+ GLOBAL_PARAMETER_UNIT_GROUP_QUANTITY: GlobalParameterUnitGroup
195
+ GLOBAL_PARAMETER_UNIT_GROUP_QUANTITY_INTEGER: GlobalParameterUnitGroup
196
+ GLOBAL_PARAMETER_UNIT_GROUP_RATIO: GlobalParameterUnitGroup
197
+ GLOBAL_PARAMETER_UNIT_GROUP_RELATIVE_LENGTH: GlobalParameterUnitGroup
198
+ GLOBAL_PARAMETER_UNIT_GROUP_SECTION_ANGLE: GlobalParameterUnitGroup
199
+ GLOBAL_PARAMETER_UNIT_GROUP_SECTION_AREA: GlobalParameterUnitGroup
200
+ GLOBAL_PARAMETER_UNIT_GROUP_SECTION_BIMOMENT: GlobalParameterUnitGroup
201
+ GLOBAL_PARAMETER_UNIT_GROUP_SECTION_COMPLIANCE: GlobalParameterUnitGroup
202
+ GLOBAL_PARAMETER_UNIT_GROUP_SECTION_DIMENSION: GlobalParameterUnitGroup
203
+ GLOBAL_PARAMETER_UNIT_GROUP_SECTION_EFFECTIVE_AREA: GlobalParameterUnitGroup
204
+ GLOBAL_PARAMETER_UNIT_GROUP_SECTION_EFFECTIVE_SECOND_MOMENT_OF_AREA: GlobalParameterUnitGroup
205
+ GLOBAL_PARAMETER_UNIT_GROUP_SECTION_FORCE: GlobalParameterUnitGroup
206
+ GLOBAL_PARAMETER_UNIT_GROUP_SECTION_LIMIT_FOR_REINFORCEMENT_PLACEMENT: GlobalParameterUnitGroup
207
+ GLOBAL_PARAMETER_UNIT_GROUP_SECTION_MOMENT: GlobalParameterUnitGroup
208
+ GLOBAL_PARAMETER_UNIT_GROUP_SECTION_MOMENT_OF_INERTIA: GlobalParameterUnitGroup
209
+ GLOBAL_PARAMETER_UNIT_GROUP_SECTION_PERIMETER: GlobalParameterUnitGroup
210
+ GLOBAL_PARAMETER_UNIT_GROUP_SECTION_QUANTITY: GlobalParameterUnitGroup
211
+ GLOBAL_PARAMETER_UNIT_GROUP_SECTION_SECTION_FACTOR: GlobalParameterUnitGroup
212
+ GLOBAL_PARAMETER_UNIT_GROUP_SECTION_SECTION_MODULUS: GlobalParameterUnitGroup
213
+ GLOBAL_PARAMETER_UNIT_GROUP_SECTION_STATICAL_MOMENT_OF_AREA: GlobalParameterUnitGroup
214
+ GLOBAL_PARAMETER_UNIT_GROUP_SECTION_SURFACE: GlobalParameterUnitGroup
215
+ GLOBAL_PARAMETER_UNIT_GROUP_SECTION_TEMPERATURE: GlobalParameterUnitGroup
216
+ GLOBAL_PARAMETER_UNIT_GROUP_SECTION_TENSION_FIELD_COEFFICIENT_1: GlobalParameterUnitGroup
217
+ GLOBAL_PARAMETER_UNIT_GROUP_SECTION_TENSION_FIELD_COEFFICIENT_2: GlobalParameterUnitGroup
218
+ GLOBAL_PARAMETER_UNIT_GROUP_SECTION_UNIT_STRESSES: GlobalParameterUnitGroup
219
+ GLOBAL_PARAMETER_UNIT_GROUP_SECTION_UNIT_WARPING_FUNCTION: GlobalParameterUnitGroup
220
+ GLOBAL_PARAMETER_UNIT_GROUP_SECTION_VOLUME: GlobalParameterUnitGroup
221
+ GLOBAL_PARAMETER_UNIT_GROUP_SECTION_WARPING_CONSTANT: GlobalParameterUnitGroup
222
+ GLOBAL_PARAMETER_UNIT_GROUP_SECTION_WARPING_ORDINATE: GlobalParameterUnitGroup
223
+ GLOBAL_PARAMETER_UNIT_GROUP_SECTION_WARPING_STATICAL_MOMENT: GlobalParameterUnitGroup
224
+ GLOBAL_PARAMETER_UNIT_GROUP_SECTION_WEIGHT: GlobalParameterUnitGroup
225
+ GLOBAL_PARAMETER_UNIT_GROUP_SELF_WEIGHT_FACTOR: GlobalParameterUnitGroup
226
+ GLOBAL_PARAMETER_UNIT_GROUP_SELF_WEIGHT_MASS: GlobalParameterUnitGroup
227
+ GLOBAL_PARAMETER_UNIT_GROUP_SHEAR_SPRING_CONSTANT: GlobalParameterUnitGroup
228
+ GLOBAL_PARAMETER_UNIT_GROUP_SOLID_SHEAR_STIFFNESS: GlobalParameterUnitGroup
229
+ GLOBAL_PARAMETER_UNIT_GROUP_SPRING_ROTATIONAL_STIFFNESS: GlobalParameterUnitGroup
230
+ GLOBAL_PARAMETER_UNIT_GROUP_SPRING_STIFFNESS: GlobalParameterUnitGroup
231
+ GLOBAL_PARAMETER_UNIT_GROUP_STIFFNESS_MULTIPLICATION_FACTOR: GlobalParameterUnitGroup
232
+ GLOBAL_PARAMETER_UNIT_GROUP_STRAIN: GlobalParameterUnitGroup
233
+ GLOBAL_PARAMETER_UNIT_GROUP_STRAIN_RATE: GlobalParameterUnitGroup
234
+ GLOBAL_PARAMETER_UNIT_GROUP_STRESSES: GlobalParameterUnitGroup
235
+ GLOBAL_PARAMETER_UNIT_GROUP_SURFACES_CONTACT_TYPE_SHEAR_STIFFNESS: GlobalParameterUnitGroup
236
+ GLOBAL_PARAMETER_UNIT_GROUP_SURFACE_SPRING_CONSTANT: GlobalParameterUnitGroup
237
+ GLOBAL_PARAMETER_UNIT_GROUP_THERMAL_EXPANSION_COEFFICIENT: GlobalParameterUnitGroup
238
+ GLOBAL_PARAMETER_UNIT_GROUP_THICKNESS: GlobalParameterUnitGroup
239
+ GLOBAL_PARAMETER_UNIT_GROUP_TIME: GlobalParameterUnitGroup
240
+ GLOBAL_PARAMETER_UNIT_GROUP_VOLUME: GlobalParameterUnitGroup
241
+ GLOBAL_PARAMETER_UNIT_GROUP_WEIGHT_AND_KNOT: GlobalParameterUnitGroup
242
+ GLOBAL_PARAMETER_DEFINITION_TYPE_VALUE: GlobalParameterDefinitionType
243
+ GLOBAL_PARAMETER_DEFINITION_TYPE_FORMULA: GlobalParameterDefinitionType
244
+ GLOBAL_PARAMETER_DEFINITION_TYPE_OPTIMIZATION: GlobalParameterDefinitionType
245
+ GLOBAL_PARAMETER_DEFINITION_TYPE_OPTIMIZATION_ASCENDING: GlobalParameterDefinitionType
246
+ GLOBAL_PARAMETER_DEFINITION_TYPE_OPTIMIZATION_DESCENDING: GlobalParameterDefinitionType
247
+
248
+ class GlobalParameter(_message.Message):
249
+ __slots__ = ("no", "user_defined_name_enabled", "name", "attribute_always_editable", "symbol", "unit_group", "definition_type", "value", "unit", "formula", "min", "max", "increment", "steps", "comment", "id_for_export_import", "metadata_for_export_import")
250
+ NO_FIELD_NUMBER: _ClassVar[int]
251
+ USER_DEFINED_NAME_ENABLED_FIELD_NUMBER: _ClassVar[int]
252
+ NAME_FIELD_NUMBER: _ClassVar[int]
253
+ ATTRIBUTE_ALWAYS_EDITABLE_FIELD_NUMBER: _ClassVar[int]
254
+ SYMBOL_FIELD_NUMBER: _ClassVar[int]
255
+ UNIT_GROUP_FIELD_NUMBER: _ClassVar[int]
256
+ DEFINITION_TYPE_FIELD_NUMBER: _ClassVar[int]
257
+ VALUE_FIELD_NUMBER: _ClassVar[int]
258
+ UNIT_FIELD_NUMBER: _ClassVar[int]
259
+ FORMULA_FIELD_NUMBER: _ClassVar[int]
260
+ MIN_FIELD_NUMBER: _ClassVar[int]
261
+ MAX_FIELD_NUMBER: _ClassVar[int]
262
+ INCREMENT_FIELD_NUMBER: _ClassVar[int]
263
+ STEPS_FIELD_NUMBER: _ClassVar[int]
264
+ COMMENT_FIELD_NUMBER: _ClassVar[int]
265
+ ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
266
+ METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
267
+ no: int
268
+ user_defined_name_enabled: bool
269
+ name: str
270
+ attribute_always_editable: str
271
+ symbol: str
272
+ unit_group: GlobalParameterUnitGroup
273
+ definition_type: GlobalParameterDefinitionType
274
+ value: float
275
+ unit: str
276
+ formula: str
277
+ min: float
278
+ max: float
279
+ increment: float
280
+ steps: int
281
+ comment: str
282
+ id_for_export_import: str
283
+ metadata_for_export_import: str
284
+ def __init__(self, no: _Optional[int] = ..., user_defined_name_enabled: bool = ..., name: _Optional[str] = ..., attribute_always_editable: _Optional[str] = ..., symbol: _Optional[str] = ..., unit_group: _Optional[_Union[GlobalParameterUnitGroup, str]] = ..., definition_type: _Optional[_Union[GlobalParameterDefinitionType, str]] = ..., value: _Optional[float] = ..., unit: _Optional[str] = ..., formula: _Optional[str] = ..., min: _Optional[float] = ..., max: _Optional[float] = ..., increment: _Optional[float] = ..., steps: _Optional[int] = ..., comment: _Optional[str] = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
@@ -0,0 +1,10 @@
1
+ from .building_grid_pb2 import *
2
+ from .clipping_box_pb2 import *
3
+ from .clipping_plane_pb2 import *
4
+ from .coordinate_system_pb2 import *
5
+ from .dimension_pb2 import *
6
+ from .dxf_file_model_object_pb2 import *
7
+ from .dxf_model_object_pb2 import *
8
+ from .note_pb2 import *
9
+ from .object_snap_pb2 import *
10
+ from .visual_object_pb2 import *
@@ -0,0 +1,53 @@
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/guide_objects/building_grid.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/guide_objects/building_grid.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'\n1dlubal/api/rfem/guide_objects/building_grid.proto\x12\x1d\x64lubal.api.rfem.guide_objects\x1a\x1e\x64lubal/api/common/common.proto\"\x94 \n\x0c\x42uildingGrid\x12\n\n\x02no\x18\x01 \x01(\x05\x12\x42\n\x04type\x18\x02 \x01(\x0e\x32/.dlubal.api.rfem.guide_objects.BuildingGridTypeH\x00\x88\x01\x01\x12&\n\x19user_defined_name_enabled\x18\x03 \x01(\x08H\x01\x88\x01\x01\x12\x11\n\x04name\x18\x04 \x01(\tH\x02\x88\x01\x01\x12K\n\tgrid_type\x18\x05 \x01(\x0e\x32\x33.dlubal.api.rfem.guide_objects.BuildingGridGridTypeH\x03\x88\x01\x01\x12\x1f\n\x12locked_in_graphics\x18\x06 \x01(\x08H\x04\x88\x01\x01\x12\x1c\n\x0finclude_in_view\x18\x07 \x01(\x08H\x05\x88\x01\x01\x12\x18\n\x0bgrid_points\x18\x08 \x01(\x08H\x06\x88\x01\x01\x12\x17\n\ngrid_lines\x18\t \x01(\x08H\x07\x88\x01\x01\x12\x13\n\x06labels\x18\n \x01(\x08H\x08\x88\x01\x01\x12\x17\n\ndimensions\x18\x0b \x01(\x08H\t\x88\x01\x01\x12&\n\x19is_origin_defined_by_node\x18\x0c \x01(\x08H\n\x88\x01\x01\x12\x18\n\x0borigin_node\x18\r \x01(\x05H\x0b\x88\x01\x01\x12<\n\x12origin_coordinates\x18\x0e \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x0c\x88\x01\x01\x12 \n\x13origin_coordinate_x\x18\x0f \x01(\x01H\r\x88\x01\x01\x12 \n\x13origin_coordinate_y\x18\x10 \x01(\x01H\x0e\x88\x01\x01\x12 \n\x13origin_coordinate_z\x18\x11 \x01(\x01H\x0f\x88\x01\x01\x12\x15\n\x08\x61lpha_ux\x18\x12 \x01(\x01H\x10\x88\x01\x01\x12\x15\n\x08\x61lpha_vy\x18\x13 \x01(\x01H\x11\x88\x01\x01\x12\x15\n\x08\x61lpha_wz\x18\x14 \x01(\x01H\x12\x88\x01\x01\x12\x1e\n\x11\x63oordinate_system\x18\x15 \x01(\x05H\x13\x88\x01\x01\x12\'\n\x1arotation_coordinate_system\x18\x16 \x01(\x05H\x14\x88\x01\x01\x12#\n\x16has_specific_direction\x18\x17 \x01(\x08H\x15\x88\x01\x01\x12\x66\n\x17specific_direction_type\x18\x18 \x01(\x0e\x32@.dlubal.api.rfem.guide_objects.BuildingGridSpecificDirectionTypeH\x16\x88\x01\x01\x12S\n\raxes_sequence\x18\x19 \x01(\x0e\x32\x37.dlubal.api.rfem.guide_objects.BuildingGridAxesSequenceH\x17\x88\x01\x01\x12\"\n\x15rotated_about_angle_x\x18\x1a \x01(\x01H\x18\x88\x01\x01\x12\"\n\x15rotated_about_angle_y\x18\x1b \x01(\x01H\x19\x88\x01\x01\x12\"\n\x15rotated_about_angle_z\x18\x1c \x01(\x01H\x1a\x88\x01\x01\x12\"\n\x15rotated_about_angle_1\x18\x1d \x01(\x01H\x1b\x88\x01\x01\x12\"\n\x15rotated_about_angle_2\x18\x1e \x01(\x01H\x1c\x88\x01\x01\x12\"\n\x15rotated_about_angle_3\x18\x1f \x01(\x01H\x1d\x88\x01\x01\x12,\n\x1f\x64irected_to_node_direction_node\x18 \x01(\x05H\x1e\x88\x01\x01\x12(\n\x1b\x64irected_to_node_plane_node\x18! \x01(\x05H\x1f\x88\x01\x01\x12l\n\x1b\x64irected_to_node_first_axis\x18\" \x01(\x0e\x32\x42.dlubal.api.rfem.guide_objects.BuildingGridDirectedToNodeFirstAxisH \x88\x01\x01\x12n\n\x1c\x64irected_to_node_second_axis\x18# \x01(\x0e\x32\x43.dlubal.api.rfem.guide_objects.BuildingGridDirectedToNodeSecondAxisH!\x88\x01\x01\x12-\n parallel_to_two_nodes_first_node\x18$ \x01(\x05H\"\x88\x01\x01\x12.\n!parallel_to_two_nodes_second_node\x18% \x01(\x05H#\x88\x01\x01\x12-\n parallel_to_two_nodes_plane_node\x18& \x01(\x05H$\x88\x01\x01\x12u\n parallel_to_two_nodes_first_axis\x18\' \x01(\x0e\x32\x46.dlubal.api.rfem.guide_objects.BuildingGridParallelToTwoNodesFirstAxisH%\x88\x01\x01\x12w\n!parallel_to_two_nodes_second_axis\x18( \x01(\x0e\x32G.dlubal.api.rfem.guide_objects.BuildingGridParallelToTwoNodesSecondAxisH&\x88\x01\x01\x12\x1d\n\x10parallel_to_line\x18) \x01(\x05H\'\x88\x01\x01\x12\x1f\n\x12parallel_to_member\x18* \x01(\x05H(\x88\x01\x01\x12\x14\n\x07\x63omment\x18+ \x01(\tH)\x88\x01\x01\x12\x1f\n\x12\x63oordinates_list_x\x18, \x01(\tH*\x88\x01\x01\x12\x1f\n\x12\x63oordinates_list_y\x18- \x01(\tH+\x88\x01\x01\x12\x1f\n\x12\x63oordinates_list_z\x18. \x01(\tH,\x88\x01\x01\x12\x1a\n\rlabels_list_x\x18/ \x01(\tH-\x88\x01\x01\x12\x1a\n\rlabels_list_y\x18\x30 \x01(\tH.\x88\x01\x01\x12\x1a\n\rlabels_list_z\x18\x31 \x01(\tH/\x88\x01\x01\x12!\n\x14line_end_extension_x\x18\x32 \x01(\x01H0\x88\x01\x01\x12!\n\x14line_end_extension_y\x18\x33 \x01(\x01H1\x88\x01\x01\x12!\n\x14line_end_extension_z\x18\x34 \x01(\x01H2\x88\x01\x01\x12\x1d\n\x10line_end_label_x\x18\x35 \x01(\x08H3\x88\x01\x01\x12\x1d\n\x10line_end_label_y\x18\x36 \x01(\x08H4\x88\x01\x01\x12\x1d\n\x10line_end_label_z\x18\x37 \x01(\x08H5\x88\x01\x01\x12#\n\x16line_start_extension_x\x18\x38 \x01(\x01H6\x88\x01\x01\x12#\n\x16line_start_extension_y\x18\x39 \x01(\x01H7\x88\x01\x01\x12#\n\x16line_start_extension_z\x18: \x01(\x01H8\x88\x01\x01\x12\x1f\n\x12line_start_label_x\x18; \x01(\x08H9\x88\x01\x01\x12\x1f\n\x12line_start_label_y\x18< \x01(\x08H:\x88\x01\x01\x12\x1f\n\x12line_start_label_z\x18= \x01(\x08H;\x88\x01\x01\x12!\n\x14id_for_export_import\x18> \x01(\tH<\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18? \x01(\tH=\x88\x01\x01\x42\x07\n\x05_typeB\x1c\n\x1a_user_defined_name_enabledB\x07\n\x05_nameB\x0c\n\n_grid_typeB\x15\n\x13_locked_in_graphicsB\x12\n\x10_include_in_viewB\x0e\n\x0c_grid_pointsB\r\n\x0b_grid_linesB\t\n\x07_labelsB\r\n\x0b_dimensionsB\x1c\n\x1a_is_origin_defined_by_nodeB\x0e\n\x0c_origin_nodeB\x15\n\x13_origin_coordinatesB\x16\n\x14_origin_coordinate_xB\x16\n\x14_origin_coordinate_yB\x16\n\x14_origin_coordinate_zB\x0b\n\t_alpha_uxB\x0b\n\t_alpha_vyB\x0b\n\t_alpha_wzB\x14\n\x12_coordinate_systemB\x1d\n\x1b_rotation_coordinate_systemB\x19\n\x17_has_specific_directionB\x1a\n\x18_specific_direction_typeB\x10\n\x0e_axes_sequenceB\x18\n\x16_rotated_about_angle_xB\x18\n\x16_rotated_about_angle_yB\x18\n\x16_rotated_about_angle_zB\x18\n\x16_rotated_about_angle_1B\x18\n\x16_rotated_about_angle_2B\x18\n\x16_rotated_about_angle_3B\"\n _directed_to_node_direction_nodeB\x1e\n\x1c_directed_to_node_plane_nodeB\x1e\n\x1c_directed_to_node_first_axisB\x1f\n\x1d_directed_to_node_second_axisB#\n!_parallel_to_two_nodes_first_nodeB$\n\"_parallel_to_two_nodes_second_nodeB#\n!_parallel_to_two_nodes_plane_nodeB#\n!_parallel_to_two_nodes_first_axisB$\n\"_parallel_to_two_nodes_second_axisB\x13\n\x11_parallel_to_lineB\x15\n\x13_parallel_to_memberB\n\n\x08_commentB\x15\n\x13_coordinates_list_xB\x15\n\x13_coordinates_list_yB\x15\n\x13_coordinates_list_zB\x10\n\x0e_labels_list_xB\x10\n\x0e_labels_list_yB\x10\n\x0e_labels_list_zB\x17\n\x15_line_end_extension_xB\x17\n\x15_line_end_extension_yB\x17\n\x15_line_end_extension_zB\x13\n\x11_line_end_label_xB\x13\n\x11_line_end_label_yB\x13\n\x11_line_end_label_zB\x19\n\x17_line_start_extension_xB\x19\n\x17_line_start_extension_yB\x19\n\x17_line_start_extension_zB\x15\n\x13_line_start_label_xB\x15\n\x13_line_start_label_yB\x15\n\x13_line_start_label_zB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_import*S\n\x10\x42uildingGridType\x12\x1e\n\x1a\x42UILDING_GRID_TYPE_UNKNOWN\x10\x00\x12\x1f\n\x1b\x42UILDING_GRID_TYPE_STANDARD\x10\x01*\xb3\x01\n\x14\x42uildingGridGridType\x12%\n!BUILDING_GRID_GRID_TYPE_CARTESIAN\x10\x00\x12\'\n#BUILDING_GRID_GRID_TYPE_CYLINDRICAL\x10\x02\x12$\n BUILDING_GRID_GRID_TYPE_INCLINED\x10\x01\x12%\n!BUILDING_GRID_GRID_TYPE_SPHERICAL\x10\x03*\xe6\x02\n!BuildingGridSpecificDirectionType\x12>\n:BUILDING_GRID_SPECIFIC_DIRECTION_TYPE_ROTATED_VIA_3_ANGLES\x10\x00\x12:\n6BUILDING_GRID_SPECIFIC_DIRECTION_TYPE_DIRECTED_TO_NODE\x10\x01\x12@\n<BUILDING_GRID_SPECIFIC_DIRECTION_TYPE_PARALLEL_TO_CS_OF_LINE\x10\x03\x12\x42\n>BUILDING_GRID_SPECIFIC_DIRECTION_TYPE_PARALLEL_TO_CS_OF_MEMBER\x10\x04\x12?\n;BUILDING_GRID_SPECIFIC_DIRECTION_TYPE_PARALLEL_TO_TWO_NODES\x10\x02*\xf8\x01\n\x18\x42uildingGridAxesSequence\x12#\n\x1f\x42UILDING_GRID_AXES_SEQUENCE_XYZ\x10\x00\x12#\n\x1f\x42UILDING_GRID_AXES_SEQUENCE_XZY\x10\x01\x12#\n\x1f\x42UILDING_GRID_AXES_SEQUENCE_YXZ\x10\x02\x12#\n\x1f\x42UILDING_GRID_AXES_SEQUENCE_YZX\x10\x03\x12#\n\x1f\x42UILDING_GRID_AXES_SEQUENCE_ZXY\x10\x04\x12#\n\x1f\x42UILDING_GRID_AXES_SEQUENCE_ZYX\x10\x05*\xb8\x01\n#BuildingGridDirectedToNodeFirstAxis\x12/\n+BUILDING_GRID_DIRECTED_TO_NODE_FIRST_AXIS_X\x10\x00\x12/\n+BUILDING_GRID_DIRECTED_TO_NODE_FIRST_AXIS_Y\x10\x01\x12/\n+BUILDING_GRID_DIRECTED_TO_NODE_FIRST_AXIS_Z\x10\x02*\xbc\x01\n$BuildingGridDirectedToNodeSecondAxis\x12\x30\n,BUILDING_GRID_DIRECTED_TO_NODE_SECOND_AXIS_X\x10\x00\x12\x30\n,BUILDING_GRID_DIRECTED_TO_NODE_SECOND_AXIS_Y\x10\x01\x12\x30\n,BUILDING_GRID_DIRECTED_TO_NODE_SECOND_AXIS_Z\x10\x02*\xcb\x01\n\'BuildingGridParallelToTwoNodesFirstAxis\x12\x34\n0BUILDING_GRID_PARALLEL_TO_TWO_NODES_FIRST_AXIS_X\x10\x00\x12\x34\n0BUILDING_GRID_PARALLEL_TO_TWO_NODES_FIRST_AXIS_Y\x10\x01\x12\x34\n0BUILDING_GRID_PARALLEL_TO_TWO_NODES_FIRST_AXIS_Z\x10\x02*\xcf\x01\n(BuildingGridParallelToTwoNodesSecondAxis\x12\x35\n1BUILDING_GRID_PARALLEL_TO_TWO_NODES_SECOND_AXIS_X\x10\x00\x12\x35\n1BUILDING_GRID_PARALLEL_TO_TWO_NODES_SECOND_AXIS_Y\x10\x01\x12\x35\n1BUILDING_GRID_PARALLEL_TO_TWO_NODES_SECOND_AXIS_Z\x10\x02\x62\x06proto3')
29
+
30
+ _globals = globals()
31
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
32
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.guide_objects.building_grid_pb2', _globals)
33
+ if not _descriptor._USE_C_DESCRIPTORS:
34
+ DESCRIPTOR._loaded_options = None
35
+ _globals['_BUILDINGGRIDTYPE']._serialized_start=4235
36
+ _globals['_BUILDINGGRIDTYPE']._serialized_end=4318
37
+ _globals['_BUILDINGGRIDGRIDTYPE']._serialized_start=4321
38
+ _globals['_BUILDINGGRIDGRIDTYPE']._serialized_end=4500
39
+ _globals['_BUILDINGGRIDSPECIFICDIRECTIONTYPE']._serialized_start=4503
40
+ _globals['_BUILDINGGRIDSPECIFICDIRECTIONTYPE']._serialized_end=4861
41
+ _globals['_BUILDINGGRIDAXESSEQUENCE']._serialized_start=4864
42
+ _globals['_BUILDINGGRIDAXESSEQUENCE']._serialized_end=5112
43
+ _globals['_BUILDINGGRIDDIRECTEDTONODEFIRSTAXIS']._serialized_start=5115
44
+ _globals['_BUILDINGGRIDDIRECTEDTONODEFIRSTAXIS']._serialized_end=5299
45
+ _globals['_BUILDINGGRIDDIRECTEDTONODESECONDAXIS']._serialized_start=5302
46
+ _globals['_BUILDINGGRIDDIRECTEDTONODESECONDAXIS']._serialized_end=5490
47
+ _globals['_BUILDINGGRIDPARALLELTOTWONODESFIRSTAXIS']._serialized_start=5493
48
+ _globals['_BUILDINGGRIDPARALLELTOTWONODESFIRSTAXIS']._serialized_end=5696
49
+ _globals['_BUILDINGGRIDPARALLELTOTWONODESSECONDAXIS']._serialized_start=5699
50
+ _globals['_BUILDINGGRIDPARALLELTOTWONODESSECONDAXIS']._serialized_end=5906
51
+ _globals['_BUILDINGGRID']._serialized_start=117
52
+ _globals['_BUILDINGGRID']._serialized_end=4233
53
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,219 @@
1
+ from dlubal.api.common import common_pb2 as _common_pb2
2
+ from google.protobuf.internal import enum_type_wrapper as _enum_type_wrapper
3
+ from google.protobuf import descriptor as _descriptor
4
+ from google.protobuf import message as _message
5
+ from typing import ClassVar as _ClassVar, Mapping as _Mapping, Optional as _Optional, Union as _Union
6
+
7
+ DESCRIPTOR: _descriptor.FileDescriptor
8
+
9
+ class BuildingGridType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
10
+ __slots__ = ()
11
+ BUILDING_GRID_TYPE_UNKNOWN: _ClassVar[BuildingGridType]
12
+ BUILDING_GRID_TYPE_STANDARD: _ClassVar[BuildingGridType]
13
+
14
+ class BuildingGridGridType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
15
+ __slots__ = ()
16
+ BUILDING_GRID_GRID_TYPE_CARTESIAN: _ClassVar[BuildingGridGridType]
17
+ BUILDING_GRID_GRID_TYPE_CYLINDRICAL: _ClassVar[BuildingGridGridType]
18
+ BUILDING_GRID_GRID_TYPE_INCLINED: _ClassVar[BuildingGridGridType]
19
+ BUILDING_GRID_GRID_TYPE_SPHERICAL: _ClassVar[BuildingGridGridType]
20
+
21
+ class BuildingGridSpecificDirectionType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
22
+ __slots__ = ()
23
+ BUILDING_GRID_SPECIFIC_DIRECTION_TYPE_ROTATED_VIA_3_ANGLES: _ClassVar[BuildingGridSpecificDirectionType]
24
+ BUILDING_GRID_SPECIFIC_DIRECTION_TYPE_DIRECTED_TO_NODE: _ClassVar[BuildingGridSpecificDirectionType]
25
+ BUILDING_GRID_SPECIFIC_DIRECTION_TYPE_PARALLEL_TO_CS_OF_LINE: _ClassVar[BuildingGridSpecificDirectionType]
26
+ BUILDING_GRID_SPECIFIC_DIRECTION_TYPE_PARALLEL_TO_CS_OF_MEMBER: _ClassVar[BuildingGridSpecificDirectionType]
27
+ BUILDING_GRID_SPECIFIC_DIRECTION_TYPE_PARALLEL_TO_TWO_NODES: _ClassVar[BuildingGridSpecificDirectionType]
28
+
29
+ class BuildingGridAxesSequence(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
30
+ __slots__ = ()
31
+ BUILDING_GRID_AXES_SEQUENCE_XYZ: _ClassVar[BuildingGridAxesSequence]
32
+ BUILDING_GRID_AXES_SEQUENCE_XZY: _ClassVar[BuildingGridAxesSequence]
33
+ BUILDING_GRID_AXES_SEQUENCE_YXZ: _ClassVar[BuildingGridAxesSequence]
34
+ BUILDING_GRID_AXES_SEQUENCE_YZX: _ClassVar[BuildingGridAxesSequence]
35
+ BUILDING_GRID_AXES_SEQUENCE_ZXY: _ClassVar[BuildingGridAxesSequence]
36
+ BUILDING_GRID_AXES_SEQUENCE_ZYX: _ClassVar[BuildingGridAxesSequence]
37
+
38
+ class BuildingGridDirectedToNodeFirstAxis(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
39
+ __slots__ = ()
40
+ BUILDING_GRID_DIRECTED_TO_NODE_FIRST_AXIS_X: _ClassVar[BuildingGridDirectedToNodeFirstAxis]
41
+ BUILDING_GRID_DIRECTED_TO_NODE_FIRST_AXIS_Y: _ClassVar[BuildingGridDirectedToNodeFirstAxis]
42
+ BUILDING_GRID_DIRECTED_TO_NODE_FIRST_AXIS_Z: _ClassVar[BuildingGridDirectedToNodeFirstAxis]
43
+
44
+ class BuildingGridDirectedToNodeSecondAxis(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
45
+ __slots__ = ()
46
+ BUILDING_GRID_DIRECTED_TO_NODE_SECOND_AXIS_X: _ClassVar[BuildingGridDirectedToNodeSecondAxis]
47
+ BUILDING_GRID_DIRECTED_TO_NODE_SECOND_AXIS_Y: _ClassVar[BuildingGridDirectedToNodeSecondAxis]
48
+ BUILDING_GRID_DIRECTED_TO_NODE_SECOND_AXIS_Z: _ClassVar[BuildingGridDirectedToNodeSecondAxis]
49
+
50
+ class BuildingGridParallelToTwoNodesFirstAxis(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
51
+ __slots__ = ()
52
+ BUILDING_GRID_PARALLEL_TO_TWO_NODES_FIRST_AXIS_X: _ClassVar[BuildingGridParallelToTwoNodesFirstAxis]
53
+ BUILDING_GRID_PARALLEL_TO_TWO_NODES_FIRST_AXIS_Y: _ClassVar[BuildingGridParallelToTwoNodesFirstAxis]
54
+ BUILDING_GRID_PARALLEL_TO_TWO_NODES_FIRST_AXIS_Z: _ClassVar[BuildingGridParallelToTwoNodesFirstAxis]
55
+
56
+ class BuildingGridParallelToTwoNodesSecondAxis(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
57
+ __slots__ = ()
58
+ BUILDING_GRID_PARALLEL_TO_TWO_NODES_SECOND_AXIS_X: _ClassVar[BuildingGridParallelToTwoNodesSecondAxis]
59
+ BUILDING_GRID_PARALLEL_TO_TWO_NODES_SECOND_AXIS_Y: _ClassVar[BuildingGridParallelToTwoNodesSecondAxis]
60
+ BUILDING_GRID_PARALLEL_TO_TWO_NODES_SECOND_AXIS_Z: _ClassVar[BuildingGridParallelToTwoNodesSecondAxis]
61
+ BUILDING_GRID_TYPE_UNKNOWN: BuildingGridType
62
+ BUILDING_GRID_TYPE_STANDARD: BuildingGridType
63
+ BUILDING_GRID_GRID_TYPE_CARTESIAN: BuildingGridGridType
64
+ BUILDING_GRID_GRID_TYPE_CYLINDRICAL: BuildingGridGridType
65
+ BUILDING_GRID_GRID_TYPE_INCLINED: BuildingGridGridType
66
+ BUILDING_GRID_GRID_TYPE_SPHERICAL: BuildingGridGridType
67
+ BUILDING_GRID_SPECIFIC_DIRECTION_TYPE_ROTATED_VIA_3_ANGLES: BuildingGridSpecificDirectionType
68
+ BUILDING_GRID_SPECIFIC_DIRECTION_TYPE_DIRECTED_TO_NODE: BuildingGridSpecificDirectionType
69
+ BUILDING_GRID_SPECIFIC_DIRECTION_TYPE_PARALLEL_TO_CS_OF_LINE: BuildingGridSpecificDirectionType
70
+ BUILDING_GRID_SPECIFIC_DIRECTION_TYPE_PARALLEL_TO_CS_OF_MEMBER: BuildingGridSpecificDirectionType
71
+ BUILDING_GRID_SPECIFIC_DIRECTION_TYPE_PARALLEL_TO_TWO_NODES: BuildingGridSpecificDirectionType
72
+ BUILDING_GRID_AXES_SEQUENCE_XYZ: BuildingGridAxesSequence
73
+ BUILDING_GRID_AXES_SEQUENCE_XZY: BuildingGridAxesSequence
74
+ BUILDING_GRID_AXES_SEQUENCE_YXZ: BuildingGridAxesSequence
75
+ BUILDING_GRID_AXES_SEQUENCE_YZX: BuildingGridAxesSequence
76
+ BUILDING_GRID_AXES_SEQUENCE_ZXY: BuildingGridAxesSequence
77
+ BUILDING_GRID_AXES_SEQUENCE_ZYX: BuildingGridAxesSequence
78
+ BUILDING_GRID_DIRECTED_TO_NODE_FIRST_AXIS_X: BuildingGridDirectedToNodeFirstAxis
79
+ BUILDING_GRID_DIRECTED_TO_NODE_FIRST_AXIS_Y: BuildingGridDirectedToNodeFirstAxis
80
+ BUILDING_GRID_DIRECTED_TO_NODE_FIRST_AXIS_Z: BuildingGridDirectedToNodeFirstAxis
81
+ BUILDING_GRID_DIRECTED_TO_NODE_SECOND_AXIS_X: BuildingGridDirectedToNodeSecondAxis
82
+ BUILDING_GRID_DIRECTED_TO_NODE_SECOND_AXIS_Y: BuildingGridDirectedToNodeSecondAxis
83
+ BUILDING_GRID_DIRECTED_TO_NODE_SECOND_AXIS_Z: BuildingGridDirectedToNodeSecondAxis
84
+ BUILDING_GRID_PARALLEL_TO_TWO_NODES_FIRST_AXIS_X: BuildingGridParallelToTwoNodesFirstAxis
85
+ BUILDING_GRID_PARALLEL_TO_TWO_NODES_FIRST_AXIS_Y: BuildingGridParallelToTwoNodesFirstAxis
86
+ BUILDING_GRID_PARALLEL_TO_TWO_NODES_FIRST_AXIS_Z: BuildingGridParallelToTwoNodesFirstAxis
87
+ BUILDING_GRID_PARALLEL_TO_TWO_NODES_SECOND_AXIS_X: BuildingGridParallelToTwoNodesSecondAxis
88
+ BUILDING_GRID_PARALLEL_TO_TWO_NODES_SECOND_AXIS_Y: BuildingGridParallelToTwoNodesSecondAxis
89
+ BUILDING_GRID_PARALLEL_TO_TWO_NODES_SECOND_AXIS_Z: BuildingGridParallelToTwoNodesSecondAxis
90
+
91
+ class BuildingGrid(_message.Message):
92
+ __slots__ = ("no", "type", "user_defined_name_enabled", "name", "grid_type", "locked_in_graphics", "include_in_view", "grid_points", "grid_lines", "labels", "dimensions", "is_origin_defined_by_node", "origin_node", "origin_coordinates", "origin_coordinate_x", "origin_coordinate_y", "origin_coordinate_z", "alpha_ux", "alpha_vy", "alpha_wz", "coordinate_system", "rotation_coordinate_system", "has_specific_direction", "specific_direction_type", "axes_sequence", "rotated_about_angle_x", "rotated_about_angle_y", "rotated_about_angle_z", "rotated_about_angle_1", "rotated_about_angle_2", "rotated_about_angle_3", "directed_to_node_direction_node", "directed_to_node_plane_node", "directed_to_node_first_axis", "directed_to_node_second_axis", "parallel_to_two_nodes_first_node", "parallel_to_two_nodes_second_node", "parallel_to_two_nodes_plane_node", "parallel_to_two_nodes_first_axis", "parallel_to_two_nodes_second_axis", "parallel_to_line", "parallel_to_member", "comment", "coordinates_list_x", "coordinates_list_y", "coordinates_list_z", "labels_list_x", "labels_list_y", "labels_list_z", "line_end_extension_x", "line_end_extension_y", "line_end_extension_z", "line_end_label_x", "line_end_label_y", "line_end_label_z", "line_start_extension_x", "line_start_extension_y", "line_start_extension_z", "line_start_label_x", "line_start_label_y", "line_start_label_z", "id_for_export_import", "metadata_for_export_import")
93
+ NO_FIELD_NUMBER: _ClassVar[int]
94
+ TYPE_FIELD_NUMBER: _ClassVar[int]
95
+ USER_DEFINED_NAME_ENABLED_FIELD_NUMBER: _ClassVar[int]
96
+ NAME_FIELD_NUMBER: _ClassVar[int]
97
+ GRID_TYPE_FIELD_NUMBER: _ClassVar[int]
98
+ LOCKED_IN_GRAPHICS_FIELD_NUMBER: _ClassVar[int]
99
+ INCLUDE_IN_VIEW_FIELD_NUMBER: _ClassVar[int]
100
+ GRID_POINTS_FIELD_NUMBER: _ClassVar[int]
101
+ GRID_LINES_FIELD_NUMBER: _ClassVar[int]
102
+ LABELS_FIELD_NUMBER: _ClassVar[int]
103
+ DIMENSIONS_FIELD_NUMBER: _ClassVar[int]
104
+ IS_ORIGIN_DEFINED_BY_NODE_FIELD_NUMBER: _ClassVar[int]
105
+ ORIGIN_NODE_FIELD_NUMBER: _ClassVar[int]
106
+ ORIGIN_COORDINATES_FIELD_NUMBER: _ClassVar[int]
107
+ ORIGIN_COORDINATE_X_FIELD_NUMBER: _ClassVar[int]
108
+ ORIGIN_COORDINATE_Y_FIELD_NUMBER: _ClassVar[int]
109
+ ORIGIN_COORDINATE_Z_FIELD_NUMBER: _ClassVar[int]
110
+ ALPHA_UX_FIELD_NUMBER: _ClassVar[int]
111
+ ALPHA_VY_FIELD_NUMBER: _ClassVar[int]
112
+ ALPHA_WZ_FIELD_NUMBER: _ClassVar[int]
113
+ COORDINATE_SYSTEM_FIELD_NUMBER: _ClassVar[int]
114
+ ROTATION_COORDINATE_SYSTEM_FIELD_NUMBER: _ClassVar[int]
115
+ HAS_SPECIFIC_DIRECTION_FIELD_NUMBER: _ClassVar[int]
116
+ SPECIFIC_DIRECTION_TYPE_FIELD_NUMBER: _ClassVar[int]
117
+ AXES_SEQUENCE_FIELD_NUMBER: _ClassVar[int]
118
+ ROTATED_ABOUT_ANGLE_X_FIELD_NUMBER: _ClassVar[int]
119
+ ROTATED_ABOUT_ANGLE_Y_FIELD_NUMBER: _ClassVar[int]
120
+ ROTATED_ABOUT_ANGLE_Z_FIELD_NUMBER: _ClassVar[int]
121
+ ROTATED_ABOUT_ANGLE_1_FIELD_NUMBER: _ClassVar[int]
122
+ ROTATED_ABOUT_ANGLE_2_FIELD_NUMBER: _ClassVar[int]
123
+ ROTATED_ABOUT_ANGLE_3_FIELD_NUMBER: _ClassVar[int]
124
+ DIRECTED_TO_NODE_DIRECTION_NODE_FIELD_NUMBER: _ClassVar[int]
125
+ DIRECTED_TO_NODE_PLANE_NODE_FIELD_NUMBER: _ClassVar[int]
126
+ DIRECTED_TO_NODE_FIRST_AXIS_FIELD_NUMBER: _ClassVar[int]
127
+ DIRECTED_TO_NODE_SECOND_AXIS_FIELD_NUMBER: _ClassVar[int]
128
+ PARALLEL_TO_TWO_NODES_FIRST_NODE_FIELD_NUMBER: _ClassVar[int]
129
+ PARALLEL_TO_TWO_NODES_SECOND_NODE_FIELD_NUMBER: _ClassVar[int]
130
+ PARALLEL_TO_TWO_NODES_PLANE_NODE_FIELD_NUMBER: _ClassVar[int]
131
+ PARALLEL_TO_TWO_NODES_FIRST_AXIS_FIELD_NUMBER: _ClassVar[int]
132
+ PARALLEL_TO_TWO_NODES_SECOND_AXIS_FIELD_NUMBER: _ClassVar[int]
133
+ PARALLEL_TO_LINE_FIELD_NUMBER: _ClassVar[int]
134
+ PARALLEL_TO_MEMBER_FIELD_NUMBER: _ClassVar[int]
135
+ COMMENT_FIELD_NUMBER: _ClassVar[int]
136
+ COORDINATES_LIST_X_FIELD_NUMBER: _ClassVar[int]
137
+ COORDINATES_LIST_Y_FIELD_NUMBER: _ClassVar[int]
138
+ COORDINATES_LIST_Z_FIELD_NUMBER: _ClassVar[int]
139
+ LABELS_LIST_X_FIELD_NUMBER: _ClassVar[int]
140
+ LABELS_LIST_Y_FIELD_NUMBER: _ClassVar[int]
141
+ LABELS_LIST_Z_FIELD_NUMBER: _ClassVar[int]
142
+ LINE_END_EXTENSION_X_FIELD_NUMBER: _ClassVar[int]
143
+ LINE_END_EXTENSION_Y_FIELD_NUMBER: _ClassVar[int]
144
+ LINE_END_EXTENSION_Z_FIELD_NUMBER: _ClassVar[int]
145
+ LINE_END_LABEL_X_FIELD_NUMBER: _ClassVar[int]
146
+ LINE_END_LABEL_Y_FIELD_NUMBER: _ClassVar[int]
147
+ LINE_END_LABEL_Z_FIELD_NUMBER: _ClassVar[int]
148
+ LINE_START_EXTENSION_X_FIELD_NUMBER: _ClassVar[int]
149
+ LINE_START_EXTENSION_Y_FIELD_NUMBER: _ClassVar[int]
150
+ LINE_START_EXTENSION_Z_FIELD_NUMBER: _ClassVar[int]
151
+ LINE_START_LABEL_X_FIELD_NUMBER: _ClassVar[int]
152
+ LINE_START_LABEL_Y_FIELD_NUMBER: _ClassVar[int]
153
+ LINE_START_LABEL_Z_FIELD_NUMBER: _ClassVar[int]
154
+ ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
155
+ METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
156
+ no: int
157
+ type: BuildingGridType
158
+ user_defined_name_enabled: bool
159
+ name: str
160
+ grid_type: BuildingGridGridType
161
+ locked_in_graphics: bool
162
+ include_in_view: bool
163
+ grid_points: bool
164
+ grid_lines: bool
165
+ labels: bool
166
+ dimensions: bool
167
+ is_origin_defined_by_node: bool
168
+ origin_node: int
169
+ origin_coordinates: _common_pb2.Vector3d
170
+ origin_coordinate_x: float
171
+ origin_coordinate_y: float
172
+ origin_coordinate_z: float
173
+ alpha_ux: float
174
+ alpha_vy: float
175
+ alpha_wz: float
176
+ coordinate_system: int
177
+ rotation_coordinate_system: int
178
+ has_specific_direction: bool
179
+ specific_direction_type: BuildingGridSpecificDirectionType
180
+ axes_sequence: BuildingGridAxesSequence
181
+ rotated_about_angle_x: float
182
+ rotated_about_angle_y: float
183
+ rotated_about_angle_z: float
184
+ rotated_about_angle_1: float
185
+ rotated_about_angle_2: float
186
+ rotated_about_angle_3: float
187
+ directed_to_node_direction_node: int
188
+ directed_to_node_plane_node: int
189
+ directed_to_node_first_axis: BuildingGridDirectedToNodeFirstAxis
190
+ directed_to_node_second_axis: BuildingGridDirectedToNodeSecondAxis
191
+ parallel_to_two_nodes_first_node: int
192
+ parallel_to_two_nodes_second_node: int
193
+ parallel_to_two_nodes_plane_node: int
194
+ parallel_to_two_nodes_first_axis: BuildingGridParallelToTwoNodesFirstAxis
195
+ parallel_to_two_nodes_second_axis: BuildingGridParallelToTwoNodesSecondAxis
196
+ parallel_to_line: int
197
+ parallel_to_member: int
198
+ comment: str
199
+ coordinates_list_x: str
200
+ coordinates_list_y: str
201
+ coordinates_list_z: str
202
+ labels_list_x: str
203
+ labels_list_y: str
204
+ labels_list_z: str
205
+ line_end_extension_x: float
206
+ line_end_extension_y: float
207
+ line_end_extension_z: float
208
+ line_end_label_x: bool
209
+ line_end_label_y: bool
210
+ line_end_label_z: bool
211
+ line_start_extension_x: float
212
+ line_start_extension_y: float
213
+ line_start_extension_z: float
214
+ line_start_label_x: bool
215
+ line_start_label_y: bool
216
+ line_start_label_z: bool
217
+ id_for_export_import: str
218
+ metadata_for_export_import: str
219
+ def __init__(self, no: _Optional[int] = ..., type: _Optional[_Union[BuildingGridType, str]] = ..., user_defined_name_enabled: bool = ..., name: _Optional[str] = ..., grid_type: _Optional[_Union[BuildingGridGridType, str]] = ..., locked_in_graphics: bool = ..., include_in_view: bool = ..., grid_points: bool = ..., grid_lines: bool = ..., labels: bool = ..., dimensions: bool = ..., is_origin_defined_by_node: bool = ..., origin_node: _Optional[int] = ..., origin_coordinates: _Optional[_Union[_common_pb2.Vector3d, _Mapping]] = ..., origin_coordinate_x: _Optional[float] = ..., origin_coordinate_y: _Optional[float] = ..., origin_coordinate_z: _Optional[float] = ..., alpha_ux: _Optional[float] = ..., alpha_vy: _Optional[float] = ..., alpha_wz: _Optional[float] = ..., coordinate_system: _Optional[int] = ..., rotation_coordinate_system: _Optional[int] = ..., has_specific_direction: bool = ..., specific_direction_type: _Optional[_Union[BuildingGridSpecificDirectionType, str]] = ..., axes_sequence: _Optional[_Union[BuildingGridAxesSequence, str]] = ..., rotated_about_angle_x: _Optional[float] = ..., rotated_about_angle_y: _Optional[float] = ..., rotated_about_angle_z: _Optional[float] = ..., rotated_about_angle_1: _Optional[float] = ..., rotated_about_angle_2: _Optional[float] = ..., rotated_about_angle_3: _Optional[float] = ..., directed_to_node_direction_node: _Optional[int] = ..., directed_to_node_plane_node: _Optional[int] = ..., directed_to_node_first_axis: _Optional[_Union[BuildingGridDirectedToNodeFirstAxis, str]] = ..., directed_to_node_second_axis: _Optional[_Union[BuildingGridDirectedToNodeSecondAxis, str]] = ..., parallel_to_two_nodes_first_node: _Optional[int] = ..., parallel_to_two_nodes_second_node: _Optional[int] = ..., parallel_to_two_nodes_plane_node: _Optional[int] = ..., parallel_to_two_nodes_first_axis: _Optional[_Union[BuildingGridParallelToTwoNodesFirstAxis, str]] = ..., parallel_to_two_nodes_second_axis: _Optional[_Union[BuildingGridParallelToTwoNodesSecondAxis, str]] = ..., parallel_to_line: _Optional[int] = ..., parallel_to_member: _Optional[int] = ..., comment: _Optional[str] = ..., coordinates_list_x: _Optional[str] = ..., coordinates_list_y: _Optional[str] = ..., coordinates_list_z: _Optional[str] = ..., labels_list_x: _Optional[str] = ..., labels_list_y: _Optional[str] = ..., labels_list_z: _Optional[str] = ..., line_end_extension_x: _Optional[float] = ..., line_end_extension_y: _Optional[float] = ..., line_end_extension_z: _Optional[float] = ..., line_end_label_x: bool = ..., line_end_label_y: bool = ..., line_end_label_z: bool = ..., line_start_extension_x: _Optional[float] = ..., line_start_extension_y: _Optional[float] = ..., line_start_extension_z: _Optional[float] = ..., line_start_label_x: bool = ..., line_start_label_y: bool = ..., line_start_label_z: bool = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
@@ -0,0 +1,37 @@
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/guide_objects/clipping_box.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/guide_objects/clipping_box.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/guide_objects/clipping_box.proto\x12\x1d\x64lubal.api.rfem.guide_objects\x1a\x1e\x64lubal/api/common/common.proto\"\x9d\x06\n\x0b\x43lippingBox\x12\n\n\x02no\x18\x01 \x01(\x05\x12&\n\x19user_defined_name_enabled\x18\x02 \x01(\x08H\x00\x88\x01\x01\x12\x11\n\x04name\x18\x03 \x01(\tH\x01\x88\x01\x01\x12\x1e\n\x11\x63oordinate_system\x18\x04 \x01(\x05H\x02\x88\x01\x01\x12<\n\x12origin_coordinates\x18\x05 \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x03\x88\x01\x01\x12 \n\x13origin_coordinate_x\x18\x06 \x01(\x01H\x04\x88\x01\x01\x12 \n\x13origin_coordinate_y\x18\x07 \x01(\x01H\x05\x88\x01\x01\x12 \n\x13origin_coordinate_z\x18\x08 \x01(\x01H\x06\x88\x01\x01\x12\x34\n\ndimensions\x18\t \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x07\x88\x01\x01\x12\x18\n\x0b\x64imension_x\x18\n \x01(\x01H\x08\x88\x01\x01\x12\x18\n\x0b\x64imension_y\x18\x0b \x01(\x01H\t\x88\x01\x01\x12\x18\n\x0b\x64imension_z\x18\x0c \x01(\x01H\n\x88\x01\x01\x12\x14\n\x07\x63omment\x18\r \x01(\tH\x0b\x88\x01\x01\x12!\n\x14id_for_export_import\x18\x0e \x01(\tH\x0c\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\x0f \x01(\tH\r\x88\x01\x01\x42\x1c\n\x1a_user_defined_name_enabledB\x07\n\x05_nameB\x14\n\x12_coordinate_systemB\x15\n\x13_origin_coordinatesB\x16\n\x14_origin_coordinate_xB\x16\n\x14_origin_coordinate_yB\x16\n\x14_origin_coordinate_zB\r\n\x0b_dimensionsB\x0e\n\x0c_dimension_xB\x0e\n\x0c_dimension_yB\x0e\n\x0c_dimension_zB\n\n\x08_commentB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_importb\x06proto3')
29
+
30
+ _globals = globals()
31
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
32
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.guide_objects.clipping_box_pb2', _globals)
33
+ if not _descriptor._USE_C_DESCRIPTORS:
34
+ DESCRIPTOR._loaded_options = None
35
+ _globals['_CLIPPINGBOX']._serialized_start=116
36
+ _globals['_CLIPPINGBOX']._serialized_end=913
37
+ # @@protoc_insertion_point(module_scope)