ansys-fluent-core 0.20.dev10__py3-none-any.whl → 0.20.dev11__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 ansys-fluent-core might be problematic. Click here for more details.

Files changed (254) hide show
  1. ansys/fluent/core/__init__.py +1 -1
  2. ansys/fluent/core/_version.py +1 -1
  3. ansys/fluent/core/data/api_tree_222.pickle +0 -0
  4. ansys/fluent/core/data/api_tree_231.pickle +0 -0
  5. ansys/fluent/core/data/api_tree_232.pickle +0 -0
  6. ansys/fluent/core/data/api_tree_241.pickle +0 -0
  7. ansys/fluent/core/data/api_tree_242.pickle +0 -0
  8. ansys/fluent/core/datamodel_242/flicing.py +43 -0
  9. ansys/fluent/core/fluent_version_242.py +3 -3
  10. ansys/fluent/core/meshing/2d_meshing.py +25 -0
  11. ansys/fluent/core/meshing/meshing_workflow.py +66 -2
  12. ansys/fluent/core/meshing/topology_based.py +25 -0
  13. ansys/fluent/core/meshing/tui_231.py +7600 -7600
  14. ansys/fluent/core/meshing/tui_232.py +8059 -8059
  15. ansys/fluent/core/meshing/tui_241.py +8002 -8002
  16. ansys/fluent/core/meshing/tui_242.py +7965 -7965
  17. ansys/fluent/core/services/datamodel_se.py +6 -3
  18. ansys/fluent/core/services/settings.py +4 -1
  19. ansys/fluent/core/session_base_meshing.py +24 -0
  20. ansys/fluent/core/session_pure_meshing.py +18 -0
  21. ansys/fluent/core/session_pure_meshing.pyi +2 -0
  22. ansys/fluent/core/solver/settings_222/__init__.py +1 -1
  23. ansys/fluent/core/solver/settings_222/inlet_vent_child.py +4 -9
  24. ansys/fluent/core/solver/settings_222/intake_fan_child.py +4 -9
  25. ansys/fluent/core/solver/settings_222/mass_flow_inlet_child.py +2 -7
  26. ansys/fluent/core/solver/settings_222/phase_child_16.py +2 -7
  27. ansys/fluent/core/solver/settings_222/phase_child_17.py +4 -8
  28. ansys/fluent/core/solver/settings_222/phase_child_23.py +4 -8
  29. ansys/fluent/core/solver/settings_222/phase_child_5.py +4 -9
  30. ansys/fluent/core/solver/settings_222/phase_child_6.py +4 -9
  31. ansys/fluent/core/solver/settings_222/phase_child_9.py +2 -7
  32. ansys/fluent/core/solver/settings_222/pressure_far_field_child.py +2 -7
  33. ansys/fluent/core/solver/settings_222/pressure_inlet_child.py +4 -8
  34. ansys/fluent/core/solver/settings_222/velocity_inlet_child.py +4 -8
  35. ansys/fluent/core/solver/settings_231/__init__.py +1 -1
  36. ansys/fluent/core/solver/settings_231/inlet_vent_child.py +4 -9
  37. ansys/fluent/core/solver/settings_231/intake_fan_child.py +5 -10
  38. ansys/fluent/core/solver/settings_231/mass_flow_inlet_child.py +13 -17
  39. ansys/fluent/core/solver/settings_231/phase_child_16.py +2 -7
  40. ansys/fluent/core/solver/settings_231/phase_child_17.py +4 -8
  41. ansys/fluent/core/solver/settings_231/phase_child_23.py +4 -8
  42. ansys/fluent/core/solver/settings_231/phase_child_5.py +4 -9
  43. ansys/fluent/core/solver/settings_231/phase_child_6.py +5 -10
  44. ansys/fluent/core/solver/settings_231/phase_child_9.py +13 -17
  45. ansys/fluent/core/solver/settings_231/pressure_far_field_child.py +2 -7
  46. ansys/fluent/core/solver/settings_231/pressure_inlet_child.py +4 -8
  47. ansys/fluent/core/solver/settings_231/velocity_inlet_child.py +4 -8
  48. ansys/fluent/core/solver/settings_232/__init__.py +1 -1
  49. ansys/fluent/core/solver/settings_232/inlet_vent_child.py +5 -9
  50. ansys/fluent/core/solver/settings_232/intake_fan_child.py +6 -11
  51. ansys/fluent/core/solver/settings_232/mass_flow_inlet_child.py +3 -8
  52. ansys/fluent/core/solver/settings_232/phase_child_16.py +4 -8
  53. ansys/fluent/core/solver/settings_232/phase_child_17.py +4 -9
  54. ansys/fluent/core/solver/settings_232/phase_child_23.py +4 -9
  55. ansys/fluent/core/solver/settings_232/phase_child_5.py +5 -9
  56. ansys/fluent/core/solver/settings_232/phase_child_6.py +6 -11
  57. ansys/fluent/core/solver/settings_232/phase_child_9.py +3 -8
  58. ansys/fluent/core/solver/settings_232/pressure_far_field_child.py +4 -8
  59. ansys/fluent/core/solver/settings_232/pressure_inlet_child.py +4 -9
  60. ansys/fluent/core/solver/settings_232/velocity_inlet_child.py +4 -9
  61. ansys/fluent/core/solver/settings_241/__init__.py +1 -1
  62. ansys/fluent/core/solver/settings_241/icing_1.py +1 -6
  63. ansys/fluent/core/solver/settings_241/phase_child_17.py +5 -9
  64. ansys/fluent/core/solver/settings_241/pressure_far_field_child.py +5 -9
  65. ansys/fluent/core/solver/settings_242/__init__.py +1 -1
  66. ansys/fluent/core/solver/{settings_241/fensapice_drop_vrh_1.py → settings_242/activation_function.py} +3 -3
  67. ansys/fluent/core/solver/settings_242/{fensapice_drop_vrh_1.py → active_2.py} +3 -3
  68. ansys/fluent/core/solver/{settings_231/fensapice_drop_vrh_1.py → settings_242/adjoint_iterations.py} +3 -3
  69. ansys/fluent/core/solver/{settings_222/fensapice_drop_vrh.py → settings_242/adjustable_tolerance.py} +3 -3
  70. ansys/fluent/core/solver/settings_242/anode_cl_conductivity.py +23 -0
  71. ansys/fluent/core/solver/settings_242/anode_cl_zone.py +5 -2
  72. ansys/fluent/core/solver/settings_242/apply_trained_model.py +23 -0
  73. ansys/fluent/core/solver/settings_242/as_percentage.py +23 -0
  74. ansys/fluent/core/solver/settings_242/auto.py +1 -1
  75. ansys/fluent/core/solver/settings_242/auto_options.py +4 -4
  76. ansys/fluent/core/solver/settings_242/autosave_1.py +37 -0
  77. ansys/fluent/core/solver/settings_242/calculation_activities_1.py +33 -0
  78. ansys/fluent/core/solver/settings_242/cathode_cl_conductivity.py +23 -0
  79. ansys/fluent/core/solver/settings_242/cathode_cl_zone.py +5 -2
  80. ansys/fluent/core/solver/settings_242/clear_model.py +23 -0
  81. ansys/fluent/core/solver/settings_242/compound.py +1 -1
  82. ansys/fluent/core/solver/settings_242/condition_1.py +23 -0
  83. ansys/fluent/core/solver/settings_242/conditions_4.py +39 -0
  84. ansys/fluent/core/solver/settings_242/conditions_child.py +35 -0
  85. ansys/fluent/core/solver/settings_242/convergence_criteria.py +23 -0
  86. ansys/fluent/core/solver/settings_242/count_1.py +23 -0
  87. ansys/fluent/core/solver/settings_242/criteria.py +38 -0
  88. ansys/fluent/core/solver/settings_242/current_design_iteration.py +23 -0
  89. ansys/fluent/core/solver/settings_242/default_6.py +23 -0
  90. ansys/fluent/core/solver/settings_242/default_7.py +23 -0
  91. ansys/fluent/core/solver/settings_242/default_8.py +23 -0
  92. ansys/fluent/core/solver/settings_242/default_limits.py +23 -0
  93. ansys/fluent/core/solver/settings_242/definition_child.py +1 -1
  94. ansys/fluent/core/solver/settings_242/delete_4.py +6 -6
  95. ansys/fluent/core/solver/settings_242/delete_5.py +6 -10
  96. ansys/fluent/core/solver/settings_242/delete_6.py +10 -6
  97. ansys/fluent/core/solver/settings_242/delete_7.py +37 -0
  98. ansys/fluent/core/solver/settings_242/delete_all_1.py +2 -2
  99. ansys/fluent/core/solver/settings_242/delete_all_2.py +23 -0
  100. ansys/fluent/core/solver/settings_242/design_iterations.py +23 -0
  101. ansys/fluent/core/solver/settings_242/design_region.py +23 -0
  102. ansys/fluent/core/solver/settings_242/design_variables.py +40 -0
  103. ansys/fluent/core/solver/settings_242/display_profile_point_cloud_data.py +45 -0
  104. ansys/fluent/core/solver/settings_242/display_profile_surface.py +45 -0
  105. ansys/fluent/core/solver/{settings_231/fensapice_drop_vrh.py → settings_242/enable_turbulence_source_term.py} +3 -3
  106. ansys/fluent/core/solver/settings_242/evaluation.py +35 -0
  107. ansys/fluent/core/solver/settings_242/execute_commands.py +1 -1
  108. ansys/fluent/core/solver/settings_242/expected_observables_values.py +23 -0
  109. ansys/fluent/core/solver/settings_242/export_data.py +37 -0
  110. ansys/fluent/core/solver/settings_242/export_model.py +37 -0
  111. ansys/fluent/core/solver/settings_242/export_stl_1.py +33 -0
  112. ansys/fluent/core/solver/settings_242/{fensapice_drop_vrh.py → fensapice_dpm_rh_mode.py} +2 -2
  113. ansys/fluent/core/solver/settings_242/field_contour.py +23 -0
  114. ansys/fluent/core/solver/settings_242/field_variable.py +1 -1
  115. ansys/fluent/core/solver/settings_242/field_variable_1.py +23 -0
  116. ansys/fluent/core/solver/settings_242/filed_variable.py +23 -0
  117. ansys/fluent/core/solver/settings_242/filename_15.py +23 -0
  118. ansys/fluent/core/solver/settings_242/filename_16.py +23 -0
  119. ansys/fluent/core/solver/settings_242/filename_17.py +23 -0
  120. ansys/fluent/core/solver/settings_242/files_1.py +23 -0
  121. ansys/fluent/core/solver/settings_242/flow_iterations.py +23 -0
  122. ansys/fluent/core/solver/settings_242/frequency_5.py +1 -1
  123. ansys/fluent/core/solver/settings_242/frequency_6.py +23 -0
  124. ansys/fluent/core/solver/settings_242/frequency_7.py +23 -0
  125. ansys/fluent/core/solver/settings_242/frequency_8.py +23 -0
  126. ansys/fluent/core/solver/settings_242/goal.py +23 -0
  127. ansys/fluent/core/solver/settings_242/gradient_based.py +4 -1
  128. ansys/fluent/core/solver/settings_242/gradient_based_optimizer.py +56 -0
  129. ansys/fluent/core/solver/settings_242/graphics_object.py +23 -0
  130. ansys/fluent/core/solver/settings_242/graphics_objects.py +1 -1
  131. ansys/fluent/core/solver/settings_242/icing.py +6 -1
  132. ansys/fluent/core/solver/settings_242/icing_1.py +5 -8
  133. ansys/fluent/core/solver/settings_242/id_1.py +23 -0
  134. ansys/fluent/core/solver/settings_242/id_2.py +23 -0
  135. ansys/fluent/core/solver/settings_242/import_data.py +37 -0
  136. ansys/fluent/core/solver/settings_242/import_model.py +37 -0
  137. ansys/fluent/core/solver/settings_242/include_current_data_1.py +23 -0
  138. ansys/fluent/core/solver/settings_242/initialize_3.py +1 -15
  139. ansys/fluent/core/solver/settings_242/initialize_4.py +23 -0
  140. ansys/fluent/core/solver/settings_242/initialize_5.py +37 -0
  141. ansys/fluent/core/solver/settings_242/initialize_neural_network.py +23 -0
  142. ansys/fluent/core/solver/settings_242/input_features.py +23 -0
  143. ansys/fluent/core/solver/settings_242/learning_rate.py +23 -0
  144. ansys/fluent/core/solver/settings_242/length_factor.py +23 -0
  145. ansys/fluent/core/solver/settings_242/limits_1.py +45 -0
  146. ansys/fluent/core/solver/settings_242/limits_child.py +23 -0
  147. ansys/fluent/core/solver/settings_242/list_profile_fields.py +37 -0
  148. ansys/fluent/core/solver/settings_242/list_profile_parameters.py +37 -0
  149. ansys/fluent/core/solver/settings_242/list_profile_parameters_with_value.py +37 -0
  150. ansys/fluent/core/solver/settings_242/list_profiles.py +23 -0
  151. ansys/fluent/core/solver/settings_242/manage_data_1.py +42 -0
  152. ansys/fluent/core/solver/settings_242/management.py +35 -0
  153. ansys/fluent/core/solver/settings_242/max_epochs.py +23 -0
  154. ansys/fluent/core/solver/settings_242/maximum_5.py +23 -0
  155. ansys/fluent/core/solver/settings_242/mesh_quality.py +33 -0
  156. ansys/fluent/core/solver/settings_242/method_19.py +1 -1
  157. ansys/fluent/core/solver/settings_242/method_20.py +2 -20
  158. ansys/fluent/core/solver/settings_242/method_21.py +1 -1
  159. ansys/fluent/core/solver/settings_242/method_22.py +41 -0
  160. ansys/fluent/core/solver/{settings_222/fensapice_drop_vrh_1.py → settings_242/method_23.py} +3 -3
  161. ansys/fluent/core/solver/settings_242/min_cell_volume.py +23 -0
  162. ansys/fluent/core/solver/settings_242/min_orthogonal.py +23 -0
  163. ansys/fluent/core/solver/settings_242/mini_batch_size.py +23 -0
  164. ansys/fluent/core/solver/settings_242/model_4.py +37 -0
  165. ansys/fluent/core/solver/settings_242/monitor_3.py +48 -0
  166. ansys/fluent/core/solver/settings_242/neural_network_topology.py +39 -0
  167. ansys/fluent/core/solver/settings_242/neural_network_topology_child.py +23 -0
  168. ansys/fluent/core/solver/settings_242/normalize_1.py +23 -0
  169. ansys/fluent/core/solver/settings_242/objectives_2.py +39 -0
  170. ansys/fluent/core/solver/settings_242/objectives_3.py +35 -0
  171. ansys/fluent/core/solver/settings_242/objectives_child_1.py +42 -0
  172. ansys/fluent/core/solver/settings_242/observable_3.py +23 -0
  173. ansys/fluent/core/solver/settings_242/observables_1.py +33 -0
  174. ansys/fluent/core/solver/settings_242/observables_values.py +23 -0
  175. ansys/fluent/core/solver/settings_242/offline_training.py +49 -0
  176. ansys/fluent/core/solver/settings_242/operating_conditions_1.py +37 -0
  177. ansys/fluent/core/solver/settings_242/optimization_id_to_plot.py +23 -0
  178. ansys/fluent/core/solver/settings_242/optimize.py +23 -0
  179. ansys/fluent/core/solver/settings_242/optimizer_settings.py +42 -0
  180. ansys/fluent/core/solver/settings_242/optimizer_type.py +23 -0
  181. ansys/fluent/core/solver/settings_242/options_19.py +31 -0
  182. ansys/fluent/core/solver/settings_242/overlay.py +23 -0
  183. ansys/fluent/core/solver/settings_242/overlay_1.py +23 -0
  184. ansys/fluent/core/solver/settings_242/overlay_profile_point_cloud_data.py +45 -0
  185. ansys/fluent/core/solver/settings_242/overlay_profile_surface.py +54 -0
  186. ansys/fluent/core/solver/settings_242/parameters_5.py +14 -10
  187. ansys/fluent/core/solver/settings_242/parameters_6.py +45 -0
  188. ansys/fluent/core/solver/settings_242/parameters_7.py +35 -0
  189. ansys/fluent/core/solver/settings_242/parameters_child_1.py +23 -0
  190. ansys/fluent/core/solver/settings_242/parameters_child_2.py +23 -0
  191. ansys/fluent/core/solver/settings_242/parameters_count.py +23 -0
  192. ansys/fluent/core/solver/settings_242/parametric_studies.py +1 -1
  193. ansys/fluent/core/solver/settings_242/partition_3.py +1 -1
  194. ansys/fluent/core/solver/settings_242/plane_surface_child.py +1 -1
  195. ansys/fluent/core/solver/settings_242/playback.py +1 -1
  196. ansys/fluent/core/solver/settings_242/plot_14.py +23 -0
  197. ansys/fluent/core/solver/settings_242/plot_all_optimization_ids.py +23 -0
  198. ansys/fluent/core/solver/settings_242/plot_during_optimization.py +23 -0
  199. ansys/fluent/core/solver/settings_242/porous_jump_turb_wall_treatment.py +1 -1
  200. ansys/fluent/core/solver/settings_242/porous_zone.py +10 -1
  201. ansys/fluent/core/solver/settings_242/post_morph.py +33 -0
  202. ansys/fluent/core/solver/settings_242/print_current_status.py +23 -0
  203. ansys/fluent/core/solver/settings_242/profile_name_1.py +23 -0
  204. ansys/fluent/core/solver/settings_242/profile_point_marker.py +23 -0
  205. ansys/fluent/core/solver/settings_242/profile_point_marker_color.py +23 -0
  206. ansys/fluent/core/solver/settings_242/profile_point_marker_size.py +23 -0
  207. ansys/fluent/core/solver/settings_242/profiles.py +56 -0
  208. ansys/fluent/core/solver/settings_242/rad_porous_wall.py +23 -0
  209. ansys/fluent/core/solver/settings_242/rad_porous_wall_diffuse_fraction.py +23 -0
  210. ansys/fluent/core/solver/settings_242/rad_porous_wall_in_emiss.py +43 -0
  211. ansys/fluent/core/solver/settings_242/remeshing.py +23 -0
  212. ansys/fluent/core/solver/settings_242/remove_1.py +37 -0
  213. ansys/fluent/core/solver/settings_242/reset_3.py +1 -1
  214. ansys/fluent/core/solver/settings_242/reset_4.py +23 -0
  215. ansys/fluent/core/solver/settings_242/root.py +1 -1
  216. ansys/fluent/core/solver/settings_242/sampling_after.py +23 -0
  217. ansys/fluent/core/solver/settings_242/save_files.py +33 -0
  218. ansys/fluent/core/solver/settings_242/save_optimal.py +23 -0
  219. ansys/fluent/core/solver/settings_242/scene_child.py +1 -1
  220. ansys/fluent/core/solver/settings_242/selection_2.py +23 -0
  221. ansys/fluent/core/solver/settings_242/selection_3.py +23 -0
  222. ansys/fluent/core/solver/settings_242/set_one_to_one_pairing_tolerance.py +20 -2
  223. ansys/fluent/core/solver/settings_242/set_preference_profile_point_cloud_data.py +46 -0
  224. ansys/fluent/core/solver/settings_242/settings_6.py +43 -0
  225. ansys/fluent/core/solver/settings_242/setup.py +3 -1
  226. ansys/fluent/core/solver/settings_242/single_session_coupling.py +2 -2
  227. ansys/fluent/core/solver/settings_242/smooth_sensitivities.py +23 -0
  228. ansys/fluent/core/solver/settings_242/smoothing_1.py +23 -0
  229. ansys/fluent/core/solver/settings_242/step_size_1.py +23 -0
  230. ansys/fluent/core/solver/settings_242/summarize.py +23 -0
  231. ansys/fluent/core/solver/settings_242/temporary.py +1 -1
  232. ansys/fluent/core/solver/settings_242/timer.py +1 -1
  233. ansys/fluent/core/solver/settings_242/title_1.py +23 -0
  234. ansys/fluent/core/solver/settings_242/train.py +23 -0
  235. ansys/fluent/core/solver/settings_242/training_data_files.py +23 -0
  236. ansys/fluent/core/solver/settings_242/transparency_1.py +1 -1
  237. ansys/fluent/core/solver/settings_242/turbulence_model_design_tool.py +33 -0
  238. ansys/fluent/core/solver/settings_242/two_session_coupling.py +2 -2
  239. ansys/fluent/core/solver/settings_242/type_12.py +23 -0
  240. ansys/fluent/core/solver/settings_242/unhook_model.py +23 -0
  241. ansys/fluent/core/solver/settings_242/variables_1.py +42 -0
  242. ansys/fluent/core/solver/settings_242/wall_treatment_1.py +23 -0
  243. ansys/fluent/core/solver/tui_231.py +33993 -34674
  244. ansys/fluent/core/solver/tui_232.py +25563 -25563
  245. ansys/fluent/core/solver/tui_241.py +26971 -26971
  246. ansys/fluent/core/solver/tui_242.py +29538 -29520
  247. ansys/fluent/tests/test_flobject.py +15 -3
  248. {ansys_fluent_core-0.20.dev10.dist-info → ansys_fluent_core-0.20.dev11.dist-info}/METADATA +1 -1
  249. {ansys_fluent_core-0.20.dev10.dist-info → ansys_fluent_core-0.20.dev11.dist-info}/RECORD +251 -120
  250. ansys/fluent/core/solver/settings_232/fensapice_drop_vrh.py +0 -23
  251. ansys/fluent/core/solver/settings_232/fensapice_drop_vrh_1.py +0 -23
  252. ansys/fluent/core/solver/settings_241/fensapice_drop_vrh.py +0 -23
  253. {ansys_fluent_core-0.20.dev10.dist-info → ansys_fluent_core-0.20.dev11.dist-info}/LICENSE +0 -0
  254. {ansys_fluent_core-0.20.dev10.dist-info → ansys_fluent_core-0.20.dev11.dist-info}/WHEEL +0 -0
@@ -342,12 +342,14 @@ class EventSubscription:
342
342
  SubscribeEventError
343
343
  If server fails to subscribe from event.
344
344
  """
345
+ self.is_subscribed = False
345
346
  self._service = service
346
347
  response = service.subscribe_events(request_dict)
347
348
  response = response[0]
348
349
  if response["status"] != DataModelProtoModule.STATUS_SUBSCRIBED:
349
350
  raise SubscribeEventError(request_dict)
350
- self.status = response["status"]
351
+ else:
352
+ self.is_subscribed = True
351
353
  self.tag = response["tag"]
352
354
  self._service.events[self.tag] = self
353
355
 
@@ -359,13 +361,14 @@ class EventSubscription:
359
361
  UnsubscribeEventError
360
362
  If server fails to unsubscribe from event.
361
363
  """
362
- if self.status == DataModelProtoModule.STATUS_SUBSCRIBED:
364
+ if self.is_subscribed:
363
365
  self._service.event_streaming.unregister_callback(self.tag)
364
366
  response = self._service.unsubscribe_events([self.tag])
365
367
  response = response[0]
366
368
  if response["status"] != DataModelProtoModule.STATUS_UNSUBSCRIBED:
367
369
  raise UnsubscribeEventError(self.tag)
368
- self.status = response["status"]
370
+ else:
371
+ self.is_subscribed = False
369
372
  self._service.events.pop(self.tag, None)
370
373
 
371
374
  def __del__(self) -> None:
@@ -177,7 +177,8 @@ class SettingsService:
177
177
  return [self._get_state_from_value(v) for v in state.value_list.lst]
178
178
  elif t == "value_map":
179
179
  return {
180
- k: self._get_state_from_value(v) for k, v in state.value_map.m.items()
180
+ k: self._get_state_from_value(v)
181
+ for k, v in sorted(state.value_map.m.items())
181
182
  }
182
183
  else:
183
184
  return None
@@ -258,6 +259,8 @@ class SettingsService:
258
259
  ret["children"] = {
259
260
  child.name: self._extract_static_info(child.value)
260
261
  for child in info.children
262
+ # TODO: resolve the case when multiple children under same parent have identical python name
263
+ if child.name not in ("fensapice-drop-vrh?", "fensapice-drop-vrh")
261
264
  }
262
265
  if info.commands:
263
266
  ret["commands"] = {
@@ -7,6 +7,8 @@ from ansys.fluent.core.fluent_connection import FluentConnection
7
7
  from ansys.fluent.core.meshing.meshing_workflow import (
8
8
  ClassicMeshingWorkflow,
9
9
  FaultTolerantMeshingWorkflow,
10
+ TopologyBasedMeshingWorkflow,
11
+ TwoDimensionalMeshingWorkflow,
10
12
  WatertightMeshingWorkflow,
11
13
  )
12
14
  from ansys.fluent.core.services.datamodel_se import PyMenuGeneric
@@ -50,6 +52,8 @@ class BaseMeshing:
50
52
  self._old_workflow = None
51
53
  self._wt_workflow = None
52
54
  self._ft_workflow = None
55
+ self._2dm_workflow = None
56
+ self._tb_workflow = None
53
57
  self._part_management = None
54
58
  self._pm_file_management = None
55
59
  self._preferences = None
@@ -176,6 +180,26 @@ class BaseMeshing:
176
180
  )
177
181
  return self._ft_workflow
178
182
 
183
+ @property
184
+ def two_dimensional_meshing_workflow(self):
185
+ """Datamodel root of workflow exposed in object-oriented manner."""
186
+ if not self._2dm_workflow:
187
+ self._2dm_workflow = TwoDimensionalMeshingWorkflow(
188
+ self._workflow_se,
189
+ self.meshing,
190
+ )
191
+ return self._2dm_workflow
192
+
193
+ @property
194
+ def topology_based_meshing_workflow(self):
195
+ """Datamodel root of workflow exposed in object-oriented manner."""
196
+ if not self._tb_workflow:
197
+ self._tb_workflow = TopologyBasedMeshingWorkflow(
198
+ self._workflow_se,
199
+ self.meshing,
200
+ )
201
+ return self._tb_workflow
202
+
179
203
  @property
180
204
  def PartManagement(self):
181
205
  """Datamdoel root of PartManagement."""
@@ -107,6 +107,24 @@ class PureMeshing(BaseSession):
107
107
  self._base_meshing.fault_tolerant_workflow.reinitialize()
108
108
  return self._base_meshing.fault_tolerant_workflow
109
109
 
110
+ def two_dimensional_meshing(self):
111
+ """Get a new 2D meshing workflow."""
112
+ self._base_meshing.two_dimensional_meshing_workflow.reinitialize()
113
+ return self._base_meshing.two_dimensional_meshing_workflow
114
+
115
+ def topology_based(self):
116
+ """Get a new topology-based meshing workflow.
117
+
118
+ Raises
119
+ ------
120
+ RuntimeError
121
+ If beta features are not enabled in Fluent.
122
+ """
123
+ if not self.scheme_eval.scheme_eval("(is-beta-feature-available?)"):
124
+ raise RuntimeError("Topology-based Meshing is a beta feature in Fluent.")
125
+ self._base_meshing.topology_based_meshing_workflow.reinitialize()
126
+ return self._base_meshing.topology_based_meshing_workflow
127
+
110
128
  @property
111
129
  def PartManagement(self):
112
130
  """Datamodel root of PartManagement."""
@@ -21,6 +21,8 @@ class PureMeshing:
21
21
  def workflow(self) -> workflow_root: ...
22
22
  def watertight(self): ...
23
23
  def fault_tolerant(self): ...
24
+ def two_dimensional_meshing(self): ...
25
+ def topology_based(self): ...
24
26
  @property
25
27
  def PartManagement(self) -> partmanagement_root: ...
26
28
  @property
@@ -5,5 +5,5 @@
5
5
  """A package providing Fluent's Settings Objects in Python."""
6
6
  from ansys.fluent.core.solver.flobject import *
7
7
 
8
- SHASH = "95073fe7f7871428d6991a093452e57ae0a32c0c2bf95b83255b04796185d6a8"
8
+ SHASH = "eb757fd050e2e3feac0a95fe23ce894c01820c07c16502d5bb6c8dceb81e98a6"
9
9
  from .root import root
@@ -169,8 +169,6 @@ from .fensapice_drop_cv import fensapice_drop_cv as fensapice_drop_cv_cls
169
169
  from .fensapice_drop_cx import fensapice_drop_cx as fensapice_drop_cx_cls
170
170
  from .fensapice_drop_cy import fensapice_drop_cy as fensapice_drop_cy_cls
171
171
  from .fensapice_drop_cz import fensapice_drop_cz as fensapice_drop_cz_cls
172
- from .fensapice_drop_vrh import fensapice_drop_vrh as fensapice_drop_vrh_cls
173
- from .fensapice_drop_vrh_1 import fensapice_drop_vrh_1 as fensapice_drop_vrh_1_cls
174
172
  from .fensapice_drop_vc import fensapice_drop_vc as fensapice_drop_vc_cls
175
173
  from .mixing_plane_thread import mixing_plane_thread as mixing_plane_thread_cls
176
174
  from .wsf import wsf as wsf_cls
@@ -239,11 +237,10 @@ class inlet_vent_child(Group):
239
237
  'fensapice_dpm_inj_nstream', 'fensapice_drop_icc',
240
238
  'fensapice_drop_ctemp', 'fensapice_drop_cdiam', 'fensapice_drop_cv',
241
239
  'fensapice_drop_cx', 'fensapice_drop_cy', 'fensapice_drop_cz',
242
- 'fensapice_drop_vrh', 'fensapice_drop_vrh_1', 'fensapice_drop_vc',
243
- 'mixing_plane_thread', 'wsf', 'wsb', 'wsn', 'solar_fluxes',
244
- 'solar_shining_factor', 'radiating_s2s_surface', 'ac_options',
245
- 'impedance_0', 'impedance_1', 'impedance_2', 'ac_wave', 'les_spec',
246
- 'b', 'strength']
240
+ 'fensapice_drop_vc', 'mixing_plane_thread', 'wsf', 'wsb', 'wsn',
241
+ 'solar_fluxes', 'solar_shining_factor', 'radiating_s2s_surface',
242
+ 'ac_options', 'impedance_0', 'impedance_1', 'impedance_2', 'ac_wave',
243
+ 'les_spec', 'b', 'strength']
247
244
 
248
245
  _child_classes = dict(
249
246
  phase=phase_cls,
@@ -401,8 +398,6 @@ class inlet_vent_child(Group):
401
398
  fensapice_drop_cx=fensapice_drop_cx_cls,
402
399
  fensapice_drop_cy=fensapice_drop_cy_cls,
403
400
  fensapice_drop_cz=fensapice_drop_cz_cls,
404
- fensapice_drop_vrh=fensapice_drop_vrh_cls,
405
- fensapice_drop_vrh_1=fensapice_drop_vrh_1_cls,
406
401
  fensapice_drop_vc=fensapice_drop_vc_cls,
407
402
  mixing_plane_thread=mixing_plane_thread_cls,
408
403
  wsf=wsf_cls,
@@ -169,8 +169,6 @@ from .fensapice_drop_cv import fensapice_drop_cv as fensapice_drop_cv_cls
169
169
  from .fensapice_drop_cx import fensapice_drop_cx as fensapice_drop_cx_cls
170
170
  from .fensapice_drop_cy import fensapice_drop_cy as fensapice_drop_cy_cls
171
171
  from .fensapice_drop_cz import fensapice_drop_cz as fensapice_drop_cz_cls
172
- from .fensapice_drop_vrh import fensapice_drop_vrh as fensapice_drop_vrh_cls
173
- from .fensapice_drop_vrh_1 import fensapice_drop_vrh_1 as fensapice_drop_vrh_1_cls
174
172
  from .fensapice_drop_vc import fensapice_drop_vc as fensapice_drop_vc_cls
175
173
  from .mixing_plane_thread import mixing_plane_thread as mixing_plane_thread_cls
176
174
  from .wsf import wsf as wsf_cls
@@ -244,11 +242,10 @@ class intake_fan_child(Group):
244
242
  'fensapice_dpm_inj_nstream', 'fensapice_drop_icc',
245
243
  'fensapice_drop_ctemp', 'fensapice_drop_cdiam', 'fensapice_drop_cv',
246
244
  'fensapice_drop_cx', 'fensapice_drop_cy', 'fensapice_drop_cz',
247
- 'fensapice_drop_vrh', 'fensapice_drop_vrh_1', 'fensapice_drop_vc',
248
- 'mixing_plane_thread', 'wsf', 'wsb', 'wsn', 'solar_fluxes',
249
- 'solar_shining_factor', 'radiating_s2s_surface', 'ac_options',
250
- 'impedance_0', 'impedance_1', 'impedance_2', 'ac_wave', 'les_spec',
251
- 'a', 'swirl_model', 'swirl_factor', 'fan_omega',
245
+ 'fensapice_drop_vc', 'mixing_plane_thread', 'wsf', 'wsb', 'wsn',
246
+ 'solar_fluxes', 'solar_shining_factor', 'radiating_s2s_surface',
247
+ 'ac_options', 'impedance_0', 'impedance_1', 'impedance_2', 'ac_wave',
248
+ 'les_spec', 'a', 'swirl_model', 'swirl_factor', 'fan_omega',
252
249
  'fan_origin_components', 'strength', 'new_fan_definition']
253
250
 
254
251
  _child_classes = dict(
@@ -407,8 +404,6 @@ class intake_fan_child(Group):
407
404
  fensapice_drop_cx=fensapice_drop_cx_cls,
408
405
  fensapice_drop_cy=fensapice_drop_cy_cls,
409
406
  fensapice_drop_cz=fensapice_drop_cz_cls,
410
- fensapice_drop_vrh=fensapice_drop_vrh_cls,
411
- fensapice_drop_vrh_1=fensapice_drop_vrh_1_cls,
412
407
  fensapice_drop_vc=fensapice_drop_vc_cls,
413
408
  mixing_plane_thread=mixing_plane_thread_cls,
414
409
  wsf=wsf_cls,
@@ -136,8 +136,6 @@ from .fensapice_drop_cv import fensapice_drop_cv as fensapice_drop_cv_cls
136
136
  from .fensapice_drop_cx import fensapice_drop_cx as fensapice_drop_cx_cls
137
137
  from .fensapice_drop_cy import fensapice_drop_cy as fensapice_drop_cy_cls
138
138
  from .fensapice_drop_cz import fensapice_drop_cz as fensapice_drop_cz_cls
139
- from .fensapice_drop_vrh import fensapice_drop_vrh as fensapice_drop_vrh_cls
140
- from .fensapice_drop_vrh_1 import fensapice_drop_vrh_1 as fensapice_drop_vrh_1_cls
141
139
  from .fensapice_drop_vc import fensapice_drop_vc as fensapice_drop_vc_cls
142
140
  from .radiation_bc import radiation_bc as radiation_bc_cls
143
141
  from .radial_direction_component import radial_direction_component as radial_direction_component_cls
@@ -228,9 +226,8 @@ class mass_flow_inlet_child(Group):
228
226
  'fensapice_dpm_inj_nstream', 'fensapice_drop_icc',
229
227
  'fensapice_drop_ctemp', 'fensapice_drop_cdiam', 'fensapice_drop_cv',
230
228
  'fensapice_drop_cx', 'fensapice_drop_cy', 'fensapice_drop_cz',
231
- 'fensapice_drop_vrh', 'fensapice_drop_vrh_1', 'fensapice_drop_vc',
232
- 'radiation_bc', 'radial_direction_component', 'coll_dtheta',
233
- 'coll_dphi', 'band_q_irrad', 'band_q_irrad_diffuse',
229
+ 'fensapice_drop_vc', 'radiation_bc', 'radial_direction_component',
230
+ 'coll_dtheta', 'coll_dphi', 'band_q_irrad', 'band_q_irrad_diffuse',
234
231
  'parallel_collimated_beam', 'solar_direction', 'solar_irradiation',
235
232
  't_b_b_spec', 't_b_b', 'in_emiss', 'fmean', 'fvar', 'fmean2',
236
233
  'fvar2', 'tss_scalar', 'uds_bc', 'uds', 'pb_disc_bc', 'pb_disc',
@@ -365,8 +362,6 @@ class mass_flow_inlet_child(Group):
365
362
  fensapice_drop_cx=fensapice_drop_cx_cls,
366
363
  fensapice_drop_cy=fensapice_drop_cy_cls,
367
364
  fensapice_drop_cz=fensapice_drop_cz_cls,
368
- fensapice_drop_vrh=fensapice_drop_vrh_cls,
369
- fensapice_drop_vrh_1=fensapice_drop_vrh_1_cls,
370
365
  fensapice_drop_vc=fensapice_drop_vc_cls,
371
366
  radiation_bc=radiation_bc_cls,
372
367
  radial_direction_component=radial_direction_component_cls,
@@ -128,8 +128,6 @@ from .fensapice_drop_cv import fensapice_drop_cv as fensapice_drop_cv_cls
128
128
  from .fensapice_drop_cx import fensapice_drop_cx as fensapice_drop_cx_cls
129
129
  from .fensapice_drop_cy import fensapice_drop_cy as fensapice_drop_cy_cls
130
130
  from .fensapice_drop_cz import fensapice_drop_cz as fensapice_drop_cz_cls
131
- from .fensapice_drop_vrh import fensapice_drop_vrh as fensapice_drop_vrh_cls
132
- from .fensapice_drop_vrh_1 import fensapice_drop_vrh_1 as fensapice_drop_vrh_1_cls
133
131
  from .fensapice_drop_vc import fensapice_drop_vc as fensapice_drop_vc_cls
134
132
  from .uds_bc import uds_bc as uds_bc_cls
135
133
  from .uds import uds as uds_cls
@@ -178,9 +176,8 @@ class phase_child(Group):
178
176
  'fensapice_dpm_surface_injection', 'fensapice_dpm_inj_nstream',
179
177
  'fensapice_drop_icc', 'fensapice_drop_ctemp', 'fensapice_drop_cdiam',
180
178
  'fensapice_drop_cv', 'fensapice_drop_cx', 'fensapice_drop_cy',
181
- 'fensapice_drop_cz', 'fensapice_drop_vrh', 'fensapice_drop_vrh_1',
182
- 'fensapice_drop_vc', 'uds_bc', 'uds', 'dpm_bc_type',
183
- 'dpm_bc_collision_partner', 'reinj_inj', 'dpm_bc_udf',
179
+ 'fensapice_drop_cz', 'fensapice_drop_vc', 'uds_bc', 'uds',
180
+ 'dpm_bc_type', 'dpm_bc_collision_partner', 'reinj_inj', 'dpm_bc_udf',
184
181
  'solar_fluxes', 'solar_shining_factor', 'radiating_s2s_surface']
185
182
 
186
183
  _child_classes = dict(
@@ -298,8 +295,6 @@ class phase_child(Group):
298
295
  fensapice_drop_cx=fensapice_drop_cx_cls,
299
296
  fensapice_drop_cy=fensapice_drop_cy_cls,
300
297
  fensapice_drop_cz=fensapice_drop_cz_cls,
301
- fensapice_drop_vrh=fensapice_drop_vrh_cls,
302
- fensapice_drop_vrh_1=fensapice_drop_vrh_1_cls,
303
298
  fensapice_drop_vc=fensapice_drop_vc_cls,
304
299
  uds_bc=uds_bc_cls,
305
300
  uds=uds_cls,
@@ -168,8 +168,6 @@ from .fensapice_drop_cv import fensapice_drop_cv as fensapice_drop_cv_cls
168
168
  from .fensapice_drop_cx import fensapice_drop_cx as fensapice_drop_cx_cls
169
169
  from .fensapice_drop_cy import fensapice_drop_cy as fensapice_drop_cy_cls
170
170
  from .fensapice_drop_cz import fensapice_drop_cz as fensapice_drop_cz_cls
171
- from .fensapice_drop_vrh import fensapice_drop_vrh as fensapice_drop_vrh_cls
172
- from .fensapice_drop_vrh_1 import fensapice_drop_vrh_1 as fensapice_drop_vrh_1_cls
173
171
  from .fensapice_drop_vc import fensapice_drop_vc as fensapice_drop_vc_cls
174
172
  from .mixing_plane_thread import mixing_plane_thread as mixing_plane_thread_cls
175
173
  from .wsf import wsf as wsf_cls
@@ -236,10 +234,10 @@ class phase_child(Group):
236
234
  'fensapice_dpm_inj_nstream', 'fensapice_drop_icc',
237
235
  'fensapice_drop_ctemp', 'fensapice_drop_cdiam', 'fensapice_drop_cv',
238
236
  'fensapice_drop_cx', 'fensapice_drop_cy', 'fensapice_drop_cz',
239
- 'fensapice_drop_vrh', 'fensapice_drop_vrh_1', 'fensapice_drop_vc',
240
- 'mixing_plane_thread', 'wsf', 'wsb', 'wsn', 'solar_fluxes',
241
- 'solar_shining_factor', 'radiating_s2s_surface', 'ac_options',
242
- 'impedance_0', 'impedance_1', 'impedance_2', 'ac_wave', 'les_spec']
237
+ 'fensapice_drop_vc', 'mixing_plane_thread', 'wsf', 'wsb', 'wsn',
238
+ 'solar_fluxes', 'solar_shining_factor', 'radiating_s2s_surface',
239
+ 'ac_options', 'impedance_0', 'impedance_1', 'impedance_2', 'ac_wave',
240
+ 'les_spec']
243
241
 
244
242
  _child_classes = dict(
245
243
  geom_disable=geom_disable_cls,
@@ -396,8 +394,6 @@ class phase_child(Group):
396
394
  fensapice_drop_cx=fensapice_drop_cx_cls,
397
395
  fensapice_drop_cy=fensapice_drop_cy_cls,
398
396
  fensapice_drop_cz=fensapice_drop_cz_cls,
399
- fensapice_drop_vrh=fensapice_drop_vrh_cls,
400
- fensapice_drop_vrh_1=fensapice_drop_vrh_1_cls,
401
397
  fensapice_drop_vc=fensapice_drop_vc_cls,
402
398
  mixing_plane_thread=mixing_plane_thread_cls,
403
399
  wsf=wsf_cls,
@@ -198,8 +198,6 @@ from .fensapice_drop_cv import fensapice_drop_cv as fensapice_drop_cv_cls
198
198
  from .fensapice_drop_cx import fensapice_drop_cx as fensapice_drop_cx_cls
199
199
  from .fensapice_drop_cy import fensapice_drop_cy as fensapice_drop_cy_cls
200
200
  from .fensapice_drop_cz import fensapice_drop_cz as fensapice_drop_cz_cls
201
- from .fensapice_drop_vrh import fensapice_drop_vrh as fensapice_drop_vrh_cls
202
- from .fensapice_drop_vrh_1 import fensapice_drop_vrh_1 as fensapice_drop_vrh_1_cls
203
201
  from .fensapice_drop_vc import fensapice_drop_vc as fensapice_drop_vc_cls
204
202
  from .mixing_plane_thread import mixing_plane_thread as mixing_plane_thread_cls
205
203
  from .solar_fluxes import solar_fluxes as solar_fluxes_cls
@@ -274,10 +272,10 @@ class phase_child(Group):
274
272
  'fensapice_dpm_surface_injection', 'fensapice_dpm_inj_nstream',
275
273
  'fensapice_drop_icc', 'fensapice_drop_ctemp', 'fensapice_drop_cdiam',
276
274
  'fensapice_drop_cv', 'fensapice_drop_cx', 'fensapice_drop_cy',
277
- 'fensapice_drop_cz', 'fensapice_drop_vrh', 'fensapice_drop_vrh_1',
278
- 'fensapice_drop_vc', 'mixing_plane_thread', 'solar_fluxes',
279
- 'solar_shining_factor', 'radiating_s2s_surface', 'ac_options',
280
- 'impedance_0', 'impedance_1', 'impedance_2', 'ac_wave', 'les_spec']
275
+ 'fensapice_drop_cz', 'fensapice_drop_vc', 'mixing_plane_thread',
276
+ 'solar_fluxes', 'solar_shining_factor', 'radiating_s2s_surface',
277
+ 'ac_options', 'impedance_0', 'impedance_1', 'impedance_2', 'ac_wave',
278
+ 'les_spec']
281
279
 
282
280
  _child_classes = dict(
283
281
  geom_disable=geom_disable_cls,
@@ -464,8 +462,6 @@ class phase_child(Group):
464
462
  fensapice_drop_cx=fensapice_drop_cx_cls,
465
463
  fensapice_drop_cy=fensapice_drop_cy_cls,
466
464
  fensapice_drop_cz=fensapice_drop_cz_cls,
467
- fensapice_drop_vrh=fensapice_drop_vrh_cls,
468
- fensapice_drop_vrh_1=fensapice_drop_vrh_1_cls,
469
465
  fensapice_drop_vc=fensapice_drop_vc_cls,
470
466
  mixing_plane_thread=mixing_plane_thread_cls,
471
467
  solar_fluxes=solar_fluxes_cls,
@@ -168,8 +168,6 @@ from .fensapice_drop_cv import fensapice_drop_cv as fensapice_drop_cv_cls
168
168
  from .fensapice_drop_cx import fensapice_drop_cx as fensapice_drop_cx_cls
169
169
  from .fensapice_drop_cy import fensapice_drop_cy as fensapice_drop_cy_cls
170
170
  from .fensapice_drop_cz import fensapice_drop_cz as fensapice_drop_cz_cls
171
- from .fensapice_drop_vrh import fensapice_drop_vrh as fensapice_drop_vrh_cls
172
- from .fensapice_drop_vrh_1 import fensapice_drop_vrh_1 as fensapice_drop_vrh_1_cls
173
171
  from .fensapice_drop_vc import fensapice_drop_vc as fensapice_drop_vc_cls
174
172
  from .mixing_plane_thread import mixing_plane_thread as mixing_plane_thread_cls
175
173
  from .wsf import wsf as wsf_cls
@@ -238,11 +236,10 @@ class phase_child(Group):
238
236
  'fensapice_dpm_inj_nstream', 'fensapice_drop_icc',
239
237
  'fensapice_drop_ctemp', 'fensapice_drop_cdiam', 'fensapice_drop_cv',
240
238
  'fensapice_drop_cx', 'fensapice_drop_cy', 'fensapice_drop_cz',
241
- 'fensapice_drop_vrh', 'fensapice_drop_vrh_1', 'fensapice_drop_vc',
242
- 'mixing_plane_thread', 'wsf', 'wsb', 'wsn', 'solar_fluxes',
243
- 'solar_shining_factor', 'radiating_s2s_surface', 'ac_options',
244
- 'impedance_0', 'impedance_1', 'impedance_2', 'ac_wave', 'les_spec',
245
- 'b', 'strength']
239
+ 'fensapice_drop_vc', 'mixing_plane_thread', 'wsf', 'wsb', 'wsn',
240
+ 'solar_fluxes', 'solar_shining_factor', 'radiating_s2s_surface',
241
+ 'ac_options', 'impedance_0', 'impedance_1', 'impedance_2', 'ac_wave',
242
+ 'les_spec', 'b', 'strength']
246
243
 
247
244
  _child_classes = dict(
248
245
  geom_disable=geom_disable_cls,
@@ -399,8 +396,6 @@ class phase_child(Group):
399
396
  fensapice_drop_cx=fensapice_drop_cx_cls,
400
397
  fensapice_drop_cy=fensapice_drop_cy_cls,
401
398
  fensapice_drop_cz=fensapice_drop_cz_cls,
402
- fensapice_drop_vrh=fensapice_drop_vrh_cls,
403
- fensapice_drop_vrh_1=fensapice_drop_vrh_1_cls,
404
399
  fensapice_drop_vc=fensapice_drop_vc_cls,
405
400
  mixing_plane_thread=mixing_plane_thread_cls,
406
401
  wsf=wsf_cls,
@@ -168,8 +168,6 @@ from .fensapice_drop_cv import fensapice_drop_cv as fensapice_drop_cv_cls
168
168
  from .fensapice_drop_cx import fensapice_drop_cx as fensapice_drop_cx_cls
169
169
  from .fensapice_drop_cy import fensapice_drop_cy as fensapice_drop_cy_cls
170
170
  from .fensapice_drop_cz import fensapice_drop_cz as fensapice_drop_cz_cls
171
- from .fensapice_drop_vrh import fensapice_drop_vrh as fensapice_drop_vrh_cls
172
- from .fensapice_drop_vrh_1 import fensapice_drop_vrh_1 as fensapice_drop_vrh_1_cls
173
171
  from .fensapice_drop_vc import fensapice_drop_vc as fensapice_drop_vc_cls
174
172
  from .mixing_plane_thread import mixing_plane_thread as mixing_plane_thread_cls
175
173
  from .wsf import wsf as wsf_cls
@@ -243,11 +241,10 @@ class phase_child(Group):
243
241
  'fensapice_dpm_inj_nstream', 'fensapice_drop_icc',
244
242
  'fensapice_drop_ctemp', 'fensapice_drop_cdiam', 'fensapice_drop_cv',
245
243
  'fensapice_drop_cx', 'fensapice_drop_cy', 'fensapice_drop_cz',
246
- 'fensapice_drop_vrh', 'fensapice_drop_vrh_1', 'fensapice_drop_vc',
247
- 'mixing_plane_thread', 'wsf', 'wsb', 'wsn', 'solar_fluxes',
248
- 'solar_shining_factor', 'radiating_s2s_surface', 'ac_options',
249
- 'impedance_0', 'impedance_1', 'impedance_2', 'ac_wave', 'les_spec',
250
- 'a', 'swirl_model', 'swirl_factor', 'fan_omega',
244
+ 'fensapice_drop_vc', 'mixing_plane_thread', 'wsf', 'wsb', 'wsn',
245
+ 'solar_fluxes', 'solar_shining_factor', 'radiating_s2s_surface',
246
+ 'ac_options', 'impedance_0', 'impedance_1', 'impedance_2', 'ac_wave',
247
+ 'les_spec', 'a', 'swirl_model', 'swirl_factor', 'fan_omega',
251
248
  'fan_origin_components', 'strength', 'new_fan_definition']
252
249
 
253
250
  _child_classes = dict(
@@ -405,8 +402,6 @@ class phase_child(Group):
405
402
  fensapice_drop_cx=fensapice_drop_cx_cls,
406
403
  fensapice_drop_cy=fensapice_drop_cy_cls,
407
404
  fensapice_drop_cz=fensapice_drop_cz_cls,
408
- fensapice_drop_vrh=fensapice_drop_vrh_cls,
409
- fensapice_drop_vrh_1=fensapice_drop_vrh_1_cls,
410
405
  fensapice_drop_vc=fensapice_drop_vc_cls,
411
406
  mixing_plane_thread=mixing_plane_thread_cls,
412
407
  wsf=wsf_cls,
@@ -135,8 +135,6 @@ from .fensapice_drop_cv import fensapice_drop_cv as fensapice_drop_cv_cls
135
135
  from .fensapice_drop_cx import fensapice_drop_cx as fensapice_drop_cx_cls
136
136
  from .fensapice_drop_cy import fensapice_drop_cy as fensapice_drop_cy_cls
137
137
  from .fensapice_drop_cz import fensapice_drop_cz as fensapice_drop_cz_cls
138
- from .fensapice_drop_vrh import fensapice_drop_vrh as fensapice_drop_vrh_cls
139
- from .fensapice_drop_vrh_1 import fensapice_drop_vrh_1 as fensapice_drop_vrh_1_cls
140
138
  from .fensapice_drop_vc import fensapice_drop_vc as fensapice_drop_vc_cls
141
139
  from .radiation_bc import radiation_bc as radiation_bc_cls
142
140
  from .radial_direction_component import radial_direction_component as radial_direction_component_cls
@@ -227,9 +225,8 @@ class phase_child(Group):
227
225
  'fensapice_dpm_inj_nstream', 'fensapice_drop_icc',
228
226
  'fensapice_drop_ctemp', 'fensapice_drop_cdiam', 'fensapice_drop_cv',
229
227
  'fensapice_drop_cx', 'fensapice_drop_cy', 'fensapice_drop_cz',
230
- 'fensapice_drop_vrh', 'fensapice_drop_vrh_1', 'fensapice_drop_vc',
231
- 'radiation_bc', 'radial_direction_component', 'coll_dtheta',
232
- 'coll_dphi', 'band_q_irrad', 'band_q_irrad_diffuse',
228
+ 'fensapice_drop_vc', 'radiation_bc', 'radial_direction_component',
229
+ 'coll_dtheta', 'coll_dphi', 'band_q_irrad', 'band_q_irrad_diffuse',
233
230
  'parallel_collimated_beam', 'solar_direction', 'solar_irradiation',
234
231
  't_b_b_spec', 't_b_b', 'in_emiss', 'fmean', 'fvar', 'fmean2',
235
232
  'fvar2', 'tss_scalar', 'uds_bc', 'uds', 'pb_disc_bc', 'pb_disc',
@@ -363,8 +360,6 @@ class phase_child(Group):
363
360
  fensapice_drop_cx=fensapice_drop_cx_cls,
364
361
  fensapice_drop_cy=fensapice_drop_cy_cls,
365
362
  fensapice_drop_cz=fensapice_drop_cz_cls,
366
- fensapice_drop_vrh=fensapice_drop_vrh_cls,
367
- fensapice_drop_vrh_1=fensapice_drop_vrh_1_cls,
368
363
  fensapice_drop_vc=fensapice_drop_vc_cls,
369
364
  radiation_bc=radiation_bc_cls,
370
365
  radial_direction_component=radial_direction_component_cls,
@@ -129,8 +129,6 @@ from .fensapice_drop_cv import fensapice_drop_cv as fensapice_drop_cv_cls
129
129
  from .fensapice_drop_cx import fensapice_drop_cx as fensapice_drop_cx_cls
130
130
  from .fensapice_drop_cy import fensapice_drop_cy as fensapice_drop_cy_cls
131
131
  from .fensapice_drop_cz import fensapice_drop_cz as fensapice_drop_cz_cls
132
- from .fensapice_drop_vrh import fensapice_drop_vrh as fensapice_drop_vrh_cls
133
- from .fensapice_drop_vrh_1 import fensapice_drop_vrh_1 as fensapice_drop_vrh_1_cls
134
132
  from .fensapice_drop_vc import fensapice_drop_vc as fensapice_drop_vc_cls
135
133
  from .uds_bc import uds_bc as uds_bc_cls
136
134
  from .uds import uds as uds_cls
@@ -179,9 +177,8 @@ class pressure_far_field_child(Group):
179
177
  'fensapice_dpm_surface_injection', 'fensapice_dpm_inj_nstream',
180
178
  'fensapice_drop_icc', 'fensapice_drop_ctemp', 'fensapice_drop_cdiam',
181
179
  'fensapice_drop_cv', 'fensapice_drop_cx', 'fensapice_drop_cy',
182
- 'fensapice_drop_cz', 'fensapice_drop_vrh', 'fensapice_drop_vrh_1',
183
- 'fensapice_drop_vc', 'uds_bc', 'uds', 'dpm_bc_type',
184
- 'dpm_bc_collision_partner', 'reinj_inj', 'dpm_bc_udf',
180
+ 'fensapice_drop_cz', 'fensapice_drop_vc', 'uds_bc', 'uds',
181
+ 'dpm_bc_type', 'dpm_bc_collision_partner', 'reinj_inj', 'dpm_bc_udf',
185
182
  'solar_fluxes', 'solar_shining_factor', 'radiating_s2s_surface']
186
183
 
187
184
  _child_classes = dict(
@@ -300,8 +297,6 @@ class pressure_far_field_child(Group):
300
297
  fensapice_drop_cx=fensapice_drop_cx_cls,
301
298
  fensapice_drop_cy=fensapice_drop_cy_cls,
302
299
  fensapice_drop_cz=fensapice_drop_cz_cls,
303
- fensapice_drop_vrh=fensapice_drop_vrh_cls,
304
- fensapice_drop_vrh_1=fensapice_drop_vrh_1_cls,
305
300
  fensapice_drop_vc=fensapice_drop_vc_cls,
306
301
  uds_bc=uds_bc_cls,
307
302
  uds=uds_cls,
@@ -169,8 +169,6 @@ from .fensapice_drop_cv import fensapice_drop_cv as fensapice_drop_cv_cls
169
169
  from .fensapice_drop_cx import fensapice_drop_cx as fensapice_drop_cx_cls
170
170
  from .fensapice_drop_cy import fensapice_drop_cy as fensapice_drop_cy_cls
171
171
  from .fensapice_drop_cz import fensapice_drop_cz as fensapice_drop_cz_cls
172
- from .fensapice_drop_vrh import fensapice_drop_vrh as fensapice_drop_vrh_cls
173
- from .fensapice_drop_vrh_1 import fensapice_drop_vrh_1 as fensapice_drop_vrh_1_cls
174
172
  from .fensapice_drop_vc import fensapice_drop_vc as fensapice_drop_vc_cls
175
173
  from .mixing_plane_thread import mixing_plane_thread as mixing_plane_thread_cls
176
174
  from .wsf import wsf as wsf_cls
@@ -237,10 +235,10 @@ class pressure_inlet_child(Group):
237
235
  'fensapice_dpm_inj_nstream', 'fensapice_drop_icc',
238
236
  'fensapice_drop_ctemp', 'fensapice_drop_cdiam', 'fensapice_drop_cv',
239
237
  'fensapice_drop_cx', 'fensapice_drop_cy', 'fensapice_drop_cz',
240
- 'fensapice_drop_vrh', 'fensapice_drop_vrh_1', 'fensapice_drop_vc',
241
- 'mixing_plane_thread', 'wsf', 'wsb', 'wsn', 'solar_fluxes',
242
- 'solar_shining_factor', 'radiating_s2s_surface', 'ac_options',
243
- 'impedance_0', 'impedance_1', 'impedance_2', 'ac_wave', 'les_spec']
238
+ 'fensapice_drop_vc', 'mixing_plane_thread', 'wsf', 'wsb', 'wsn',
239
+ 'solar_fluxes', 'solar_shining_factor', 'radiating_s2s_surface',
240
+ 'ac_options', 'impedance_0', 'impedance_1', 'impedance_2', 'ac_wave',
241
+ 'les_spec']
244
242
 
245
243
  _child_classes = dict(
246
244
  phase=phase_cls,
@@ -398,8 +396,6 @@ class pressure_inlet_child(Group):
398
396
  fensapice_drop_cx=fensapice_drop_cx_cls,
399
397
  fensapice_drop_cy=fensapice_drop_cy_cls,
400
398
  fensapice_drop_cz=fensapice_drop_cz_cls,
401
- fensapice_drop_vrh=fensapice_drop_vrh_cls,
402
- fensapice_drop_vrh_1=fensapice_drop_vrh_1_cls,
403
399
  fensapice_drop_vc=fensapice_drop_vc_cls,
404
400
  mixing_plane_thread=mixing_plane_thread_cls,
405
401
  wsf=wsf_cls,
@@ -199,8 +199,6 @@ from .fensapice_drop_cv import fensapice_drop_cv as fensapice_drop_cv_cls
199
199
  from .fensapice_drop_cx import fensapice_drop_cx as fensapice_drop_cx_cls
200
200
  from .fensapice_drop_cy import fensapice_drop_cy as fensapice_drop_cy_cls
201
201
  from .fensapice_drop_cz import fensapice_drop_cz as fensapice_drop_cz_cls
202
- from .fensapice_drop_vrh import fensapice_drop_vrh as fensapice_drop_vrh_cls
203
- from .fensapice_drop_vrh_1 import fensapice_drop_vrh_1 as fensapice_drop_vrh_1_cls
204
202
  from .fensapice_drop_vc import fensapice_drop_vc as fensapice_drop_vc_cls
205
203
  from .mixing_plane_thread import mixing_plane_thread as mixing_plane_thread_cls
206
204
  from .solar_fluxes import solar_fluxes as solar_fluxes_cls
@@ -275,10 +273,10 @@ class velocity_inlet_child(Group):
275
273
  'fensapice_dpm_surface_injection', 'fensapice_dpm_inj_nstream',
276
274
  'fensapice_drop_icc', 'fensapice_drop_ctemp', 'fensapice_drop_cdiam',
277
275
  'fensapice_drop_cv', 'fensapice_drop_cx', 'fensapice_drop_cy',
278
- 'fensapice_drop_cz', 'fensapice_drop_vrh', 'fensapice_drop_vrh_1',
279
- 'fensapice_drop_vc', 'mixing_plane_thread', 'solar_fluxes',
280
- 'solar_shining_factor', 'radiating_s2s_surface', 'ac_options',
281
- 'impedance_0', 'impedance_1', 'impedance_2', 'ac_wave', 'les_spec']
276
+ 'fensapice_drop_cz', 'fensapice_drop_vc', 'mixing_plane_thread',
277
+ 'solar_fluxes', 'solar_shining_factor', 'radiating_s2s_surface',
278
+ 'ac_options', 'impedance_0', 'impedance_1', 'impedance_2', 'ac_wave',
279
+ 'les_spec']
282
280
 
283
281
  _child_classes = dict(
284
282
  phase=phase_cls,
@@ -466,8 +464,6 @@ class velocity_inlet_child(Group):
466
464
  fensapice_drop_cx=fensapice_drop_cx_cls,
467
465
  fensapice_drop_cy=fensapice_drop_cy_cls,
468
466
  fensapice_drop_cz=fensapice_drop_cz_cls,
469
- fensapice_drop_vrh=fensapice_drop_vrh_cls,
470
- fensapice_drop_vrh_1=fensapice_drop_vrh_1_cls,
471
467
  fensapice_drop_vc=fensapice_drop_vc_cls,
472
468
  mixing_plane_thread=mixing_plane_thread_cls,
473
469
  solar_fluxes=solar_fluxes_cls,
@@ -5,5 +5,5 @@
5
5
  """A package providing Fluent's Settings Objects in Python."""
6
6
  from ansys.fluent.core.solver.flobject import *
7
7
 
8
- SHASH = "765e2322465ad0dce0f3a485fecd7758579360f595e5794ec0bbd90ed82ae94e"
8
+ SHASH = "7d1680886bce2f39ad72aaa078bb0a2cedfb2e09dd5e84e1f3e5ec61564daf40"
9
9
  from .root import root
@@ -173,8 +173,6 @@ from .fensapice_drop_cv import fensapice_drop_cv as fensapice_drop_cv_cls
173
173
  from .fensapice_drop_cx import fensapice_drop_cx as fensapice_drop_cx_cls
174
174
  from .fensapice_drop_cy import fensapice_drop_cy as fensapice_drop_cy_cls
175
175
  from .fensapice_drop_cz import fensapice_drop_cz as fensapice_drop_cz_cls
176
- from .fensapice_drop_vrh import fensapice_drop_vrh as fensapice_drop_vrh_cls
177
- from .fensapice_drop_vrh_1 import fensapice_drop_vrh_1 as fensapice_drop_vrh_1_cls
178
176
  from .fensapice_drop_vc import fensapice_drop_vc as fensapice_drop_vc_cls
179
177
  from .mixing_plane_thread import mixing_plane_thread as mixing_plane_thread_cls
180
178
  from .wsf import wsf as wsf_cls
@@ -244,11 +242,10 @@ class inlet_vent_child(Group):
244
242
  'fensapice_dpm_inj_nstream', 'fensapice_drop_icc',
245
243
  'fensapice_drop_ctemp', 'fensapice_drop_cdiam', 'fensapice_drop_cv',
246
244
  'fensapice_drop_cx', 'fensapice_drop_cy', 'fensapice_drop_cz',
247
- 'fensapice_drop_vrh', 'fensapice_drop_vrh_1', 'fensapice_drop_vc',
248
- 'mixing_plane_thread', 'wsf', 'wsb', 'wsn', 'solar_fluxes',
249
- 'solar_shining_factor', 'radiating_s2s_surface', 'ac_options',
250
- 'impedance_0', 'impedance_1', 'impedance_2', 'ac_wave', 'les_spec',
251
- 'b', 'strength']
245
+ 'fensapice_drop_vc', 'mixing_plane_thread', 'wsf', 'wsb', 'wsn',
246
+ 'solar_fluxes', 'solar_shining_factor', 'radiating_s2s_surface',
247
+ 'ac_options', 'impedance_0', 'impedance_1', 'impedance_2', 'ac_wave',
248
+ 'les_spec', 'b', 'strength']
252
249
 
253
250
  _child_classes = dict(
254
251
  phase=phase_cls,
@@ -410,8 +407,6 @@ class inlet_vent_child(Group):
410
407
  fensapice_drop_cx=fensapice_drop_cx_cls,
411
408
  fensapice_drop_cy=fensapice_drop_cy_cls,
412
409
  fensapice_drop_cz=fensapice_drop_cz_cls,
413
- fensapice_drop_vrh=fensapice_drop_vrh_cls,
414
- fensapice_drop_vrh_1=fensapice_drop_vrh_1_cls,
415
410
  fensapice_drop_vc=fensapice_drop_vc_cls,
416
411
  mixing_plane_thread=mixing_plane_thread_cls,
417
412
  wsf=wsf_cls,
@@ -173,8 +173,6 @@ from .fensapice_drop_cv import fensapice_drop_cv as fensapice_drop_cv_cls
173
173
  from .fensapice_drop_cx import fensapice_drop_cx as fensapice_drop_cx_cls
174
174
  from .fensapice_drop_cy import fensapice_drop_cy as fensapice_drop_cy_cls
175
175
  from .fensapice_drop_cz import fensapice_drop_cz as fensapice_drop_cz_cls
176
- from .fensapice_drop_vrh import fensapice_drop_vrh as fensapice_drop_vrh_cls
177
- from .fensapice_drop_vrh_1 import fensapice_drop_vrh_1 as fensapice_drop_vrh_1_cls
178
176
  from .fensapice_drop_vc import fensapice_drop_vc as fensapice_drop_vc_cls
179
177
  from .mixing_plane_thread import mixing_plane_thread as mixing_plane_thread_cls
180
178
  from .wsf import wsf as wsf_cls
@@ -249,12 +247,11 @@ class intake_fan_child(Group):
249
247
  'fensapice_dpm_inj_nstream', 'fensapice_drop_icc',
250
248
  'fensapice_drop_ctemp', 'fensapice_drop_cdiam', 'fensapice_drop_cv',
251
249
  'fensapice_drop_cx', 'fensapice_drop_cy', 'fensapice_drop_cz',
252
- 'fensapice_drop_vrh', 'fensapice_drop_vrh_1', 'fensapice_drop_vc',
253
- 'mixing_plane_thread', 'wsf', 'wsb', 'wsn', 'solar_fluxes',
254
- 'solar_shining_factor', 'radiating_s2s_surface', 'ac_options',
255
- 'impedance_0', 'impedance_1', 'impedance_2', 'ac_wave', 'les_spec',
256
- 'a', 'swirl_model', 'swirl_factor', 'fan_omega', 'fan_origin',
257
- 'strength', 'new_fan_definition']
250
+ 'fensapice_drop_vc', 'mixing_plane_thread', 'wsf', 'wsb', 'wsn',
251
+ 'solar_fluxes', 'solar_shining_factor', 'radiating_s2s_surface',
252
+ 'ac_options', 'impedance_0', 'impedance_1', 'impedance_2', 'ac_wave',
253
+ 'les_spec', 'a', 'swirl_model', 'swirl_factor', 'fan_omega',
254
+ 'fan_origin', 'strength', 'new_fan_definition']
258
255
 
259
256
  _child_classes = dict(
260
257
  phase=phase_cls,
@@ -416,8 +413,6 @@ class intake_fan_child(Group):
416
413
  fensapice_drop_cx=fensapice_drop_cx_cls,
417
414
  fensapice_drop_cy=fensapice_drop_cy_cls,
418
415
  fensapice_drop_cz=fensapice_drop_cz_cls,
419
- fensapice_drop_vrh=fensapice_drop_vrh_cls,
420
- fensapice_drop_vrh_1=fensapice_drop_vrh_1_cls,
421
416
  fensapice_drop_vc=fensapice_drop_vc_cls,
422
417
  mixing_plane_thread=mixing_plane_thread_cls,
423
418
  wsf=wsf_cls,