dlubal.api 2.9.7.dev1__tar.gz → 2.9.9__tar.gz

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 (442) hide show
  1. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/PKG-INFO +2 -2
  2. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/README.md +1 -1
  3. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/common/table.py +1 -0
  4. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/application.py +138 -49
  5. dlubal_api-2.9.9/dlubal/api/rfem/application_pb2.py +82 -0
  6. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/application_pb2.pyi +10 -0
  7. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/application_pb2_grpc.py +49 -2
  8. dlubal_api-2.9.9/dlubal/api/rfem/base_data/terrain_pb2.py +42 -0
  9. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/base_data/terrain_pb2.pyi +23 -6
  10. dlubal_api-2.9.9/dlubal/api/rfem/building_model/building_story_pb2.py +54 -0
  11. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/building_model/building_story_pb2.pyi +5 -5
  12. dlubal_api-2.9.9/dlubal/api/rfem/building_model/deep_beam_pb2.py +43 -0
  13. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/building_model/deep_beam_pb2.pyi +29 -5
  14. dlubal_api-2.9.9/dlubal/api/rfem/building_model/shear_wall_pb2.py +43 -0
  15. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/building_model/shear_wall_pb2.pyi +25 -5
  16. dlubal_api-2.9.9/dlubal/api/rfem/calculation_diagrams/calculation_diagram_pb2.py +52 -0
  17. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/calculation_diagrams/calculation_diagram_pb2.pyi +25 -6
  18. dlubal_api-2.9.9/dlubal/api/rfem/construction_stages/construction_stage_pb2.py +68 -0
  19. dlubal_api-2.9.9/dlubal/api/rfem/construction_stages/construction_stage_pb2.pyi +359 -0
  20. dlubal_api-2.9.9/dlubal/api/rfem/dynamic_loads/accelerogram_pb2.py +42 -0
  21. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/dynamic_loads/accelerogram_pb2.pyi +25 -6
  22. dlubal_api-2.9.9/dlubal/api/rfem/dynamic_loads/response_spectrum_pb2.py +44 -0
  23. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/dynamic_loads/response_spectrum_pb2.pyi +27 -6
  24. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/geotechnical_analysis/borehole_pb2.py +8 -6
  25. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/geotechnical_analysis/borehole_pb2.pyi +25 -6
  26. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/global_parameters/global_parameter_pb2.py +4 -4
  27. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/global_parameters/global_parameter_pb2.pyi +2 -0
  28. dlubal_api-2.9.9/dlubal/api/rfem/guide_objects/dimension_pb2.py +73 -0
  29. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/guide_objects/dimension_pb2.pyi +136 -13
  30. dlubal_api-2.9.9/dlubal/api/rfem/imperfections/imperfection_case_pb2.py +56 -0
  31. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/imperfections/imperfection_case_pb2.pyi +58 -9
  32. dlubal_api-2.9.9/dlubal/api/rfem/load_wizards/wind_profile_pb2.py +46 -0
  33. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/load_wizards/wind_profile_pb2.pyi +25 -6
  34. dlubal_api-2.9.9/dlubal/api/rfem/load_wizards/wind_simulation_pb2.py +54 -0
  35. dlubal_api-2.9.9/dlubal/api/rfem/load_wizards/wind_simulation_pb2.pyi +154 -0
  36. dlubal_api-2.9.9/dlubal/api/rfem/loading/action_combination_pb2.py +48 -0
  37. dlubal_api-2.9.9/dlubal/api/rfem/loading/action_combination_pb2.pyi +159 -0
  38. dlubal_api-2.9.9/dlubal/api/rfem/loading/action_pb2.py +44 -0
  39. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/loading/action_pb2.pyi +21 -6
  40. dlubal_api-2.9.9/dlubal/api/rfem/loading/combination_wizard_pb2.py +44 -0
  41. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/loading/combination_wizard_pb2.pyi +32 -6
  42. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/loading/design_situation_pb2.py +6 -4
  43. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/loading/design_situation_pb2.pyi +19 -6
  44. dlubal_api-2.9.9/dlubal/api/rfem/loading/load_case_pb2.py +85 -0
  45. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/loading/load_case_pb2.pyi +99 -10
  46. dlubal_api-2.9.9/dlubal/api/rfem/loading/load_combination_pb2.py +58 -0
  47. dlubal_api-2.9.9/dlubal/api/rfem/loading/load_combination_pb2.pyi +292 -0
  48. dlubal_api-2.9.9/dlubal/api/rfem/loading/modal_analysis_settings_pb2.py +52 -0
  49. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/loading/modal_analysis_settings_pb2.pyi +54 -6
  50. dlubal_api-2.9.9/dlubal/api/rfem/loading/optimization_settings_pb2.py +44 -0
  51. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/loading/optimization_settings_pb2.pyi +29 -6
  52. dlubal_api-2.9.9/dlubal/api/rfem/loading/relationship_between_load_cases_pb2.py +44 -0
  53. dlubal_api-2.9.9/dlubal/api/rfem/loading/relationship_between_load_cases_pb2.pyi +68 -0
  54. dlubal_api-2.9.9/dlubal/api/rfem/loading/result_combination_pb2.py +52 -0
  55. dlubal_api-2.9.9/dlubal/api/rfem/loading/result_combination_pb2.pyi +215 -0
  56. dlubal_api-2.9.9/dlubal/api/rfem/loading/spectral_analysis_settings_pb2.py +46 -0
  57. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/loading/spectral_analysis_settings_pb2.pyi +2 -6
  58. dlubal_api-2.9.9/dlubal/api/rfem/loads/free_polygon_load_pb2.py +46 -0
  59. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/loads/free_polygon_load_pb2.pyi +21 -5
  60. dlubal_api-2.9.9/dlubal/api/rfem/loads/free_rectangular_load_pb2.py +53 -0
  61. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/loads/free_rectangular_load_pb2.pyi +45 -9
  62. dlubal_api-2.9.9/dlubal/api/rfem/loads/line_load_pb2.py +48 -0
  63. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/loads/line_load_pb2.pyi +23 -5
  64. dlubal_api-2.9.9/dlubal/api/rfem/loads/line_set_load_pb2.py +48 -0
  65. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/loads/line_set_load_pb2.pyi +23 -5
  66. dlubal_api-2.9.9/dlubal/api/rfem/loads/member_load_pb2.py +69 -0
  67. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/loads/member_load_pb2.pyi +31 -5
  68. dlubal_api-2.9.9/dlubal/api/rfem/loads/member_set_load_pb2.py +69 -0
  69. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/loads/member_set_load_pb2.pyi +31 -5
  70. dlubal_api-2.9.9/dlubal/api/rfem/loads/surface_load_pb2.py +59 -0
  71. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/loads/surface_load_pb2.pyi +25 -5
  72. dlubal_api-2.9.9/dlubal/api/rfem/loads/surface_set_load_pb2.py +59 -0
  73. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/loads/surface_set_load_pb2.pyi +25 -5
  74. dlubal_api-2.9.9/dlubal/api/rfem/object_type_pb2.py +36 -0
  75. dlubal_api-2.9.9/dlubal/api/rfem/packing.py +84 -0
  76. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/results/results_id_pb2.py +3 -3
  77. dlubal_api-2.9.9/dlubal/api/rfem/results/results_id_pb2.pyi +32 -0
  78. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/structure_advanced/line_release_pb2.py +8 -6
  79. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/structure_advanced/line_release_pb2.pyi +19 -5
  80. dlubal_api-2.9.9/dlubal/api/rfem/structure_advanced/structure_modification_pb2.py +78 -0
  81. dlubal_api-2.9.9/dlubal/api/rfem/structure_advanced/structure_modification_pb2.pyi +374 -0
  82. dlubal_api-2.9.9/dlubal/api/rfem/structure_advanced/surface_results_adjustment_pb2.py +61 -0
  83. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/structure_advanced/surface_results_adjustment_pb2.pyi +52 -15
  84. dlubal_api-2.9.9/dlubal/api/rfem/structure_core/line_pb2.py +63 -0
  85. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/structure_core/line_pb2.pyi +83 -17
  86. dlubal_api-2.9.9/dlubal/api/rfem/structure_core/material_pb2.py +142 -0
  87. dlubal_api-2.9.9/dlubal/api/rfem/structure_core/material_pb2.pyi +1532 -0
  88. dlubal_api-2.9.9/dlubal/api/rfem/structure_core/member_pb2.py +171 -0
  89. dlubal_api-2.9.9/dlubal/api/rfem/structure_core/member_pb2.pyi +1916 -0
  90. dlubal_api-2.9.9/dlubal/api/rfem/structure_core/member_representative_pb2.py +253 -0
  91. dlubal_api-2.9.9/dlubal/api/rfem/structure_core/member_representative_pb2.pyi +3175 -0
  92. dlubal_api-2.9.9/dlubal/api/rfem/structure_core/member_set_pb2.py +137 -0
  93. dlubal_api-2.9.9/dlubal/api/rfem/structure_core/member_set_pb2.pyi +1510 -0
  94. dlubal_api-2.9.9/dlubal/api/rfem/structure_core/member_set_representative_pb2.py +353 -0
  95. dlubal_api-2.9.9/dlubal/api/rfem/structure_core/member_set_representative_pb2.pyi +4681 -0
  96. dlubal_api-2.9.9/dlubal/api/rfem/structure_core/section_pb2.py +68 -0
  97. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/structure_core/section_pb2.pyi +27 -10
  98. dlubal_api-2.9.9/dlubal/api/rfem/structure_core/surface_pb2.py +69 -0
  99. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/structure_core/surface_pb2.pyi +22 -10
  100. dlubal_api-2.9.9/dlubal/api/rfem/structure_core/surface_set_pb2.py +49 -0
  101. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/structure_core/surface_set_pb2.pyi +17 -5
  102. dlubal_api-2.9.9/dlubal/api/rfem/structure_core/thickness_pb2.py +62 -0
  103. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/structure_core/thickness_pb2.pyi +66 -100
  104. dlubal_api-2.9.9/dlubal/api/rfem/types_for_aluminum_design/aluminum_effective_lengths_pb2.py +78 -0
  105. dlubal_api-2.9.9/dlubal/api/rfem/types_for_aluminum_design/aluminum_effective_lengths_pb2.pyi +348 -0
  106. dlubal_api-2.9.9/dlubal/api/rfem/types_for_aluminum_design/aluminum_member_local_section_reduction_pb2.py +46 -0
  107. dlubal_api-2.9.9/dlubal/api/rfem/types_for_aluminum_design/aluminum_member_local_section_reduction_pb2.pyi +114 -0
  108. dlubal_api-2.9.9/dlubal/api/rfem/types_for_aluminum_design/aluminum_member_transverse_weld_pb2.py +48 -0
  109. dlubal_api-2.9.9/dlubal/api/rfem/types_for_aluminum_design/aluminum_member_transverse_weld_pb2.pyi +107 -0
  110. dlubal_api-2.9.9/dlubal/api/rfem/types_for_concrete_design/concrete_effective_lengths_pb2.py +106 -0
  111. dlubal_api-2.9.9/dlubal/api/rfem/types_for_concrete_design/concrete_effective_lengths_pb2.pyi +530 -0
  112. dlubal_api-2.9.9/dlubal/api/rfem/types_for_concrete_design/punching_reinforcement_pb2.py +54 -0
  113. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/types_for_concrete_design/punching_reinforcement_pb2.pyi +21 -5
  114. dlubal_api-2.9.9/dlubal/api/rfem/types_for_concrete_design/surface_reinforcement_pb2.py +74 -0
  115. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/types_for_concrete_design/surface_reinforcement_pb2.pyi +21 -5
  116. dlubal_api-2.9.9/dlubal/api/rfem/types_for_lines/line_hinge_pb2.py +123 -0
  117. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/types_for_lines/line_hinge_pb2.pyi +203 -50
  118. dlubal_api-2.9.9/dlubal/api/rfem/types_for_lines/line_support_pb2.py +151 -0
  119. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/types_for_lines/line_support_pb2.pyi +229 -49
  120. dlubal_api-2.9.9/dlubal/api/rfem/types_for_members/member_eccentricity_pb2.py +49 -0
  121. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/types_for_members/member_eccentricity_pb2.pyi +4 -2
  122. dlubal_api-2.9.9/dlubal/api/rfem/types_for_members/member_hinge_pb2.py +195 -0
  123. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/types_for_members/member_hinge_pb2.pyi +401 -90
  124. dlubal_api-2.9.9/dlubal/api/rfem/types_for_members/member_openings_pb2.py +46 -0
  125. dlubal_api-2.9.9/dlubal/api/rfem/types_for_members/member_openings_pb2.pyi +98 -0
  126. dlubal_api-2.9.9/dlubal/api/rfem/types_for_members/member_result_intermediate_point_pb2.py +40 -0
  127. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/types_for_members/member_result_intermediate_point_pb2.pyi +19 -5
  128. dlubal_api-2.9.9/dlubal/api/rfem/types_for_members/member_rotational_restraint_pb2.py +50 -0
  129. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/types_for_members/member_rotational_restraint_pb2.pyi +25 -6
  130. dlubal_api-2.9.9/dlubal/api/rfem/types_for_members/member_spring_pb2.py +52 -0
  131. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/types_for_members/member_spring_pb2.pyi +23 -5
  132. dlubal_api-2.9.9/dlubal/api/rfem/types_for_members/member_transverse_stiffener_pb2.py +48 -0
  133. dlubal_api-2.9.9/dlubal/api/rfem/types_for_members/member_transverse_stiffener_pb2.pyi +149 -0
  134. dlubal_api-2.9.9/dlubal/api/rfem/types_for_nodes/nodal_support_pb2.py +201 -0
  135. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/types_for_nodes/nodal_support_pb2.pyi +302 -74
  136. dlubal_api-2.9.9/dlubal/api/rfem/types_for_special_objects/line_release_type_pb2.py +123 -0
  137. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/types_for_special_objects/line_release_type_pb2.pyi +182 -44
  138. dlubal_api-2.9.9/dlubal/api/rfem/types_for_special_objects/nodal_release_type_pb2.py +122 -0
  139. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/types_for_special_objects/nodal_release_type_pb2.pyi +137 -29
  140. dlubal_api-2.9.9/dlubal/api/rfem/types_for_special_objects/surface_release_type_pb2.py +81 -0
  141. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/types_for_special_objects/surface_release_type_pb2.pyi +115 -25
  142. dlubal_api-2.9.9/dlubal/api/rfem/types_for_steel_design/steel_boundary_conditions_pb2.py +50 -0
  143. dlubal_api-2.9.9/dlubal/api/rfem/types_for_steel_design/steel_boundary_conditions_pb2.pyi +194 -0
  144. dlubal_api-2.9.9/dlubal/api/rfem/types_for_steel_design/steel_effective_lengths_pb2.py +112 -0
  145. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/types_for_steel_design/steel_effective_lengths_pb2.pyi +223 -21
  146. dlubal_api-2.9.9/dlubal/api/rfem/types_for_steel_design/steel_member_local_section_reduction_pb2.py +46 -0
  147. dlubal_api-2.9.9/dlubal/api/rfem/types_for_steel_design/steel_member_local_section_reduction_pb2.pyi +114 -0
  148. dlubal_api-2.9.9/dlubal/api/rfem/types_for_timber_design/timber_effective_lengths_pb2.py +92 -0
  149. dlubal_api-2.9.9/dlubal/api/rfem/types_for_timber_design/timber_effective_lengths_pb2.pyi +441 -0
  150. dlubal_api-2.9.9/dlubal/api/rfem/types_for_timber_design/timber_member_local_section_reduction_pb2.py +48 -0
  151. dlubal_api-2.9.9/dlubal/api/rfem/types_for_timber_design/timber_member_local_section_reduction_pb2.pyi +127 -0
  152. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal.api.egg-info/PKG-INFO +2 -2
  153. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/setup.py +1 -1
  154. dlubal_api-2.9.7.dev1/dlubal/api/rfem/application_pb2.py +0 -80
  155. dlubal_api-2.9.7.dev1/dlubal/api/rfem/base_data/terrain_pb2.py +0 -40
  156. dlubal_api-2.9.7.dev1/dlubal/api/rfem/building_model/building_story_pb2.py +0 -54
  157. dlubal_api-2.9.7.dev1/dlubal/api/rfem/building_model/deep_beam_pb2.py +0 -41
  158. dlubal_api-2.9.7.dev1/dlubal/api/rfem/building_model/shear_wall_pb2.py +0 -41
  159. dlubal_api-2.9.7.dev1/dlubal/api/rfem/calculation_diagrams/calculation_diagram_pb2.py +0 -50
  160. dlubal_api-2.9.7.dev1/dlubal/api/rfem/construction_stages/construction_stage_pb2.py +0 -46
  161. dlubal_api-2.9.7.dev1/dlubal/api/rfem/construction_stages/construction_stage_pb2.pyi +0 -176
  162. dlubal_api-2.9.7.dev1/dlubal/api/rfem/dynamic_loads/accelerogram_pb2.py +0 -40
  163. dlubal_api-2.9.7.dev1/dlubal/api/rfem/dynamic_loads/response_spectrum_pb2.py +0 -42
  164. dlubal_api-2.9.7.dev1/dlubal/api/rfem/guide_objects/dimension_pb2.py +0 -61
  165. dlubal_api-2.9.7.dev1/dlubal/api/rfem/imperfections/imperfection_case_pb2.py +0 -50
  166. dlubal_api-2.9.7.dev1/dlubal/api/rfem/load_wizards/wind_profile_pb2.py +0 -44
  167. dlubal_api-2.9.7.dev1/dlubal/api/rfem/load_wizards/wind_simulation_pb2.py +0 -46
  168. dlubal_api-2.9.7.dev1/dlubal/api/rfem/load_wizards/wind_simulation_pb2.pyi +0 -84
  169. dlubal_api-2.9.7.dev1/dlubal/api/rfem/loading/action_combination_pb2.py +0 -40
  170. dlubal_api-2.9.7.dev1/dlubal/api/rfem/loading/action_combination_pb2.pyi +0 -58
  171. dlubal_api-2.9.7.dev1/dlubal/api/rfem/loading/action_pb2.py +0 -42
  172. dlubal_api-2.9.7.dev1/dlubal/api/rfem/loading/combination_wizard_pb2.py +0 -40
  173. dlubal_api-2.9.7.dev1/dlubal/api/rfem/loading/load_case_pb2.py +0 -77
  174. dlubal_api-2.9.7.dev1/dlubal/api/rfem/loading/load_combination_pb2.py +0 -48
  175. dlubal_api-2.9.7.dev1/dlubal/api/rfem/loading/load_combination_pb2.pyi +0 -152
  176. dlubal_api-2.9.7.dev1/dlubal/api/rfem/loading/modal_analysis_settings_pb2.py +0 -48
  177. dlubal_api-2.9.7.dev1/dlubal/api/rfem/loading/optimization_settings_pb2.py +0 -42
  178. dlubal_api-2.9.7.dev1/dlubal/api/rfem/loading/relationship_between_load_cases_pb2.py +0 -40
  179. dlubal_api-2.9.7.dev1/dlubal/api/rfem/loading/relationship_between_load_cases_pb2.pyi +0 -36
  180. dlubal_api-2.9.7.dev1/dlubal/api/rfem/loading/result_combination_pb2.py +0 -42
  181. dlubal_api-2.9.7.dev1/dlubal/api/rfem/loading/result_combination_pb2.pyi +0 -76
  182. dlubal_api-2.9.7.dev1/dlubal/api/rfem/loading/spectral_analysis_settings_pb2.py +0 -46
  183. dlubal_api-2.9.7.dev1/dlubal/api/rfem/loads/free_polygon_load_pb2.py +0 -44
  184. dlubal_api-2.9.7.dev1/dlubal/api/rfem/loads/free_rectangular_load_pb2.py +0 -49
  185. dlubal_api-2.9.7.dev1/dlubal/api/rfem/loads/line_load_pb2.py +0 -46
  186. dlubal_api-2.9.7.dev1/dlubal/api/rfem/loads/line_set_load_pb2.py +0 -46
  187. dlubal_api-2.9.7.dev1/dlubal/api/rfem/loads/member_load_pb2.py +0 -67
  188. dlubal_api-2.9.7.dev1/dlubal/api/rfem/loads/member_set_load_pb2.py +0 -67
  189. dlubal_api-2.9.7.dev1/dlubal/api/rfem/loads/surface_load_pb2.py +0 -57
  190. dlubal_api-2.9.7.dev1/dlubal/api/rfem/loads/surface_set_load_pb2.py +0 -57
  191. dlubal_api-2.9.7.dev1/dlubal/api/rfem/object_type_pb2.py +0 -36
  192. dlubal_api-2.9.7.dev1/dlubal/api/rfem/packing.py +0 -45
  193. dlubal_api-2.9.7.dev1/dlubal/api/rfem/results/results_id_pb2.pyi +0 -14
  194. dlubal_api-2.9.7.dev1/dlubal/api/rfem/structure_advanced/structure_modification_pb2.py +0 -56
  195. dlubal_api-2.9.7.dev1/dlubal/api/rfem/structure_advanced/structure_modification_pb2.pyi +0 -161
  196. dlubal_api-2.9.7.dev1/dlubal/api/rfem/structure_advanced/surface_results_adjustment_pb2.py +0 -55
  197. dlubal_api-2.9.7.dev1/dlubal/api/rfem/structure_core/line_pb2.py +0 -55
  198. dlubal_api-2.9.7.dev1/dlubal/api/rfem/structure_core/material_pb2.py +0 -100
  199. dlubal_api-2.9.7.dev1/dlubal/api/rfem/structure_core/material_pb2.pyi +0 -955
  200. dlubal_api-2.9.7.dev1/dlubal/api/rfem/structure_core/member_pb2.py +0 -79
  201. dlubal_api-2.9.7.dev1/dlubal/api/rfem/structure_core/member_pb2.pyi +0 -566
  202. dlubal_api-2.9.7.dev1/dlubal/api/rfem/structure_core/member_representative_pb2.py +0 -83
  203. dlubal_api-2.9.7.dev1/dlubal/api/rfem/structure_core/member_representative_pb2.pyi +0 -590
  204. dlubal_api-2.9.7.dev1/dlubal/api/rfem/structure_core/member_set_pb2.py +0 -53
  205. dlubal_api-2.9.7.dev1/dlubal/api/rfem/structure_core/member_set_pb2.pyi +0 -225
  206. dlubal_api-2.9.7.dev1/dlubal/api/rfem/structure_core/member_set_representative_pb2.py +0 -99
  207. dlubal_api-2.9.7.dev1/dlubal/api/rfem/structure_core/member_set_representative_pb2.pyi +0 -811
  208. dlubal_api-2.9.7.dev1/dlubal/api/rfem/structure_core/section_pb2.py +0 -66
  209. dlubal_api-2.9.7.dev1/dlubal/api/rfem/structure_core/surface_pb2.py +0 -67
  210. dlubal_api-2.9.7.dev1/dlubal/api/rfem/structure_core/surface_set_pb2.py +0 -47
  211. dlubal_api-2.9.7.dev1/dlubal/api/rfem/structure_core/thickness_pb2.py +0 -64
  212. dlubal_api-2.9.7.dev1/dlubal/api/rfem/types_for_aluminum_design/aluminum_effective_lengths_pb2.py +0 -56
  213. dlubal_api-2.9.7.dev1/dlubal/api/rfem/types_for_aluminum_design/aluminum_effective_lengths_pb2.pyi +0 -150
  214. dlubal_api-2.9.7.dev1/dlubal/api/rfem/types_for_aluminum_design/aluminum_member_local_section_reduction_pb2.py +0 -38
  215. dlubal_api-2.9.7.dev1/dlubal/api/rfem/types_for_aluminum_design/aluminum_member_local_section_reduction_pb2.pyi +0 -36
  216. dlubal_api-2.9.7.dev1/dlubal/api/rfem/types_for_aluminum_design/aluminum_member_transverse_weld_pb2.py +0 -38
  217. dlubal_api-2.9.7.dev1/dlubal/api/rfem/types_for_aluminum_design/aluminum_member_transverse_weld_pb2.pyi +0 -36
  218. dlubal_api-2.9.7.dev1/dlubal/api/rfem/types_for_concrete_design/concrete_effective_lengths_pb2.py +0 -66
  219. dlubal_api-2.9.7.dev1/dlubal/api/rfem/types_for_concrete_design/concrete_effective_lengths_pb2.pyi +0 -186
  220. dlubal_api-2.9.7.dev1/dlubal/api/rfem/types_for_concrete_design/punching_reinforcement_pb2.py +0 -52
  221. dlubal_api-2.9.7.dev1/dlubal/api/rfem/types_for_concrete_design/surface_reinforcement_pb2.py +0 -72
  222. dlubal_api-2.9.7.dev1/dlubal/api/rfem/types_for_lines/line_hinge_pb2.py +0 -103
  223. dlubal_api-2.9.7.dev1/dlubal/api/rfem/types_for_lines/line_support_pb2.py +0 -127
  224. dlubal_api-2.9.7.dev1/dlubal/api/rfem/types_for_members/member_eccentricity_pb2.py +0 -49
  225. dlubal_api-2.9.7.dev1/dlubal/api/rfem/types_for_members/member_hinge_pb2.py +0 -151
  226. dlubal_api-2.9.7.dev1/dlubal/api/rfem/types_for_members/member_openings_pb2.py +0 -38
  227. dlubal_api-2.9.7.dev1/dlubal/api/rfem/types_for_members/member_openings_pb2.pyi +0 -36
  228. dlubal_api-2.9.7.dev1/dlubal/api/rfem/types_for_members/member_result_intermediate_point_pb2.py +0 -38
  229. dlubal_api-2.9.7.dev1/dlubal/api/rfem/types_for_members/member_rotational_restraint_pb2.py +0 -48
  230. dlubal_api-2.9.7.dev1/dlubal/api/rfem/types_for_members/member_spring_pb2.py +0 -50
  231. dlubal_api-2.9.7.dev1/dlubal/api/rfem/types_for_members/member_transverse_stiffener_pb2.py +0 -38
  232. dlubal_api-2.9.7.dev1/dlubal/api/rfem/types_for_members/member_transverse_stiffener_pb2.pyi +0 -36
  233. dlubal_api-2.9.7.dev1/dlubal/api/rfem/types_for_nodes/nodal_support_pb2.py +0 -171
  234. dlubal_api-2.9.7.dev1/dlubal/api/rfem/types_for_special_objects/line_release_type_pb2.py +0 -105
  235. dlubal_api-2.9.7.dev1/dlubal/api/rfem/types_for_special_objects/nodal_release_type_pb2.py +0 -110
  236. dlubal_api-2.9.7.dev1/dlubal/api/rfem/types_for_special_objects/surface_release_type_pb2.py +0 -69
  237. dlubal_api-2.9.7.dev1/dlubal/api/rfem/types_for_steel_design/steel_boundary_conditions_pb2.py +0 -42
  238. dlubal_api-2.9.7.dev1/dlubal/api/rfem/types_for_steel_design/steel_boundary_conditions_pb2.pyi +0 -60
  239. dlubal_api-2.9.7.dev1/dlubal/api/rfem/types_for_steel_design/steel_effective_lengths_pb2.py +0 -90
  240. dlubal_api-2.9.7.dev1/dlubal/api/rfem/types_for_steel_design/steel_member_local_section_reduction_pb2.py +0 -38
  241. dlubal_api-2.9.7.dev1/dlubal/api/rfem/types_for_steel_design/steel_member_local_section_reduction_pb2.pyi +0 -36
  242. dlubal_api-2.9.7.dev1/dlubal/api/rfem/types_for_timber_design/timber_effective_lengths_pb2.py +0 -56
  243. dlubal_api-2.9.7.dev1/dlubal/api/rfem/types_for_timber_design/timber_effective_lengths_pb2.pyi +0 -139
  244. dlubal_api-2.9.7.dev1/dlubal/api/rfem/types_for_timber_design/timber_member_local_section_reduction_pb2.py +0 -38
  245. dlubal_api-2.9.7.dev1/dlubal/api/rfem/types_for_timber_design/timber_member_local_section_reduction_pb2.pyi +0 -36
  246. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/__init__.py +0 -0
  247. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/__init__.py +0 -0
  248. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/common/__init__.py +0 -0
  249. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/common/common_pb2.py +0 -0
  250. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/common/common_pb2.pyi +0 -0
  251. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/common/connection.py +0 -0
  252. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/common/exceptions.py +0 -0
  253. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/common/model_id_pb2.py +0 -0
  254. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/common/model_id_pb2.pyi +0 -0
  255. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/common/table_data_pb2.py +0 -0
  256. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/common/table_data_pb2.pyi +0 -0
  257. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/__init__.py +0 -0
  258. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/aluminum_design_objects/__init__.py +0 -0
  259. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/aluminum_design_objects/aluminum_design_sls_configuration_pb2.py +0 -0
  260. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/aluminum_design_objects/aluminum_design_sls_configuration_pb2.pyi +0 -0
  261. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/aluminum_design_objects/aluminum_design_uls_configuration_pb2.py +0 -0
  262. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/aluminum_design_objects/aluminum_design_uls_configuration_pb2.pyi +0 -0
  263. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/base_data/__init__.py +0 -0
  264. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/building_model/__init__.py +0 -0
  265. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/building_model/floor_set_pb2.py +0 -0
  266. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/building_model/floor_set_pb2.pyi +0 -0
  267. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/calculation_diagrams/__init__.py +0 -0
  268. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/concrete_design_objects/__init__.py +0 -0
  269. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/concrete_design_objects/concrete_design_sls_configuration_pb2.py +0 -0
  270. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/concrete_design_objects/concrete_design_sls_configuration_pb2.pyi +0 -0
  271. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/concrete_design_objects/concrete_design_uls_configuration_pb2.py +0 -0
  272. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/concrete_design_objects/concrete_design_uls_configuration_pb2.pyi +0 -0
  273. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/construction_stages/__init__.py +0 -0
  274. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/dynamic_loads/__init__.py +0 -0
  275. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/geotechnical_analysis/__init__.py +0 -0
  276. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/geotechnical_analysis/soil_massif_pb2.py +0 -0
  277. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/geotechnical_analysis/soil_massif_pb2.pyi +0 -0
  278. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/global_parameters/__init__.py +0 -0
  279. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/guide_objects/__init__.py +0 -0
  280. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/guide_objects/building_grid_pb2.py +0 -0
  281. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/guide_objects/building_grid_pb2.pyi +0 -0
  282. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/guide_objects/clipping_box_pb2.py +0 -0
  283. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/guide_objects/clipping_box_pb2.pyi +0 -0
  284. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/guide_objects/clipping_plane_pb2.py +0 -0
  285. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/guide_objects/clipping_plane_pb2.pyi +0 -0
  286. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/guide_objects/coordinate_system_pb2.py +0 -0
  287. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/guide_objects/coordinate_system_pb2.pyi +0 -0
  288. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/guide_objects/dxf_file_model_object_pb2.py +0 -0
  289. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/guide_objects/dxf_file_model_object_pb2.pyi +0 -0
  290. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/guide_objects/dxf_model_object_pb2.py +0 -0
  291. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/guide_objects/dxf_model_object_pb2.pyi +0 -0
  292. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/guide_objects/note_pb2.py +0 -0
  293. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/guide_objects/note_pb2.pyi +0 -0
  294. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/guide_objects/object_snap_pb2.py +0 -0
  295. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/guide_objects/object_snap_pb2.pyi +0 -0
  296. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/guide_objects/visual_object_pb2.py +0 -0
  297. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/guide_objects/visual_object_pb2.pyi +0 -0
  298. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/imperfections/__init__.py +0 -0
  299. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/imperfections/member_imperfection_pb2.py +0 -0
  300. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/imperfections/member_imperfection_pb2.pyi +0 -0
  301. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/imperfections/member_set_imperfection_pb2.py +0 -0
  302. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/imperfections/member_set_imperfection_pb2.pyi +0 -0
  303. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/imperfections/surface_imperfection_pb2.py +0 -0
  304. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/imperfections/surface_imperfection_pb2.pyi +0 -0
  305. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/imperfections/surface_set_imperfection_pb2.py +0 -0
  306. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/imperfections/surface_set_imperfection_pb2.pyi +0 -0
  307. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/load_wizards/__init__.py +0 -0
  308. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/loading/__init__.py +0 -0
  309. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/loading/pushover_analysis_settings_pb2.py +0 -0
  310. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/loading/pushover_analysis_settings_pb2.pyi +0 -0
  311. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/loading/stability_analysis_settings_pb2.py +0 -0
  312. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/loading/stability_analysis_settings_pb2.pyi +0 -0
  313. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/loading/static_analysis_settings_pb2.py +0 -0
  314. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/loading/static_analysis_settings_pb2.pyi +0 -0
  315. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/loading/wind_simulation_analysis_settings_pb2.py +0 -0
  316. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/loading/wind_simulation_analysis_settings_pb2.pyi +0 -0
  317. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/loads/__init__.py +0 -0
  318. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/loads/free_circular_load_pb2.py +0 -0
  319. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/loads/free_circular_load_pb2.pyi +0 -0
  320. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/loads/free_concentrated_load_pb2.py +0 -0
  321. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/loads/free_concentrated_load_pb2.pyi +0 -0
  322. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/loads/free_line_load_pb2.py +0 -0
  323. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/loads/free_line_load_pb2.pyi +0 -0
  324. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/loads/imposed_line_deformation_pb2.py +0 -0
  325. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/loads/imposed_line_deformation_pb2.pyi +0 -0
  326. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/loads/imposed_nodal_deformation_pb2.py +0 -0
  327. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/loads/imposed_nodal_deformation_pb2.pyi +0 -0
  328. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/loads/nodal_load_pb2.py +0 -0
  329. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/loads/nodal_load_pb2.pyi +0 -0
  330. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/loads/opening_load_pb2.py +0 -0
  331. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/loads/opening_load_pb2.pyi +0 -0
  332. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/loads/solid_load_pb2.py +0 -0
  333. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/loads/solid_load_pb2.pyi +0 -0
  334. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/loads/solid_set_load_pb2.py +0 -0
  335. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/loads/solid_set_load_pb2.pyi +0 -0
  336. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/object_type_pb2.pyi +0 -0
  337. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/result_objects/__init__.py +0 -0
  338. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/result_objects/result_section_pb2.py +0 -0
  339. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/result_objects/result_section_pb2.pyi +0 -0
  340. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/results/__init__.py +0 -0
  341. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/results/results_query_pb2.py +0 -0
  342. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/results/results_query_pb2.pyi +0 -0
  343. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/steel_design_objects/__init__.py +0 -0
  344. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/steel_design_objects/steel_design_fr_configuration_pb2.py +0 -0
  345. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/steel_design_objects/steel_design_fr_configuration_pb2.pyi +0 -0
  346. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/steel_design_objects/steel_design_seismic_configuration_pb2.py +0 -0
  347. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/steel_design_objects/steel_design_seismic_configuration_pb2.pyi +0 -0
  348. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/steel_design_objects/steel_design_sls_configuration_pb2.py +0 -0
  349. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/steel_design_objects/steel_design_sls_configuration_pb2.pyi +0 -0
  350. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/steel_design_objects/steel_design_uls_configuration_pb2.py +0 -0
  351. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/steel_design_objects/steel_design_uls_configuration_pb2.pyi +0 -0
  352. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/structure_advanced/__init__.py +0 -0
  353. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/structure_advanced/block_pb2.py +0 -0
  354. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/structure_advanced/block_pb2.pyi +0 -0
  355. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/structure_advanced/intersection_pb2.py +0 -0
  356. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/structure_advanced/intersection_pb2.pyi +0 -0
  357. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/structure_advanced/nodal_release_pb2.py +0 -0
  358. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/structure_advanced/nodal_release_pb2.pyi +0 -0
  359. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/structure_advanced/rigid_link_pb2.py +0 -0
  360. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/structure_advanced/rigid_link_pb2.pyi +0 -0
  361. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/structure_advanced/surface_release_pb2.py +0 -0
  362. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/structure_advanced/surface_release_pb2.pyi +0 -0
  363. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/structure_advanced/surfaces_contact_pb2.py +0 -0
  364. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/structure_advanced/surfaces_contact_pb2.pyi +0 -0
  365. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/structure_core/__init__.py +0 -0
  366. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/structure_core/line_set_pb2.py +0 -0
  367. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/structure_core/line_set_pb2.pyi +0 -0
  368. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/structure_core/node_pb2.py +0 -0
  369. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/structure_core/node_pb2.pyi +0 -0
  370. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/structure_core/opening_pb2.py +0 -0
  371. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/structure_core/opening_pb2.pyi +0 -0
  372. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/structure_core/solid_pb2.py +0 -0
  373. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/structure_core/solid_pb2.pyi +0 -0
  374. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/structure_core/solid_set_pb2.py +0 -0
  375. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/structure_core/solid_set_pb2.pyi +0 -0
  376. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/timber_design_objects/__init__.py +0 -0
  377. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/timber_design_objects/timber_design_fr_configuration_pb2.py +0 -0
  378. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/timber_design_objects/timber_design_fr_configuration_pb2.pyi +0 -0
  379. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/timber_design_objects/timber_design_sls_configuration_pb2.py +0 -0
  380. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/timber_design_objects/timber_design_sls_configuration_pb2.pyi +0 -0
  381. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/timber_design_objects/timber_design_uls_configuration_pb2.py +0 -0
  382. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/timber_design_objects/timber_design_uls_configuration_pb2.pyi +0 -0
  383. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/types_for_aluminum_design/__init__.py +0 -0
  384. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/types_for_concrete_design/__init__.py +0 -0
  385. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/types_for_concrete_design/concrete_durability_pb2.py +0 -0
  386. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/types_for_concrete_design/concrete_durability_pb2.pyi +0 -0
  387. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/types_for_concrete_design/reinforcement_direction_pb2.py +0 -0
  388. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/types_for_concrete_design/reinforcement_direction_pb2.pyi +0 -0
  389. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/types_for_lines/__init__.py +0 -0
  390. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/types_for_lines/line_mesh_refinement_pb2.py +0 -0
  391. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/types_for_lines/line_mesh_refinement_pb2.pyi +0 -0
  392. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/types_for_lines/line_welded_joint_pb2.py +0 -0
  393. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/types_for_lines/line_welded_joint_pb2.pyi +0 -0
  394. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/types_for_members/__init__.py +0 -0
  395. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/types_for_members/design_support_pb2.py +0 -0
  396. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/types_for_members/design_support_pb2.pyi +0 -0
  397. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/types_for_members/member_definable_stiffness_pb2.py +0 -0
  398. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/types_for_members/member_definable_stiffness_pb2.pyi +0 -0
  399. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/types_for_members/member_nonlinearity_pb2.py +0 -0
  400. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/types_for_members/member_nonlinearity_pb2.pyi +0 -0
  401. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/types_for_members/member_shear_panel_pb2.py +0 -0
  402. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/types_for_members/member_shear_panel_pb2.pyi +0 -0
  403. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/types_for_members/member_stiffness_modification_pb2.py +0 -0
  404. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/types_for_members/member_stiffness_modification_pb2.pyi +0 -0
  405. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/types_for_members/member_support_pb2.py +0 -0
  406. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/types_for_members/member_support_pb2.pyi +0 -0
  407. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/types_for_nodes/__init__.py +0 -0
  408. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/types_for_nodes/nodal_mesh_refinement_pb2.py +0 -0
  409. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/types_for_nodes/nodal_mesh_refinement_pb2.pyi +0 -0
  410. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/types_for_solids/__init__.py +0 -0
  411. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/types_for_solids/solid_contacts_pb2.py +0 -0
  412. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/types_for_solids/solid_contacts_pb2.pyi +0 -0
  413. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/types_for_solids/solid_gas_pb2.py +0 -0
  414. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/types_for_solids/solid_gas_pb2.pyi +0 -0
  415. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/types_for_solids/solid_mesh_refinement_pb2.py +0 -0
  416. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/types_for_solids/solid_mesh_refinement_pb2.pyi +0 -0
  417. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/types_for_special_objects/__init__.py +0 -0
  418. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/types_for_special_objects/surfaces_contact_type_pb2.py +0 -0
  419. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/types_for_special_objects/surfaces_contact_type_pb2.pyi +0 -0
  420. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/types_for_steel_design/__init__.py +0 -0
  421. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/types_for_surfaces/__init__.py +0 -0
  422. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/types_for_surfaces/surface_eccentricity_pb2.py +0 -0
  423. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/types_for_surfaces/surface_eccentricity_pb2.pyi +0 -0
  424. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/types_for_surfaces/surface_mesh_refinement_pb2.py +0 -0
  425. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/types_for_surfaces/surface_mesh_refinement_pb2.pyi +0 -0
  426. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/types_for_surfaces/surface_stiffness_modification_pb2.py +0 -0
  427. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/types_for_surfaces/surface_stiffness_modification_pb2.pyi +0 -0
  428. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/types_for_surfaces/surface_support_pb2.py +0 -0
  429. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/types_for_surfaces/surface_support_pb2.pyi +0 -0
  430. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/types_for_timber_design/__init__.py +0 -0
  431. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/types_for_timber_design/timber_moisture_class_pb2.py +0 -0
  432. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/types_for_timber_design/timber_moisture_class_pb2.pyi +0 -0
  433. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/types_for_timber_design/timber_service_class_pb2.py +0 -0
  434. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/types_for_timber_design/timber_service_class_pb2.pyi +0 -0
  435. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/types_for_timber_design/timber_service_conditions_pb2.py +0 -0
  436. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal/api/rfem/types_for_timber_design/timber_service_conditions_pb2.pyi +0 -0
  437. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal.api.egg-info/SOURCES.txt +0 -0
  438. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal.api.egg-info/dependency_links.txt +0 -0
  439. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal.api.egg-info/not-zip-safe +0 -0
  440. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal.api.egg-info/requires.txt +0 -0
  441. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/dlubal.api.egg-info/top_level.txt +0 -0
  442. {dlubal_api-2.9.7.dev1 → dlubal_api-2.9.9}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: dlubal.api
3
- Version: 2.9.7.dev1
3
+ Version: 2.9.9
4
4
  Summary: Python Client Library for Dlubal Software APIs powered by gRPC
5
5
  Author: Dlubal Software
6
6
  Author-email: api@dlubal.com
@@ -35,7 +35,7 @@ Dynamic: summary
35
35
 
36
36
  This package version is fully compatible with the following **Dlubal App version**:
37
37
 
38
- ✅ **X.09.0007.33.6b7db549a00**
38
+ ✅ **X.09.0009.186.ed86c668f7f**
39
39
 
40
40
  ## Overview
41
41
  The `dlubal.api` package is the next-generation Python client library for interacting with Dlubal Software APIs, leveraging modern **gRPC technology** to deliver high-speed communication, scalability, and improved performance. This API enables **seamless automation** and **remote access** to Dlubal software like **RFEM 6**, with near future support for **RSTAB 9** and **RSECTION 1**.
@@ -8,7 +8,7 @@
8
8
 
9
9
  This package version is fully compatible with the following **Dlubal App version**:
10
10
 
11
- ✅ **X.09.0007.33.6b7db549a00**
11
+ ✅ **X.09.0009.186.ed86c668f7f**
12
12
 
13
13
  ## Overview
14
14
  The `dlubal.api` package is the next-generation Python client library for interacting with Dlubal Software APIs, leveraging modern **gRPC technology** to deliver high-speed communication, scalability, and improved performance. This API enables **seamless automation** and **remote access** to Dlubal software like **RFEM 6**, with near future support for **RSTAB 9** and **RSECTION 1**.
@@ -1,6 +1,7 @@
1
1
  import pandas
2
2
 
3
3
  class Table:
4
+
4
5
  def __init__(self, data: pandas.DataFrame):
5
6
  self.data = data
6
7
 
@@ -2,19 +2,17 @@
2
2
 
3
3
  from __future__ import annotations
4
4
  from dlubal.api.common.connection import _ApiKey, check_ssl, init_channel
5
- from dlubal.api.rfem.packing import pack_object, pack_object_list, unpack_object, unpack_object_list, get_internal_value
6
- from dlubal.api.common.exceptions import exception_handler
7
- from dlubal.api.common.table import Table
5
+ from dlubal.api.rfem.packing import pack_object, pack_object_list, unpack_object, unpack_object_list, convert_table_data_to_table
8
6
  from dlubal.api.common.table_data_pb2 import TableData
9
7
  from dlubal.api.rfem.results import ResultsId
10
8
  from dlubal.api.rfem.results.results_query_pb2 import ResultsQuery, ResultsFilter
11
9
  import grpc
12
-
13
10
  from collections.abc import Iterable
14
- from pandas import DataFrame
11
+ from importlib.metadata import version
15
12
  import dlubal.api.common.model_id_pb2
16
13
  import dlubal.api.rfem.application_pb2
17
14
  import dlubal.api.rfem.application_pb2_grpc
15
+ import dlubal.api.rfem.object_type_pb2
18
16
  import google.protobuf.empty_pb2
19
17
 
20
18
 
@@ -31,12 +29,22 @@ class Application:
31
29
  Initialize the RFEM client and connect to gRPC server.
32
30
 
33
31
  Args:
34
- api_key_value (str, optional): Value of the API key. It can be found in Extranet under My Data. Every API key starts with 'ak' (default is None).
35
- api_key_name (str, optional): Name of the API key stored or to be stored. Can be any string of letters and numbers starting with 'ak', 51 characters long.
36
- url (str, optional): URL number.
37
- port (int, optional): Port number.
38
- ssl (bool, optional): False if NOT using SSL auth. True if using the installed version of SSL certificate, or path to .crt certificate if using a file.
39
- ssl_file (str, optional): Path to SSL certificate file (.crt, .pem).
32
+ api_key_value (str, optional):
33
+ Value of the API key.
34
+ It can be found in Extranet under My Data.
35
+ Every API key starts with 'ak' (default is None).
36
+ api_key_name (str, optional):
37
+ Name of the API key stored or to be stored.
38
+ Can be any string of letters and numbers starting with 'ak', 51 characters long.
39
+ url (str, optional):
40
+ URL number.
41
+ port (int, optional):
42
+ Port number.
43
+ ssl (bool, optional):
44
+ False if NOT using SSL auth.
45
+ True if using the installed version of SSL certificate, or path to .crt certificate if using a file.
46
+ ssl_file (str, optional):
47
+ Path to SSL certificate file (.crt, .pem).
40
48
  '''
41
49
  self.url = url
42
50
  self.port = port
@@ -46,6 +54,7 @@ class Application:
46
54
  self.api_key = _ApiKey(api_key_name, api_key_value)
47
55
  self.channel = init_channel(self.api_key.value, self.url, self.port, self.ssl, self.ssl_file)
48
56
  self.stub = dlubal.api.rfem.application_pb2_grpc.ApplicationStub(self.channel) if self.channel else None
57
+ self.__check_versions()
49
58
 
50
59
  def __enter__(self):
51
60
  '''
@@ -72,6 +81,33 @@ class Application:
72
81
  return False
73
82
  raise RuntimeError(f"Unexpected error: {str(exc_value)}") from None
74
83
 
84
+ def __check_versions(self):
85
+ '''
86
+ Check if version of package is compatible with version of RFEM, RSTAB, or RSECTION.
87
+ '''
88
+ app_info = self.get_application_info()
89
+ app_version = app_info.version.split('.')
90
+ app_major = int(app_version[1])
91
+ app_minor = int(app_version[2])
92
+
93
+ try:
94
+ dlubal_api_v = version('dlubal.api')
95
+ dlubal_api_vs = version('dlubal.api').split('.')
96
+ dlubal_api_major = int(dlubal_api_vs[1])
97
+ dlubal_api_minor = int(dlubal_api_vs[2])
98
+ except(ImportError, ModuleNotFoundError):
99
+ print("dlubal.api version not found.")
100
+ print("Package is not installed in the current environment.")
101
+ print("It appears you may be running the application directly from source code.\n")
102
+ return
103
+
104
+ # If the versions differ, print a warning
105
+ if app_major != dlubal_api_major or app_minor != dlubal_api_minor:
106
+ print('\033[93mWARNING:\033[0m')
107
+ print(f'Version mismatch between dlubal.api client package \033[91m{dlubal_api_v}\033[0m and server application {app_info.name}.')
108
+ print(f'To ensure full compatibility, please use the client version 2.{app_major}.{app_minor}.')
109
+ print(f'To update, run: \033[92mpython.exe -m pip install --upgrade dlubal.api==2.{app_major}.{app_minor}\033[0m\n')
110
+
75
111
  # Functions using packing
76
112
 
77
113
  def get_object(self, obj, model_id: dlubal.api.common.model_id_pb2.ModelId | None = None):
@@ -79,8 +115,11 @@ class Application:
79
115
  Retrieves a single object from the model using only the `no` argument in the object arguments.
80
116
 
81
117
  Args:
82
- obj (obj): An object to be retrieved defined by its number. Refer to the :ref:`rfem_objects` for available objects.
83
- model_id (:ref:`ModelId` | None): Unique identifier of the model.
118
+ obj (obj):
119
+ An object to be retrieved defined by its number.
120
+ Refer to the :ref:`rfem_objects` for available objects.
121
+ model_id (:ref:`ModelId` | None):
122
+ Unique identifier of the model.
84
123
 
85
124
  Returns:
86
125
  :ref:`rfem_objects`: A retrieved object.
@@ -88,13 +127,16 @@ class Application:
88
127
  result = self.stub.get_object_impl(pack_object(obj, model_id))
89
128
  return unpack_object(result, type(obj))
90
129
 
91
- def get_object_list(self, objs, model_id: dlubal.api.common.model_id_pb2.ModelId | None = None):
130
+ def get_object_list(self, objs: list, model_id: dlubal.api.common.model_id_pb2.ModelId | None = None):
92
131
  '''
93
132
  Retrieves a list of objects from the model.
94
133
 
95
134
  Args:
96
- objs (obj): An object dict to be retrieved. Refer to the :ref:`rfem_objects` for available objects.
97
- model_id (:ref:`ModelId` | None): Unique identifier of the model.
135
+ objs (list[obj]):
136
+ An object list to be retrieved.
137
+ Refer to the :ref:`rfem_objects` for available objects.
138
+ model_id (:ref:`ModelId` | None):
139
+ Unique identifier of the model.
98
140
 
99
141
  Returns:
100
142
  :ref:`rfem_objects`: A list of retrieved objects.
@@ -110,25 +152,33 @@ class Application:
110
152
  Creates a single object in the model.
111
153
 
112
154
  Args:
113
- obj (obj): An object to be created. Refer to the :ref:`rfem_objects` for available objects.
114
- model_id (:ref:`ModelId` | None): Unique identifier of the model.
155
+ obj (obj):
156
+ An object to be created.
157
+ Refer to the :ref:`rfem_objects` for available objects.
158
+ model_id (:ref:`ModelId` | None):
159
+ Unique identifier of the model.
115
160
 
116
161
  Returns:
117
162
  ObjectId: ID of the created object
118
163
  '''
119
164
  return self.stub.create_object_impl(pack_object(obj, model_id))
120
165
 
121
- def create_object_list(self, objs, model_id: dlubal.api.common.model_id_pb2.ModelId | None = None, return_object_id=False):
166
+ def create_object_list(self, objs:list, model_id: dlubal.api.common.model_id_pb2.ModelId | None = None, return_object_id=False):
122
167
  '''
123
168
  Creates a list of objects in the model.
124
169
 
125
170
  Args:
126
- objs (list[obj]): A list of objects to be created. Refer to the :ref:`rfem_objects` for available objects.
127
- model_id (:ref:`ModelId` | None): Unique identifier of the model.
128
- return_object_id (bool): Specifies whether to return the list of object IDs.
171
+ objs (list[obj]):
172
+ A list of objects to be created.
173
+ Refer to the :ref:`rfem_objects` for available objects.
174
+ model_id (:ref:`ModelId` | None):
175
+ Unique identifier of the model.
176
+ return_object_id (bool):
177
+ Specifies whether to return the list of object IDs.
129
178
 
130
179
  Returns:
131
- ObjectIdList (:ref:`ObjectIdList` | None): List of IDs of the created objects if `return_object_id` is True, otherwise None.
180
+ ObjectIdList (:ref:`ObjectIdList` | None):
181
+ List of IDs of the created objects if `return_object_id` is True, otherwise None.
132
182
  '''
133
183
  return self.stub.create_object_list_impl(pack_object_list(objs, model_id, return_object_id))
134
184
 
@@ -137,21 +187,27 @@ class Application:
137
187
  Updates a single object in the model.
138
188
 
139
189
  Args:
140
- obj (obj): An object to be updated. Refer to the :ref:`rfem_objects` for available objects.
141
- model_id (:ref:`ModelId` | None): Unique identifier of the model.
190
+ obj (obj):
191
+ An object to be updated.
192
+ Refer to the :ref:`rfem_objects` for available objects.
193
+ model_id (:ref:`ModelId` | None):
194
+ Unique identifier of the model.
142
195
 
143
196
  Returns:
144
197
  None
145
198
  '''
146
199
  self.stub.update_object_impl(pack_object(obj, model_id))
147
200
 
148
- def update_object_list(self, objs, model_id: dlubal.api.common.model_id_pb2.ModelId | None = None):
201
+ def update_object_list(self, objs: list, model_id: dlubal.api.common.model_id_pb2.ModelId | None = None):
149
202
  '''
150
203
  Updates a list of objects in the model.
151
204
 
152
205
  Args:
153
- objs (list[obj]): A list of objects to be updated. Refer to the :ref:`rfem_objects` for available objects.
154
- model_id (:ref:`ModelId` | None): Unique identifier of the model.
206
+ objs (list[obj]):
207
+ A list of objects to be updated.
208
+ Refer to the :ref:`rfem_objects` for available objects.
209
+ model_id (:ref:`ModelId` | None):
210
+ Unique identifier of the model.
155
211
 
156
212
  Returns:
157
213
  None
@@ -163,21 +219,27 @@ class Application:
163
219
  Deletes a single object from the model.
164
220
 
165
221
  Args:
166
- obj (obj): An object to be deleted defined by its number. Refer to the :ref:`rfem_objects` for available objects.
167
- model_id (:ref:`ModelId` | None): Unique identifier of the model.
222
+ obj (obj):
223
+ An object to be deleted defined by its number.
224
+ Refer to the :ref:`rfem_objects` for available objects.
225
+ model_id (:ref:`ModelId` | None):
226
+ Unique identifier of the model.
168
227
 
169
228
  Returns:
170
229
  None
171
230
  '''
172
231
  self.stub.delete_object_impl(pack_object(obj, model_id))
173
232
 
174
- def delete_object_list(self, objs, model_id: dlubal.api.common.model_id_pb2.ModelId | None = None):
233
+ def delete_object_list(self, objs: list, model_id: dlubal.api.common.model_id_pb2.ModelId | None = None):
175
234
  '''
176
235
  Deletes a list of objects from the model.
177
236
 
178
237
  Args:
179
- objs (list[obj]): A list of objects to be deleted. Refer to the :ref:`rfem_objects` for available objects.
180
- model_id (:ref:`ModelId` | None): Unique identifier of the model.
238
+ objs (list[obj]):
239
+ A list of objects to be deleted.
240
+ Refer to the :ref:`rfem_objects` for available objects.
241
+ model_id (:ref:`ModelId` | None):
242
+ Unique identifier of the model.
181
243
 
182
244
  Returns:
183
245
  None
@@ -186,31 +248,28 @@ class Application:
186
248
 
187
249
  def get_results(self, results_id: ResultsId, filters: Iterable[ResultsFilter] | None = None, **keyword_filters):
188
250
  '''
189
- GetResults returns Table, which is just a convenience wrapper around a Pandas Dataframe.
251
+ Returns Table, which is just a convenience wrapper around a Pandas Dataframe.
190
252
  The Dataframe can be directly accessed as .data
191
253
 
192
254
  Args:
193
- results_id (list[obj]): A list of objects to be deleted. Refer to the :ref:`rfem_objects` for available objects.
194
- example: ResultsId.RESULTS_ID_TEST
195
- filters (ResultsFilter, optional): Filter to get only relevant results. Valid filter expressions are: "min", "max", ">value", "<value", and just "value" for equality.
196
- example: filters=[ResultsFilter(column_id="support_force_p_x", filter_expression="max")]
255
+ results_id (:ref:`ResultsId` | None):
256
+ Unique identifier of the result category type.
257
+ filters (:ref:`ResultsFilter`, optional):
258
+ Filter to get only relevant results
259
+
197
260
  Returns:
198
- Table(data_frame): Requested results in form of table.
261
+ Table(data_frame):
262
+ Requested results in form of table.
199
263
  '''
200
- all_filters = [].append(filters) if filters else []
264
+
265
+ all_filters = list(filters) if filters else []
201
266
 
202
267
  for key, value in keyword_filters.items():
203
268
  all_filters.append(ResultsFilter(column_id=key, filter_expression=str(value)))
204
269
 
205
- results: TableData = self.stub.get_results_impl(ResultsQuery(results_id=results_id, filters=filters))
206
-
207
- rows_data = []
208
- for row in results.rows:
209
- rows_data.append([get_internal_value(v) for v in row.values])
270
+ results: TableData = self.stub.get_results_impl(ResultsQuery(results_id=results_id, filters=all_filters))
210
271
 
211
- data_frame = DataFrame(columns=list(results.column_ids), data=rows_data)
212
-
213
- return Table(data_frame)
272
+ return convert_table_data_to_table(table_data=results)
214
273
 
215
274
  def create_model(self, *, name: str, template_path: str | None = None) -> dlubal.api.common.model_id_pb2.ModelId:
216
275
  """
@@ -247,6 +306,7 @@ class Application:
247
306
 
248
307
  Args:
249
308
  model_id (dlubal.api.common.model_id_pb2.ModelId | None): Unique identifier of the model
309
+ Active model is used if this field is not set.
250
310
  path (str | None): Path to the model
251
311
  """
252
312
  request = dlubal.api.rfem.application_pb2.SaveModelAsRequest(model_id=model_id, path=path)
@@ -258,6 +318,7 @@ class Application:
258
318
 
259
319
  Args:
260
320
  model_id (dlubal.api.common.model_id_pb2.ModelId | None): Unique identifier of the model
321
+ Active model is used if this field is not set.
261
322
  save_changes (bool): Specifies whether to save changes before closing the model
262
323
  """
263
324
  request = dlubal.api.rfem.application_pb2.CloseModelRequest(model_id=model_id, save_changes=save_changes)
@@ -317,7 +378,7 @@ class Application:
317
378
 
318
379
  def close_connection(self):
319
380
  """
320
- Closes connection to Webservice server
381
+ Closes connection to API server
321
382
  """
322
383
  self.stub.close_connection(google.protobuf.empty_pb2.Empty())
323
384
 
@@ -363,5 +424,33 @@ class Application:
363
424
  request = dlubal.api.rfem.application_pb2.PlausibilityCheckRequest(type=type, skip_warnings=skip_warnings, model_id=model_id)
364
425
  return self.stub.plausibility_check(request)
365
426
 
427
+ def get_object_id_list(self, *, object_type: dlubal.api.rfem.object_type_pb2.ObjectType | None = None, parent_no: int | None = None, model_id: dlubal.api.common.model_id_pb2.ModelId | None = None) -> dlubal.api.rfem.application_pb2.ObjectIdList:
428
+ """
429
+ Retrieves object ids filtered by a specific type.
430
+ If you want to retrieve all object ids, do not specify the object_type.
431
+
432
+ Args:
433
+ object_type (dlubal.api.rfem.object_type_pb2.ObjectType | None): The type of objects to retrieve. To get all object ids, omit it.
434
+ parent_no (int | None): Unique identifier of the parent object.
435
+ Omit this parameter if the object type does not have a parent or you want to get result for all parent objects.
436
+ model_id (dlubal.api.common.model_id_pb2.ModelId | None): Unique identifier of the model.
437
+ If not specified, the active model is used.
438
+
439
+ Returns:
440
+ dlubal.api.rfem.application_pb2.ObjectIdList
441
+ """
442
+ request = dlubal.api.rfem.application_pb2.GetObjectIdListRequest(object_type=object_type, parent_no=parent_no, model_id=model_id)
443
+ return self.stub.get_object_id_list(request)
444
+
366
445
  def get_model_main_parameters(self, *, optional_model_id: dlubal.api.common.model_id_pb2.OptionalModelId = dlubal.api.common.model_id_pb2.OptionalModelId()) -> dlubal.api.rfem.application_pb2.ModelMainParameters:
446
+ """
447
+ Retrieves the main parameters of a model, including its ID, name, description,
448
+ comments, file path, and associated project details.
449
+
450
+ Args:
451
+ optional_model_id (dlubal.api.common.model_id_pb2.OptionalModelId):
452
+
453
+ Returns:
454
+ dlubal.api.rfem.application_pb2.ModelMainParameters
455
+ """
367
456
  return self.stub.get_model_main_parameters(optional_model_id)
@@ -0,0 +1,82 @@
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/application.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/application.proto'
19
+ )
20
+ # @@protoc_insertion_point(imports)
21
+
22
+ _sym_db = _symbol_database.Default()
23
+
24
+
25
+ from google.protobuf import any_pb2 as google_dot_protobuf_dot_any__pb2
26
+ from google.protobuf import empty_pb2 as google_dot_protobuf_dot_empty__pb2
27
+ from dlubal.api.common import model_id_pb2 as dlubal_dot_api_dot_common_dot_model__id__pb2
28
+ from dlubal.api.common import table_data_pb2 as dlubal_dot_api_dot_common_dot_table__data__pb2
29
+ from dlubal.api.rfem import object_type_pb2 as dlubal_dot_api_dot_rfem_dot_object__type__pb2
30
+ from dlubal.api.rfem.results import results_query_pb2 as dlubal_dot_api_dot_rfem_dot_results_dot_results__query__pb2
31
+
32
+
33
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n!dlubal/api/rfem/application.proto\x12\x0f\x64lubal.api.rfem\x1a\x19google/protobuf/any.proto\x1a\x1bgoogle/protobuf/empty.proto\x1a dlubal/api/common/model_id.proto\x1a\"dlubal/api/common/table_data.proto\x1a!dlubal/api/rfem/object_type.proto\x1a+dlubal/api/rfem/results/results_query.proto\"P\n\x12\x43reateModelRequest\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x1a\n\rtemplate_path\x18\x02 \x01(\tH\x00\x88\x01\x01\x42\x10\n\x0e_template_path\" \n\x10OpenModelRequest\x12\x0c\n\x04path\x18\x01 \x01(\t\"p\n\x12SaveModelAsRequest\x12\x31\n\x08model_id\x18\x01 \x01(\x0b\x32\x1a.dlubal.api.common.ModelIdH\x00\x88\x01\x01\x12\x11\n\x04path\x18\x02 \x01(\tH\x01\x88\x01\x01\x42\x0b\n\t_model_idB\x07\n\x05_path\"i\n\x11\x43loseModelRequest\x12\x31\n\x08model_id\x18\x01 \x01(\x0b\x32\x1a.dlubal.api.common.ModelIdH\x00\x88\x01\x01\x12\x14\n\x0csave_changes\x18\x02 \x01(\x08\x42\x0b\n\t_model_id\"-\n\x15\x43loseAllModelsRequest\x12\x14\n\x0csave_changes\x18\x01 \x01(\x08\"C\n\tModelInfo\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x0c\n\x04guid\x18\x02 \x01(\t\x12\x11\n\x04path\x18\x03 \x01(\tH\x00\x88\x01\x01\x42\x07\n\x05_path\";\n\tModelList\x12.\n\nmodel_info\x18\x01 \x03(\x0b\x32\x1a.dlubal.api.rfem.ModelInfo\"\xcf\x01\n\x0f\x41pplicationInfo\x12\x0c\n\x04name\x18\x01 \x01(\t\x12.\n\x04type\x18\x02 \x01(\x0e\x32 .dlubal.api.rfem.ApplicationType\x12\x1a\n\x12is_server_instance\x18\x03 \x01(\x08\x12\x0f\n\x07version\x18\x04 \x01(\t\x12\x14\n\x0c\x66ull_version\x18\x05 \x01(\t\x12\x0f\n\x07options\x18\x06 \x01(\t\x12\x15\n\rlanguage_name\x18\x07 \x01(\t\x12\x13\n\x0blanguage_id\x18\x08 \x01(\t\"n\n\x06Object\x12$\n\x06object\x18\x01 \x01(\x0b\x32\x14.google.protobuf.Any\x12\x31\n\x08model_id\x18\x02 \x01(\x0b\x32\x1a.dlubal.api.common.ModelIdH\x00\x88\x01\x01\x42\x0b\n\t_model_id\"6\n\nObjectList\x12(\n\x07objects\x18\x01 \x03(\x0b\x32\x17.dlubal.api.rfem.Object\"{\n\x17\x43reateObjectListRequest\x12,\n\x07objects\x18\x01 \x01(\x0b\x32\x1b.dlubal.api.rfem.ObjectList\x12\x1d\n\x10return_object_id\x18\x02 \x01(\x08H\x00\x88\x01\x01\x42\x13\n\x11_return_object_id\"\xc3\x01\n\x08ObjectId\x12\n\n\x02no\x18\x01 \x01(\x05\x12\x30\n\x0bobject_type\x18\x02 \x01(\x0e\x32\x1b.dlubal.api.rfem.ObjectType\x12\x16\n\tparent_no\x18\x03 \x01(\x05H\x00\x88\x01\x01\x12<\n\x12parent_object_type\x18\x04 \x01(\x0e\x32\x1b.dlubal.api.rfem.ObjectTypeH\x01\x88\x01\x01\x42\x0c\n\n_parent_noB\x15\n\x13_parent_object_type\"<\n\x0cObjectIdList\x12,\n\tobject_id\x18\x01 \x03(\x0b\x32\x19.dlubal.api.rfem.ObjectId\"l\n\x13\x43\x61lculateAllRequest\x12\x15\n\rskip_warnings\x18\x01 \x01(\x08\x12\x31\n\x08model_id\x18\x02 \x01(\x0b\x32\x1a.dlubal.api.common.ModelIdH\x00\x88\x01\x01\x42\x0b\n\t_model_id\"b\n\x0fOperationResult\x12\x11\n\tsucceeded\x18\x01 \x01(\x08\x12\x11\n\x04\x64\x61ta\x18\x02 \x01(\tH\x00\x88\x01\x01\x12\x14\n\x07message\x18\x03 \x01(\tH\x01\x88\x01\x01\x42\x07\n\x05_dataB\n\n\x08_message\"\xa7\x01\n\x18PlausibilityCheckRequest\x12\x34\n\x04type\x18\x01 \x01(\x0e\x32&.dlubal.api.rfem.PlausibilityCheckType\x12\x15\n\rskip_warnings\x18\x02 \x01(\x08\x12\x31\n\x08model_id\x18\x03 \x01(\x0b\x32\x1a.dlubal.api.common.ModelIdH\x00\x88\x01\x01\x42\x0b\n\t_model_id\"\xe0\x01\n\x13ModelMainParameters\x12\x10\n\x08model_id\x18\x01 \x01(\t\x12\x12\n\nmodel_name\x18\x02 \x01(\t\x12\x19\n\x11model_description\x18\x03 \x01(\t\x12\x15\n\rmodel_comment\x18\x04 \x01(\t\x12\x12\n\nmodel_path\x18\x05 \x01(\t\x12\x12\n\nproject_id\x18\x06 \x01(\t\x12\x14\n\x0cproject_name\x18\x07 \x01(\t\x12\x1b\n\x13project_description\x18\x08 \x01(\t\x12\x16\n\x0eproject_folder\x18\t \x01(\t\"\xc5\x01\n\x16GetObjectIdListRequest\x12\x35\n\x0bobject_type\x18\x01 \x01(\x0e\x32\x1b.dlubal.api.rfem.ObjectTypeH\x00\x88\x01\x01\x12\x16\n\tparent_no\x18\x02 \x01(\x05H\x01\x88\x01\x01\x12\x31\n\x08model_id\x18\x03 \x01(\x0b\x32\x1a.dlubal.api.common.ModelIdH\x02\x88\x01\x01\x42\x0e\n\x0c_object_typeB\x0c\n\n_parent_noB\x0b\n\t_model_id*\xf1\x01\n\x0f\x41pplicationType\x12\x1b\n\x17\x41PPLICATION_UNSPECIFIED\x10\x00\x12\x1d\n\x19\x41PPLICATION_DLUBAL_CENTER\x10\x01\x12\x1d\n\x19\x41PPLICATION_REPORT_VIEWER\x10\x02\x12\x14\n\x10\x41PPLICATION_RFEM\x10\x03\x12\x15\n\x11\x41PPLICATION_RSTAB\x10\x04\x12\x18\n\x14\x41PPLICATION_RSECTION\x10\x05\x12\x1c\n\x18\x41PPLICATION_WEB_SECTIONS\x10\x06\x12\x1e\n\x1a\x41PPLICATION_CRASH_REPORTER\x10\x07*\xd3\x01\n\x15PlausibilityCheckType\x12\"\n\x1ePLAUSIBILITY_CHECK_UNSPECIFIED\x10\x00\x12%\n!PLAUSIBILITY_CHECK_MESH_GENERATOR\x10\x01\x12\"\n\x1ePLAUSIBILITY_CHECK_CALCULATION\x10\x02\x12)\n%PLAUSIBILITY_CHECK_PLAUSIBILITY_CHECK\x10\x03\x12 \n\x1cPLAUSIBILITY_CHECK_PART_LIST\x10\x04\x32\x97\x10\n\x0b\x41pplication\x12Q\n\x0c\x63reate_model\x12#.dlubal.api.rfem.CreateModelRequest\x1a\x1a.dlubal.api.common.ModelId\"\x00\x12M\n\nopen_model\x12!.dlubal.api.rfem.OpenModelRequest\x1a\x1a.dlubal.api.common.ModelId\"\x00\x12K\n\nsave_model\x12#.dlubal.api.rfem.SaveModelAsRequest\x1a\x16.google.protobuf.Empty\"\x00\x12K\n\x0b\x63lose_model\x12\".dlubal.api.rfem.CloseModelRequest\x1a\x16.google.protobuf.Empty\"\x00\x12T\n\x10\x63lose_all_models\x12&.dlubal.api.rfem.CloseAllModelsRequest\x1a\x16.google.protobuf.Empty\"\x00\x12H\n\x10get_active_model\x12\x16.google.protobuf.Empty\x1a\x1a.dlubal.api.common.ModelId\"\x00\x12H\n\x10set_active_model\x12\x1a.dlubal.api.common.ModelId\x1a\x16.google.protobuf.Empty\"\x00\x12\x45\n\x11\x63lose_application\x12\x16.google.protobuf.Empty\x1a\x16.google.protobuf.Empty\"\x00\x12\x46\n\x0eget_model_list\x12\x16.google.protobuf.Empty\x1a\x1a.dlubal.api.rfem.ModelList\"\x00\x12R\n\x14get_application_info\x12\x16.google.protobuf.Empty\x1a .dlubal.api.rfem.ApplicationInfo\"\x00\x12\x44\n\x10\x63lose_connection\x12\x16.google.protobuf.Empty\x1a\x16.google.protobuf.Empty\"\x00\x12\x45\n\x0fget_object_impl\x12\x17.dlubal.api.rfem.Object\x1a\x17.dlubal.api.rfem.Object\"\x00\x12R\n\x14get_object_list_impl\x12\x1b.dlubal.api.rfem.ObjectList\x1a\x1b.dlubal.api.rfem.ObjectList\"\x00\x12J\n\x12\x63reate_object_impl\x12\x17.dlubal.api.rfem.Object\x1a\x19.dlubal.api.rfem.ObjectId\"\x00\x12\x64\n\x17\x63reate_object_list_impl\x12(.dlubal.api.rfem.CreateObjectListRequest\x1a\x1d.dlubal.api.rfem.ObjectIdList\"\x00\x12G\n\x12update_object_impl\x12\x17.dlubal.api.rfem.Object\x1a\x16.google.protobuf.Empty\"\x00\x12P\n\x17update_object_list_impl\x12\x1b.dlubal.api.rfem.ObjectList\x1a\x16.google.protobuf.Empty\"\x00\x12G\n\x12\x64\x65lete_object_impl\x12\x17.dlubal.api.rfem.Object\x1a\x16.google.protobuf.Empty\"\x00\x12P\n\x17\x64\x65lete_object_list_impl\x12\x1b.dlubal.api.rfem.ObjectList\x1a\x16.google.protobuf.Empty\"\x00\x12R\n\x12\x64\x65lete_all_objects\x12\".dlubal.api.common.OptionalModelId\x1a\x16.google.protobuf.Empty\"\x00\x12Y\n\rcalculate_all\x12$.dlubal.api.rfem.CalculateAllRequest\x1a .dlubal.api.rfem.OperationResult\"\x00\x12Y\n\x10get_results_impl\x12%.dlubal.api.rfem.results.ResultsQuery\x1a\x1c.dlubal.api.common.TableData\"\x00\x12\x63\n\x12plausibility_check\x12).dlubal.api.rfem.PlausibilityCheckRequest\x1a .dlubal.api.rfem.OperationResult\"\x00\x12^\n\x12get_object_id_list\x12\'.dlubal.api.rfem.GetObjectIdListRequest\x1a\x1d.dlubal.api.rfem.ObjectIdList\"\x00\x12g\n\x19get_model_main_parameters\x12\".dlubal.api.common.OptionalModelId\x1a$.dlubal.api.rfem.ModelMainParameters\"\x00\x62\x06proto3')
34
+
35
+ _globals = globals()
36
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
37
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.application_pb2', _globals)
38
+ if not _descriptor._USE_C_DESCRIPTORS:
39
+ DESCRIPTOR._loaded_options = None
40
+ _globals['_APPLICATIONTYPE']._serialized_start=2345
41
+ _globals['_APPLICATIONTYPE']._serialized_end=2586
42
+ _globals['_PLAUSIBILITYCHECKTYPE']._serialized_start=2589
43
+ _globals['_PLAUSIBILITYCHECKTYPE']._serialized_end=2800
44
+ _globals['_CREATEMODELREQUEST']._serialized_start=260
45
+ _globals['_CREATEMODELREQUEST']._serialized_end=340
46
+ _globals['_OPENMODELREQUEST']._serialized_start=342
47
+ _globals['_OPENMODELREQUEST']._serialized_end=374
48
+ _globals['_SAVEMODELASREQUEST']._serialized_start=376
49
+ _globals['_SAVEMODELASREQUEST']._serialized_end=488
50
+ _globals['_CLOSEMODELREQUEST']._serialized_start=490
51
+ _globals['_CLOSEMODELREQUEST']._serialized_end=595
52
+ _globals['_CLOSEALLMODELSREQUEST']._serialized_start=597
53
+ _globals['_CLOSEALLMODELSREQUEST']._serialized_end=642
54
+ _globals['_MODELINFO']._serialized_start=644
55
+ _globals['_MODELINFO']._serialized_end=711
56
+ _globals['_MODELLIST']._serialized_start=713
57
+ _globals['_MODELLIST']._serialized_end=772
58
+ _globals['_APPLICATIONINFO']._serialized_start=775
59
+ _globals['_APPLICATIONINFO']._serialized_end=982
60
+ _globals['_OBJECT']._serialized_start=984
61
+ _globals['_OBJECT']._serialized_end=1094
62
+ _globals['_OBJECTLIST']._serialized_start=1096
63
+ _globals['_OBJECTLIST']._serialized_end=1150
64
+ _globals['_CREATEOBJECTLISTREQUEST']._serialized_start=1152
65
+ _globals['_CREATEOBJECTLISTREQUEST']._serialized_end=1275
66
+ _globals['_OBJECTID']._serialized_start=1278
67
+ _globals['_OBJECTID']._serialized_end=1473
68
+ _globals['_OBJECTIDLIST']._serialized_start=1475
69
+ _globals['_OBJECTIDLIST']._serialized_end=1535
70
+ _globals['_CALCULATEALLREQUEST']._serialized_start=1537
71
+ _globals['_CALCULATEALLREQUEST']._serialized_end=1645
72
+ _globals['_OPERATIONRESULT']._serialized_start=1647
73
+ _globals['_OPERATIONRESULT']._serialized_end=1745
74
+ _globals['_PLAUSIBILITYCHECKREQUEST']._serialized_start=1748
75
+ _globals['_PLAUSIBILITYCHECKREQUEST']._serialized_end=1915
76
+ _globals['_MODELMAINPARAMETERS']._serialized_start=1918
77
+ _globals['_MODELMAINPARAMETERS']._serialized_end=2142
78
+ _globals['_GETOBJECTIDLISTREQUEST']._serialized_start=2145
79
+ _globals['_GETOBJECTIDLISTREQUEST']._serialized_end=2342
80
+ _globals['_APPLICATION']._serialized_start=2803
81
+ _globals['_APPLICATION']._serialized_end=4874
82
+ # @@protoc_insertion_point(module_scope)
@@ -205,3 +205,13 @@ class ModelMainParameters(_message.Message):
205
205
  project_description: str
206
206
  project_folder: str
207
207
  def __init__(self, model_id: _Optional[str] = ..., model_name: _Optional[str] = ..., model_description: _Optional[str] = ..., model_comment: _Optional[str] = ..., model_path: _Optional[str] = ..., project_id: _Optional[str] = ..., project_name: _Optional[str] = ..., project_description: _Optional[str] = ..., project_folder: _Optional[str] = ...) -> None: ...
208
+
209
+ class GetObjectIdListRequest(_message.Message):
210
+ __slots__ = ("object_type", "parent_no", "model_id")
211
+ OBJECT_TYPE_FIELD_NUMBER: _ClassVar[int]
212
+ PARENT_NO_FIELD_NUMBER: _ClassVar[int]
213
+ MODEL_ID_FIELD_NUMBER: _ClassVar[int]
214
+ object_type: _object_type_pb2.ObjectType
215
+ parent_no: int
216
+ model_id: _model_id_pb2.ModelId
217
+ def __init__(self, object_type: _Optional[_Union[_object_type_pb2.ObjectType, str]] = ..., parent_no: _Optional[int] = ..., model_id: _Optional[_Union[_model_id_pb2.ModelId, _Mapping]] = ...) -> None: ...
@@ -153,6 +153,11 @@ class ApplicationStub(object):
153
153
  request_serializer=dlubal_dot_api_dot_rfem_dot_application__pb2.PlausibilityCheckRequest.SerializeToString,
154
154
  response_deserializer=dlubal_dot_api_dot_rfem_dot_application__pb2.OperationResult.FromString,
155
155
  _registered_method=True)
156
+ self.get_object_id_list = channel.unary_unary(
157
+ '/dlubal.api.rfem.Application/get_object_id_list',
158
+ request_serializer=dlubal_dot_api_dot_rfem_dot_application__pb2.GetObjectIdListRequest.SerializeToString,
159
+ response_deserializer=dlubal_dot_api_dot_rfem_dot_application__pb2.ObjectIdList.FromString,
160
+ _registered_method=True)
156
161
  self.get_model_main_parameters = channel.unary_unary(
157
162
  '/dlubal.api.rfem.Application/get_model_main_parameters',
158
163
  request_serializer=dlubal_dot_api_dot_common_dot_model__id__pb2.OptionalModelId.SerializeToString,
@@ -236,7 +241,7 @@ class ApplicationServicer(object):
236
241
  raise NotImplementedError('Method not implemented!')
237
242
 
238
243
  def close_connection(self, request, context):
239
- """Closes connection to Webservice server
244
+ """Closes connection to API server
240
245
  """
241
246
  context.set_code(grpc.StatusCode.UNIMPLEMENTED)
242
247
  context.set_details('Method not implemented!')
@@ -319,8 +324,18 @@ class ApplicationServicer(object):
319
324
  context.set_details('Method not implemented!')
320
325
  raise NotImplementedError('Method not implemented!')
321
326
 
327
+ def get_object_id_list(self, request, context):
328
+ """Retrieves object ids filtered by a specific type.
329
+ If you want to retrieve all object ids, do not specify the object_type.
330
+ """
331
+ context.set_code(grpc.StatusCode.UNIMPLEMENTED)
332
+ context.set_details('Method not implemented!')
333
+ raise NotImplementedError('Method not implemented!')
334
+
322
335
  def get_model_main_parameters(self, request, context):
323
- """Missing associated documentation comment in .proto file."""
336
+ """Retrieves the main parameters of a model, including its ID, name, description,
337
+ comments, file path, and associated project details.
338
+ """
324
339
  context.set_code(grpc.StatusCode.UNIMPLEMENTED)
325
340
  context.set_details('Method not implemented!')
326
341
  raise NotImplementedError('Method not implemented!')
@@ -443,6 +458,11 @@ def add_ApplicationServicer_to_server(servicer, server):
443
458
  request_deserializer=dlubal_dot_api_dot_rfem_dot_application__pb2.PlausibilityCheckRequest.FromString,
444
459
  response_serializer=dlubal_dot_api_dot_rfem_dot_application__pb2.OperationResult.SerializeToString,
445
460
  ),
461
+ 'get_object_id_list': grpc.unary_unary_rpc_method_handler(
462
+ servicer.get_object_id_list,
463
+ request_deserializer=dlubal_dot_api_dot_rfem_dot_application__pb2.GetObjectIdListRequest.FromString,
464
+ response_serializer=dlubal_dot_api_dot_rfem_dot_application__pb2.ObjectIdList.SerializeToString,
465
+ ),
446
466
  'get_model_main_parameters': grpc.unary_unary_rpc_method_handler(
447
467
  servicer.get_model_main_parameters,
448
468
  request_deserializer=dlubal_dot_api_dot_common_dot_model__id__pb2.OptionalModelId.FromString,
@@ -1080,6 +1100,33 @@ class Application(object):
1080
1100
  metadata,
1081
1101
  _registered_method=True)
1082
1102
 
1103
+ @staticmethod
1104
+ def get_object_id_list(request,
1105
+ target,
1106
+ options=(),
1107
+ channel_credentials=None,
1108
+ call_credentials=None,
1109
+ insecure=False,
1110
+ compression=None,
1111
+ wait_for_ready=None,
1112
+ timeout=None,
1113
+ metadata=None):
1114
+ return grpc.experimental.unary_unary(
1115
+ request,
1116
+ target,
1117
+ '/dlubal.api.rfem.Application/get_object_id_list',
1118
+ dlubal_dot_api_dot_rfem_dot_application__pb2.GetObjectIdListRequest.SerializeToString,
1119
+ dlubal_dot_api_dot_rfem_dot_application__pb2.ObjectIdList.FromString,
1120
+ options,
1121
+ channel_credentials,
1122
+ insecure,
1123
+ call_credentials,
1124
+ compression,
1125
+ wait_for_ready,
1126
+ timeout,
1127
+ metadata,
1128
+ _registered_method=True)
1129
+
1083
1130
  @staticmethod
1084
1131
  def get_model_main_parameters(request,
1085
1132
  target,
@@ -0,0 +1,42 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # NO CHECKED-IN PROTOBUF GENCODE
4
+ # source: dlubal/api/rfem/base_data/terrain.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/base_data/terrain.proto'
19
+ )
20
+ # @@protoc_insertion_point(imports)
21
+
22
+ _sym_db = _symbol_database.Default()
23
+
24
+
25
+
26
+
27
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\'dlubal/api/rfem/base_data/terrain.proto\x12\x19\x64lubal.api.rfem.base_data\"\xc3\x05\n\x07Terrain\x12\x0f\n\x02no\x18\x01 \x01(\x05H\x00\x88\x01\x01\x12\x39\n\x04type\x18\x02 \x01(\x0e\x32&.dlubal.api.rfem.base_data.TerrainTypeH\x01\x88\x01\x01\x12\x14\n\x07\x63omment\x18\x03 \x01(\tH\x02\x88\x01\x01\x12\"\n\x15\x62ounding_box_offset_x\x18\x04 \x01(\x01H\x03\x88\x01\x01\x12\"\n\x15\x62ounding_box_offset_y\x18\x05 \x01(\x01H\x04\x88\x01\x01\x12 \n\x13\x63\x65nter_of_terrain_z\x18\x06 \x01(\x01H\x05\x88\x01\x01\x12\x1e\n\x11rotation_around_Z\x18\x07 \x01(\x01H\x06\x88\x01\x01\x12\x1f\n\x12\x63onsider_boreholes\x18\x08 \x01(\x08H\x07\x88\x01\x01\x12\x1e\n\x11\x63oordinate_system\x18\t \x01(\x05H\x08\x88\x01\x01\x12J\n\rterrain_table\x18\n \x01(\x0b\x32..dlubal.api.rfem.base_data.TerrainTerrainTableH\t\x88\x01\x01\x12!\n\x14id_for_export_import\x18\x0b \x01(\tH\n\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\x0c \x01(\tH\x0b\x88\x01\x01\x42\x05\n\x03_noB\x07\n\x05_typeB\n\n\x08_commentB\x18\n\x16_bounding_box_offset_xB\x18\n\x16_bounding_box_offset_yB\x16\n\x14_center_of_terrain_zB\x14\n\x12_rotation_around_ZB\x15\n\x13_consider_boreholesB\x14\n\x12_coordinate_systemB\x10\n\x0e_terrain_tableB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_import\"V\n\x13TerrainTerrainTable\x12?\n\x04rows\x18\x01 \x03(\x0b\x32\x31.dlubal.api.rfem.base_data.TerrainTerrainTableRow\"\xc6\x01\n\x16TerrainTerrainTableRow\x12\x0f\n\x02no\x18\x01 \x01(\x05H\x00\x88\x01\x01\x12\x18\n\x0b\x64\x65scription\x18\x02 \x01(\tH\x01\x88\x01\x01\x12\x15\n\x08global_x\x18\x03 \x01(\x01H\x02\x88\x01\x01\x12\x15\n\x08global_y\x18\x04 \x01(\x01H\x03\x88\x01\x01\x12\x15\n\x08global_z\x18\x05 \x01(\x01H\x04\x88\x01\x01\x42\x05\n\x03_noB\x0e\n\x0c_descriptionB\x0b\n\t_global_xB\x0b\n\t_global_yB\x0b\n\t_global_z*\xbc\x01\n\x0bTerrainType\x12\x18\n\x14TERRAIN_TYPE_UNKNOWN\x10\x00\x12\x1a\n\x16TERRAIN_TYPE_BOREHOLES\x10\x05\x12!\n\x1dTERRAIN_TYPE_HORIZONTAL_PLANE\x10\x02\x12\x1f\n\x1bTERRAIN_TYPE_INCLINED_PLANE\x10\x03\x12\x1b\n\x17TERRAIN_TYPE_NO_TERRAIN\x10\x01\x12\x16\n\x12TERRAIN_TYPE_TABLE\x10\x04\x62\x06proto3')
28
+
29
+ _globals = globals()
30
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
31
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.base_data.terrain_pb2', _globals)
32
+ if not _descriptor._USE_C_DESCRIPTORS:
33
+ DESCRIPTOR._loaded_options = None
34
+ _globals['_TERRAINTYPE']._serialized_start=1070
35
+ _globals['_TERRAINTYPE']._serialized_end=1258
36
+ _globals['_TERRAIN']._serialized_start=71
37
+ _globals['_TERRAIN']._serialized_end=778
38
+ _globals['_TERRAINTERRAINTABLE']._serialized_start=780
39
+ _globals['_TERRAINTERRAINTABLE']._serialized_end=866
40
+ _globals['_TERRAINTERRAINTABLEROW']._serialized_start=869
41
+ _globals['_TERRAINTERRAINTABLEROW']._serialized_end=1067
42
+ # @@protoc_insertion_point(module_scope)