ansys-fluent-core 0.20.dev9__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 (270) 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_connection.py +5 -5
  10. ansys/fluent/core/fluent_version_242.py +3 -3
  11. ansys/fluent/core/launcher/standalone_launcher.py +1 -1
  12. ansys/fluent/core/meshing/2d_meshing.py +25 -0
  13. ansys/fluent/core/meshing/meshing_workflow.py +66 -2
  14. ansys/fluent/core/meshing/topology_based.py +25 -0
  15. ansys/fluent/core/meshing/tui_231.py +6998 -6998
  16. ansys/fluent/core/meshing/tui_232.py +7541 -7541
  17. ansys/fluent/core/meshing/tui_241.py +7749 -7749
  18. ansys/fluent/core/meshing/tui_242.py +8134 -8134
  19. ansys/fluent/core/services/datamodel_se.py +6 -3
  20. ansys/fluent/core/services/settings.py +4 -1
  21. ansys/fluent/core/session.py +12 -12
  22. ansys/fluent/core/session_base_meshing.py +24 -0
  23. ansys/fluent/core/session_meshing.py +1 -1
  24. ansys/fluent/core/session_pure_meshing.py +19 -1
  25. ansys/fluent/core/session_pure_meshing.pyi +2 -0
  26. ansys/fluent/core/session_solver.py +5 -5
  27. ansys/fluent/core/session_solver_lite.py +1 -1
  28. ansys/fluent/core/solver/flobject.py +57 -52
  29. ansys/fluent/core/solver/settings_222/__init__.py +1 -1
  30. ansys/fluent/core/solver/settings_222/inlet_vent_child.py +4 -9
  31. ansys/fluent/core/solver/settings_222/intake_fan_child.py +4 -9
  32. ansys/fluent/core/solver/settings_222/mass_flow_inlet_child.py +2 -7
  33. ansys/fluent/core/solver/settings_222/phase_child_16.py +2 -7
  34. ansys/fluent/core/solver/settings_222/phase_child_17.py +4 -8
  35. ansys/fluent/core/solver/settings_222/phase_child_23.py +4 -8
  36. ansys/fluent/core/solver/settings_222/phase_child_5.py +4 -9
  37. ansys/fluent/core/solver/settings_222/phase_child_6.py +4 -9
  38. ansys/fluent/core/solver/settings_222/phase_child_9.py +2 -7
  39. ansys/fluent/core/solver/settings_222/pressure_far_field_child.py +2 -7
  40. ansys/fluent/core/solver/settings_222/pressure_inlet_child.py +4 -8
  41. ansys/fluent/core/solver/settings_222/velocity_inlet_child.py +4 -8
  42. ansys/fluent/core/solver/settings_231/__init__.py +1 -1
  43. ansys/fluent/core/solver/settings_231/inlet_vent_child.py +4 -9
  44. ansys/fluent/core/solver/settings_231/intake_fan_child.py +5 -10
  45. ansys/fluent/core/solver/settings_231/mass_flow_inlet_child.py +13 -17
  46. ansys/fluent/core/solver/settings_231/phase_child_16.py +2 -7
  47. ansys/fluent/core/solver/settings_231/phase_child_17.py +4 -8
  48. ansys/fluent/core/solver/settings_231/phase_child_23.py +4 -8
  49. ansys/fluent/core/solver/settings_231/phase_child_5.py +4 -9
  50. ansys/fluent/core/solver/settings_231/phase_child_6.py +5 -10
  51. ansys/fluent/core/solver/settings_231/phase_child_9.py +13 -17
  52. ansys/fluent/core/solver/settings_231/pressure_far_field_child.py +2 -7
  53. ansys/fluent/core/solver/settings_231/pressure_inlet_child.py +4 -8
  54. ansys/fluent/core/solver/settings_231/velocity_inlet_child.py +4 -8
  55. ansys/fluent/core/solver/settings_232/__init__.py +1 -1
  56. ansys/fluent/core/solver/settings_232/inlet_vent_child.py +5 -9
  57. ansys/fluent/core/solver/settings_232/intake_fan_child.py +6 -11
  58. ansys/fluent/core/solver/settings_232/mass_flow_inlet_child.py +3 -8
  59. ansys/fluent/core/solver/settings_232/phase_child_16.py +4 -8
  60. ansys/fluent/core/solver/settings_232/phase_child_17.py +4 -9
  61. ansys/fluent/core/solver/settings_232/phase_child_23.py +4 -9
  62. ansys/fluent/core/solver/settings_232/phase_child_5.py +5 -9
  63. ansys/fluent/core/solver/settings_232/phase_child_6.py +6 -11
  64. ansys/fluent/core/solver/settings_232/phase_child_9.py +3 -8
  65. ansys/fluent/core/solver/settings_232/pressure_far_field_child.py +4 -8
  66. ansys/fluent/core/solver/settings_232/pressure_inlet_child.py +4 -9
  67. ansys/fluent/core/solver/settings_232/velocity_inlet_child.py +4 -9
  68. ansys/fluent/core/solver/settings_241/__init__.py +1 -1
  69. ansys/fluent/core/solver/settings_241/icing_1.py +1 -6
  70. ansys/fluent/core/solver/settings_241/phase_child_17.py +5 -9
  71. ansys/fluent/core/solver/settings_241/pressure_far_field_child.py +5 -9
  72. ansys/fluent/core/solver/settings_242/__init__.py +1 -1
  73. ansys/fluent/core/solver/{settings_241/fensapice_drop_vrh_1.py → settings_242/activation_function.py} +3 -3
  74. ansys/fluent/core/solver/settings_242/{fensapice_drop_vrh_1.py → active_2.py} +3 -3
  75. ansys/fluent/core/solver/{settings_231/fensapice_drop_vrh_1.py → settings_242/adjoint_iterations.py} +3 -3
  76. ansys/fluent/core/solver/{settings_222/fensapice_drop_vrh.py → settings_242/adjustable_tolerance.py} +3 -3
  77. ansys/fluent/core/solver/settings_242/anode_cl_conductivity.py +23 -0
  78. ansys/fluent/core/solver/settings_242/anode_cl_zone.py +5 -2
  79. ansys/fluent/core/solver/settings_242/apply_trained_model.py +23 -0
  80. ansys/fluent/core/solver/settings_242/as_percentage.py +23 -0
  81. ansys/fluent/core/solver/settings_242/auto.py +1 -1
  82. ansys/fluent/core/solver/settings_242/auto_options.py +4 -4
  83. ansys/fluent/core/solver/settings_242/autosave_1.py +37 -0
  84. ansys/fluent/core/solver/settings_242/calculation_activities_1.py +33 -0
  85. ansys/fluent/core/solver/settings_242/cathode_cl_conductivity.py +23 -0
  86. ansys/fluent/core/solver/settings_242/cathode_cl_zone.py +5 -2
  87. ansys/fluent/core/solver/settings_242/clear_model.py +23 -0
  88. ansys/fluent/core/solver/settings_242/compound.py +1 -1
  89. ansys/fluent/core/solver/settings_242/condition_1.py +23 -0
  90. ansys/fluent/core/solver/settings_242/conditions_4.py +39 -0
  91. ansys/fluent/core/solver/settings_242/conditions_child.py +35 -0
  92. ansys/fluent/core/solver/settings_242/convergence_criteria.py +23 -0
  93. ansys/fluent/core/solver/settings_242/count_1.py +23 -0
  94. ansys/fluent/core/solver/settings_242/criteria.py +38 -0
  95. ansys/fluent/core/solver/settings_242/current_design_iteration.py +23 -0
  96. ansys/fluent/core/solver/settings_242/default_6.py +23 -0
  97. ansys/fluent/core/solver/settings_242/default_7.py +23 -0
  98. ansys/fluent/core/solver/settings_242/default_8.py +23 -0
  99. ansys/fluent/core/solver/settings_242/default_limits.py +23 -0
  100. ansys/fluent/core/solver/settings_242/definition_child.py +1 -1
  101. ansys/fluent/core/solver/settings_242/delete_4.py +6 -6
  102. ansys/fluent/core/solver/settings_242/delete_5.py +6 -10
  103. ansys/fluent/core/solver/settings_242/delete_6.py +10 -6
  104. ansys/fluent/core/solver/settings_242/delete_7.py +37 -0
  105. ansys/fluent/core/solver/settings_242/delete_all_1.py +2 -2
  106. ansys/fluent/core/solver/settings_242/delete_all_2.py +23 -0
  107. ansys/fluent/core/solver/settings_242/design_iterations.py +23 -0
  108. ansys/fluent/core/solver/settings_242/design_region.py +23 -0
  109. ansys/fluent/core/solver/settings_242/design_variables.py +40 -0
  110. ansys/fluent/core/solver/settings_242/display_profile_point_cloud_data.py +45 -0
  111. ansys/fluent/core/solver/settings_242/display_profile_surface.py +45 -0
  112. ansys/fluent/core/solver/{settings_231/fensapice_drop_vrh.py → settings_242/enable_turbulence_source_term.py} +3 -3
  113. ansys/fluent/core/solver/settings_242/evaluation.py +35 -0
  114. ansys/fluent/core/solver/settings_242/execute_commands.py +1 -1
  115. ansys/fluent/core/solver/settings_242/expected_observables_values.py +23 -0
  116. ansys/fluent/core/solver/settings_242/export_data.py +37 -0
  117. ansys/fluent/core/solver/settings_242/export_model.py +37 -0
  118. ansys/fluent/core/solver/settings_242/export_stl_1.py +33 -0
  119. ansys/fluent/core/solver/settings_242/{fensapice_drop_vrh.py → fensapice_dpm_rh_mode.py} +2 -2
  120. ansys/fluent/core/solver/settings_242/field_contour.py +23 -0
  121. ansys/fluent/core/solver/settings_242/field_variable.py +1 -1
  122. ansys/fluent/core/solver/settings_242/field_variable_1.py +23 -0
  123. ansys/fluent/core/solver/settings_242/filed_variable.py +23 -0
  124. ansys/fluent/core/solver/settings_242/filename_15.py +23 -0
  125. ansys/fluent/core/solver/settings_242/filename_16.py +23 -0
  126. ansys/fluent/core/solver/settings_242/filename_17.py +23 -0
  127. ansys/fluent/core/solver/settings_242/files_1.py +23 -0
  128. ansys/fluent/core/solver/settings_242/flow_iterations.py +23 -0
  129. ansys/fluent/core/solver/settings_242/frequency_5.py +1 -1
  130. ansys/fluent/core/solver/settings_242/frequency_6.py +23 -0
  131. ansys/fluent/core/solver/settings_242/frequency_7.py +23 -0
  132. ansys/fluent/core/solver/settings_242/frequency_8.py +23 -0
  133. ansys/fluent/core/solver/settings_242/goal.py +23 -0
  134. ansys/fluent/core/solver/settings_242/gradient_based.py +4 -1
  135. ansys/fluent/core/solver/settings_242/gradient_based_optimizer.py +56 -0
  136. ansys/fluent/core/solver/settings_242/graphics_object.py +23 -0
  137. ansys/fluent/core/solver/settings_242/graphics_objects.py +1 -1
  138. ansys/fluent/core/solver/settings_242/icing.py +6 -1
  139. ansys/fluent/core/solver/settings_242/icing_1.py +5 -8
  140. ansys/fluent/core/solver/settings_242/id_1.py +23 -0
  141. ansys/fluent/core/solver/settings_242/id_2.py +23 -0
  142. ansys/fluent/core/solver/settings_242/import_data.py +37 -0
  143. ansys/fluent/core/solver/settings_242/import_model.py +37 -0
  144. ansys/fluent/core/solver/settings_242/include_current_data_1.py +23 -0
  145. ansys/fluent/core/solver/settings_242/initialize_3.py +1 -15
  146. ansys/fluent/core/solver/settings_242/initialize_4.py +23 -0
  147. ansys/fluent/core/solver/settings_242/initialize_5.py +37 -0
  148. ansys/fluent/core/solver/settings_242/initialize_neural_network.py +23 -0
  149. ansys/fluent/core/solver/settings_242/input_features.py +23 -0
  150. ansys/fluent/core/solver/settings_242/learning_rate.py +23 -0
  151. ansys/fluent/core/solver/settings_242/length_factor.py +23 -0
  152. ansys/fluent/core/solver/settings_242/limits_1.py +45 -0
  153. ansys/fluent/core/solver/settings_242/limits_child.py +23 -0
  154. ansys/fluent/core/solver/settings_242/list_profile_fields.py +37 -0
  155. ansys/fluent/core/solver/settings_242/list_profile_parameters.py +37 -0
  156. ansys/fluent/core/solver/settings_242/list_profile_parameters_with_value.py +37 -0
  157. ansys/fluent/core/solver/settings_242/list_profiles.py +23 -0
  158. ansys/fluent/core/solver/settings_242/manage_data_1.py +42 -0
  159. ansys/fluent/core/solver/settings_242/management.py +35 -0
  160. ansys/fluent/core/solver/settings_242/max_epochs.py +23 -0
  161. ansys/fluent/core/solver/settings_242/maximum_5.py +23 -0
  162. ansys/fluent/core/solver/settings_242/mesh_quality.py +33 -0
  163. ansys/fluent/core/solver/settings_242/method_19.py +1 -1
  164. ansys/fluent/core/solver/settings_242/method_20.py +2 -20
  165. ansys/fluent/core/solver/settings_242/method_21.py +1 -1
  166. ansys/fluent/core/solver/settings_242/method_22.py +41 -0
  167. ansys/fluent/core/solver/{settings_222/fensapice_drop_vrh_1.py → settings_242/method_23.py} +3 -3
  168. ansys/fluent/core/solver/settings_242/min_cell_volume.py +23 -0
  169. ansys/fluent/core/solver/settings_242/min_orthogonal.py +23 -0
  170. ansys/fluent/core/solver/settings_242/mini_batch_size.py +23 -0
  171. ansys/fluent/core/solver/settings_242/model_4.py +37 -0
  172. ansys/fluent/core/solver/settings_242/monitor_3.py +48 -0
  173. ansys/fluent/core/solver/settings_242/neural_network_topology.py +39 -0
  174. ansys/fluent/core/solver/settings_242/neural_network_topology_child.py +23 -0
  175. ansys/fluent/core/solver/settings_242/normalize_1.py +23 -0
  176. ansys/fluent/core/solver/settings_242/objectives_2.py +39 -0
  177. ansys/fluent/core/solver/settings_242/objectives_3.py +35 -0
  178. ansys/fluent/core/solver/settings_242/objectives_child_1.py +42 -0
  179. ansys/fluent/core/solver/settings_242/observable_3.py +23 -0
  180. ansys/fluent/core/solver/settings_242/observables_1.py +33 -0
  181. ansys/fluent/core/solver/settings_242/observables_values.py +23 -0
  182. ansys/fluent/core/solver/settings_242/offline_training.py +49 -0
  183. ansys/fluent/core/solver/settings_242/operating_conditions_1.py +37 -0
  184. ansys/fluent/core/solver/settings_242/optimization_id_to_plot.py +23 -0
  185. ansys/fluent/core/solver/settings_242/optimize.py +23 -0
  186. ansys/fluent/core/solver/settings_242/optimizer_settings.py +42 -0
  187. ansys/fluent/core/solver/settings_242/optimizer_type.py +23 -0
  188. ansys/fluent/core/solver/settings_242/options_19.py +31 -0
  189. ansys/fluent/core/solver/settings_242/overlay.py +23 -0
  190. ansys/fluent/core/solver/settings_242/overlay_1.py +23 -0
  191. ansys/fluent/core/solver/settings_242/overlay_profile_point_cloud_data.py +45 -0
  192. ansys/fluent/core/solver/settings_242/overlay_profile_surface.py +54 -0
  193. ansys/fluent/core/solver/settings_242/parameters_5.py +14 -10
  194. ansys/fluent/core/solver/settings_242/parameters_6.py +45 -0
  195. ansys/fluent/core/solver/settings_242/parameters_7.py +35 -0
  196. ansys/fluent/core/solver/settings_242/parameters_child_1.py +23 -0
  197. ansys/fluent/core/solver/settings_242/parameters_child_2.py +23 -0
  198. ansys/fluent/core/solver/settings_242/parameters_count.py +23 -0
  199. ansys/fluent/core/solver/settings_242/parametric_studies.py +1 -1
  200. ansys/fluent/core/solver/settings_242/partition_3.py +1 -1
  201. ansys/fluent/core/solver/settings_242/playback.py +1 -1
  202. ansys/fluent/core/solver/settings_242/plot_14.py +23 -0
  203. ansys/fluent/core/solver/settings_242/plot_all_optimization_ids.py +23 -0
  204. ansys/fluent/core/solver/settings_242/plot_during_optimization.py +23 -0
  205. ansys/fluent/core/solver/settings_242/porous_jump_turb_wall_treatment.py +1 -1
  206. ansys/fluent/core/solver/settings_242/porous_zone.py +10 -1
  207. ansys/fluent/core/solver/settings_242/post_morph.py +33 -0
  208. ansys/fluent/core/solver/settings_242/print_current_status.py +23 -0
  209. ansys/fluent/core/solver/settings_242/profile_name_1.py +23 -0
  210. ansys/fluent/core/solver/settings_242/profile_point_marker.py +23 -0
  211. ansys/fluent/core/solver/settings_242/profile_point_marker_color.py +23 -0
  212. ansys/fluent/core/solver/settings_242/profile_point_marker_size.py +23 -0
  213. ansys/fluent/core/solver/settings_242/profiles.py +56 -0
  214. ansys/fluent/core/solver/settings_242/rad_porous_wall.py +23 -0
  215. ansys/fluent/core/solver/settings_242/rad_porous_wall_diffuse_fraction.py +23 -0
  216. ansys/fluent/core/solver/settings_242/rad_porous_wall_in_emiss.py +43 -0
  217. ansys/fluent/core/solver/settings_242/remeshing.py +23 -0
  218. ansys/fluent/core/solver/settings_242/remove_1.py +37 -0
  219. ansys/fluent/core/solver/settings_242/reset_3.py +1 -1
  220. ansys/fluent/core/solver/settings_242/reset_4.py +23 -0
  221. ansys/fluent/core/solver/settings_242/root.py +1 -1
  222. ansys/fluent/core/solver/settings_242/sampling_after.py +23 -0
  223. ansys/fluent/core/solver/settings_242/save_files.py +33 -0
  224. ansys/fluent/core/solver/settings_242/save_optimal.py +23 -0
  225. ansys/fluent/core/solver/settings_242/scene_child.py +1 -1
  226. ansys/fluent/core/solver/settings_242/selection_2.py +23 -0
  227. ansys/fluent/core/solver/settings_242/selection_3.py +23 -0
  228. ansys/fluent/core/solver/settings_242/set_one_to_one_pairing_tolerance.py +20 -2
  229. ansys/fluent/core/solver/settings_242/set_preference_profile_point_cloud_data.py +46 -0
  230. ansys/fluent/core/solver/settings_242/settings_6.py +43 -0
  231. ansys/fluent/core/solver/settings_242/setup.py +3 -1
  232. ansys/fluent/core/solver/settings_242/single_session_coupling.py +2 -2
  233. ansys/fluent/core/solver/settings_242/smooth_sensitivities.py +23 -0
  234. ansys/fluent/core/solver/settings_242/smoothing_1.py +23 -0
  235. ansys/fluent/core/solver/settings_242/step_size_1.py +23 -0
  236. ansys/fluent/core/solver/settings_242/summarize.py +23 -0
  237. ansys/fluent/core/solver/settings_242/temporary.py +1 -1
  238. ansys/fluent/core/solver/settings_242/timer.py +1 -1
  239. ansys/fluent/core/solver/settings_242/title_1.py +23 -0
  240. ansys/fluent/core/solver/settings_242/train.py +23 -0
  241. ansys/fluent/core/solver/settings_242/training_data_files.py +23 -0
  242. ansys/fluent/core/solver/settings_242/transparency_1.py +1 -1
  243. ansys/fluent/core/solver/settings_242/turbulence_model_design_tool.py +33 -0
  244. ansys/fluent/core/solver/settings_242/two_session_coupling.py +2 -2
  245. ansys/fluent/core/solver/settings_242/type_12.py +23 -0
  246. ansys/fluent/core/solver/settings_242/unhook_model.py +23 -0
  247. ansys/fluent/core/solver/settings_242/variables_1.py +42 -0
  248. ansys/fluent/core/solver/settings_242/wall_treatment_1.py +23 -0
  249. ansys/fluent/core/solver/tui_231.py +34375 -34375
  250. ansys/fluent/core/solver/tui_232.py +25424 -25424
  251. ansys/fluent/core/solver/tui_241.py +28292 -28292
  252. ansys/fluent/core/solver/tui_242.py +29608 -29590
  253. ansys/fluent/core/systemcoupling.py +1 -1
  254. ansys/fluent/core/utils/setup_for_fluent.py +1 -1
  255. ansys/fluent/core/workflow.py +4 -4
  256. ansys/fluent/tests/test_field_data.py +16 -0
  257. ansys/fluent/tests/test_flobject.py +21 -4
  258. ansys/fluent/tests/test_fluent_session.py +4 -4
  259. ansys/fluent/tests/test_launcher_remote.py +9 -7
  260. ansys/fluent/tests/test_reduction.py +36 -25
  261. ansys/fluent/tests/test_session.py +6 -6
  262. ansys/fluent/tests/test_settings_api.py +49 -12
  263. ansys/fluent/tests/test_solution_variables.py +17 -0
  264. {ansys_fluent_core-0.20.dev9.dist-info → ansys_fluent_core-0.20.dev11.dist-info}/METADATA +2 -2
  265. {ansys_fluent_core-0.20.dev9.dist-info → ansys_fluent_core-0.20.dev11.dist-info}/RECORD +267 -136
  266. ansys/fluent/core/solver/settings_232/fensapice_drop_vrh.py +0 -23
  267. ansys/fluent/core/solver/settings_232/fensapice_drop_vrh_1.py +0 -23
  268. ansys/fluent/core/solver/settings_241/fensapice_drop_vrh.py +0 -23
  269. {ansys_fluent_core-0.20.dev9.dist-info → ansys_fluent_core-0.20.dev11.dist-info}/LICENSE +0 -0
  270. {ansys_fluent_core-0.20.dev9.dist-info → ansys_fluent_core-0.20.dev11.dist-info}/WHEEL +0 -0
@@ -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,
@@ -133,8 +133,6 @@ from .fensapice_drop_cv import fensapice_drop_cv as fensapice_drop_cv_cls
133
133
  from .fensapice_drop_cx import fensapice_drop_cx as fensapice_drop_cx_cls
134
134
  from .fensapice_drop_cy import fensapice_drop_cy as fensapice_drop_cy_cls
135
135
  from .fensapice_drop_cz import fensapice_drop_cz as fensapice_drop_cz_cls
136
- from .fensapice_drop_vrh import fensapice_drop_vrh as fensapice_drop_vrh_cls
137
- from .fensapice_drop_vrh_1 import fensapice_drop_vrh_1 as fensapice_drop_vrh_1_cls
138
136
  from .fensapice_drop_vc import fensapice_drop_vc as fensapice_drop_vc_cls
139
137
  from .radiation_bc import radiation_bc as radiation_bc_cls
140
138
  from .radial_direction import radial_direction as radial_direction_cls
@@ -223,19 +221,19 @@ class mass_flow_inlet_child(Group):
223
221
  'fensapice_dpm_surface_injection', 'fensapice_dpm_inj_nstream',
224
222
  'fensapice_drop_icc', 'fensapice_drop_ctemp', 'fensapice_drop_cdiam',
225
223
  'fensapice_drop_cv', 'fensapice_drop_cx', 'fensapice_drop_cy',
226
- 'fensapice_drop_cz', 'fensapice_drop_vrh', 'fensapice_drop_vrh_1',
227
- 'fensapice_drop_vc', 'radiation_bc', 'radial_direction',
228
- 'coll_dtheta', 'coll_dphi', 'band_q_irrad', 'band_q_irrad_diffuse',
229
- 'parallel_collimated_beam', 'solar_direction', 'solar_irradiation',
230
- 't_b_b_spec', 't_b_b', 'in_emiss', 'fmean', 'fvar', 'fmean2',
231
- 'fvar2', 'tss_scalar', 'uds_bc', 'uds', 'pb_disc_bc', 'pb_disc',
232
- 'pb_qmom_bc', 'pb_qmom', 'pb_smm_bc', 'pb_smm', 'pb_dqmom_bc',
233
- 'pb_dqmom', 'dpm_bc_type', 'dpm_bc_collision_partner', 'reinj_inj',
234
- 'dpm_bc_udf', 'mixing_plane_thread', 'wsf', 'wsb', 'wsn',
235
- 'solar_fluxes', 'solar_shining_factor', 'radiating_s2s_surface',
236
- 'slip_velocity', 'velocity_ratio', 'volume_frac',
237
- 'granular_temperature', 'iac', 'ac_options', 'impedance_0',
238
- 'impedance_1', 'impedance_2', 'ac_wave']
224
+ 'fensapice_drop_cz', 'fensapice_drop_vc', 'radiation_bc',
225
+ 'radial_direction', 'coll_dtheta', 'coll_dphi', 'band_q_irrad',
226
+ 'band_q_irrad_diffuse', 'parallel_collimated_beam',
227
+ 'solar_direction', 'solar_irradiation', 't_b_b_spec', 't_b_b',
228
+ 'in_emiss', 'fmean', 'fvar', 'fmean2', 'fvar2', 'tss_scalar',
229
+ 'uds_bc', 'uds', 'pb_disc_bc', 'pb_disc', 'pb_qmom_bc', 'pb_qmom',
230
+ 'pb_smm_bc', 'pb_smm', 'pb_dqmom_bc', 'pb_dqmom', 'dpm_bc_type',
231
+ 'dpm_bc_collision_partner', 'reinj_inj', 'dpm_bc_udf',
232
+ 'mixing_plane_thread', 'wsf', 'wsb', 'wsn', 'solar_fluxes',
233
+ 'solar_shining_factor', 'radiating_s2s_surface', 'slip_velocity',
234
+ 'velocity_ratio', 'volume_frac', 'granular_temperature', 'iac',
235
+ 'ac_options', 'impedance_0', 'impedance_1', 'impedance_2',
236
+ 'ac_wave']
239
237
 
240
238
  _child_classes = dict(
241
239
  phase=phase_cls,
@@ -357,8 +355,6 @@ class mass_flow_inlet_child(Group):
357
355
  fensapice_drop_cx=fensapice_drop_cx_cls,
358
356
  fensapice_drop_cy=fensapice_drop_cy_cls,
359
357
  fensapice_drop_cz=fensapice_drop_cz_cls,
360
- fensapice_drop_vrh=fensapice_drop_vrh_cls,
361
- fensapice_drop_vrh_1=fensapice_drop_vrh_1_cls,
362
358
  fensapice_drop_vc=fensapice_drop_vc_cls,
363
359
  radiation_bc=radiation_bc_cls,
364
360
  radial_direction=radial_direction_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
@@ -177,9 +175,8 @@ class phase_child(Group):
177
175
  'fensapice_dpm_surface_injection', 'fensapice_dpm_inj_nstream',
178
176
  'fensapice_drop_icc', 'fensapice_drop_ctemp', 'fensapice_drop_cdiam',
179
177
  'fensapice_drop_cv', 'fensapice_drop_cx', 'fensapice_drop_cy',
180
- 'fensapice_drop_cz', 'fensapice_drop_vrh', 'fensapice_drop_vrh_1',
181
- 'fensapice_drop_vc', 'uds_bc', 'uds', 'dpm_bc_type',
182
- 'dpm_bc_collision_partner', 'reinj_inj', 'dpm_bc_udf',
178
+ 'fensapice_drop_cz', 'fensapice_drop_vc', 'uds_bc', 'uds',
179
+ 'dpm_bc_type', 'dpm_bc_collision_partner', 'reinj_inj', 'dpm_bc_udf',
183
180
  'solar_fluxes', 'solar_shining_factor', 'radiating_s2s_surface']
184
181
 
185
182
  _child_classes = dict(
@@ -297,8 +294,6 @@ class phase_child(Group):
297
294
  fensapice_drop_cx=fensapice_drop_cx_cls,
298
295
  fensapice_drop_cy=fensapice_drop_cy_cls,
299
296
  fensapice_drop_cz=fensapice_drop_cz_cls,
300
- fensapice_drop_vrh=fensapice_drop_vrh_cls,
301
- fensapice_drop_vrh_1=fensapice_drop_vrh_1_cls,
302
297
  fensapice_drop_vc=fensapice_drop_vc_cls,
303
298
  uds_bc=uds_bc_cls,
304
299
  uds=uds_cls,
@@ -172,8 +172,6 @@ from .fensapice_drop_cv import fensapice_drop_cv as fensapice_drop_cv_cls
172
172
  from .fensapice_drop_cx import fensapice_drop_cx as fensapice_drop_cx_cls
173
173
  from .fensapice_drop_cy import fensapice_drop_cy as fensapice_drop_cy_cls
174
174
  from .fensapice_drop_cz import fensapice_drop_cz as fensapice_drop_cz_cls
175
- from .fensapice_drop_vrh import fensapice_drop_vrh as fensapice_drop_vrh_cls
176
- from .fensapice_drop_vrh_1 import fensapice_drop_vrh_1 as fensapice_drop_vrh_1_cls
177
175
  from .fensapice_drop_vc import fensapice_drop_vc as fensapice_drop_vc_cls
178
176
  from .mixing_plane_thread import mixing_plane_thread as mixing_plane_thread_cls
179
177
  from .wsf import wsf as wsf_cls
@@ -241,10 +239,10 @@ class phase_child(Group):
241
239
  'fensapice_dpm_inj_nstream', 'fensapice_drop_icc',
242
240
  'fensapice_drop_ctemp', 'fensapice_drop_cdiam', 'fensapice_drop_cv',
243
241
  'fensapice_drop_cx', 'fensapice_drop_cy', 'fensapice_drop_cz',
244
- 'fensapice_drop_vrh', 'fensapice_drop_vrh_1', 'fensapice_drop_vc',
245
- 'mixing_plane_thread', 'wsf', 'wsb', 'wsn', 'solar_fluxes',
246
- 'solar_shining_factor', 'radiating_s2s_surface', 'ac_options',
247
- 'impedance_0', 'impedance_1', 'impedance_2', 'ac_wave', 'les_spec']
242
+ 'fensapice_drop_vc', 'mixing_plane_thread', 'wsf', 'wsb', 'wsn',
243
+ 'solar_fluxes', 'solar_shining_factor', 'radiating_s2s_surface',
244
+ 'ac_options', 'impedance_0', 'impedance_1', 'impedance_2', 'ac_wave',
245
+ 'les_spec']
248
246
 
249
247
  _child_classes = dict(
250
248
  geom_disable=geom_disable_cls,
@@ -405,8 +403,6 @@ class phase_child(Group):
405
403
  fensapice_drop_cx=fensapice_drop_cx_cls,
406
404
  fensapice_drop_cy=fensapice_drop_cy_cls,
407
405
  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
406
  fensapice_drop_vc=fensapice_drop_vc_cls,
411
407
  mixing_plane_thread=mixing_plane_thread_cls,
412
408
  wsf=wsf_cls,
@@ -203,8 +203,6 @@ from .fensapice_drop_cv import fensapice_drop_cv as fensapice_drop_cv_cls
203
203
  from .fensapice_drop_cx import fensapice_drop_cx as fensapice_drop_cx_cls
204
204
  from .fensapice_drop_cy import fensapice_drop_cy as fensapice_drop_cy_cls
205
205
  from .fensapice_drop_cz import fensapice_drop_cz as fensapice_drop_cz_cls
206
- from .fensapice_drop_vrh import fensapice_drop_vrh as fensapice_drop_vrh_cls
207
- from .fensapice_drop_vrh_1 import fensapice_drop_vrh_1 as fensapice_drop_vrh_1_cls
208
206
  from .fensapice_drop_vc import fensapice_drop_vc as fensapice_drop_vc_cls
209
207
  from .mixing_plane_thread import mixing_plane_thread as mixing_plane_thread_cls
210
208
  from .solar_fluxes import solar_fluxes as solar_fluxes_cls
@@ -279,10 +277,10 @@ class phase_child(Group):
279
277
  'fensapice_dpm_surface_injection', 'fensapice_dpm_inj_nstream',
280
278
  'fensapice_drop_icc', 'fensapice_drop_ctemp', 'fensapice_drop_cdiam',
281
279
  'fensapice_drop_cv', 'fensapice_drop_cx', 'fensapice_drop_cy',
282
- 'fensapice_drop_cz', 'fensapice_drop_vrh', 'fensapice_drop_vrh_1',
283
- 'fensapice_drop_vc', 'mixing_plane_thread', 'solar_fluxes',
284
- 'solar_shining_factor', 'radiating_s2s_surface', 'ac_options',
285
- 'impedance_0', 'impedance_1', 'impedance_2', 'ac_wave', 'les_spec']
280
+ 'fensapice_drop_cz', 'fensapice_drop_vc', 'mixing_plane_thread',
281
+ 'solar_fluxes', 'solar_shining_factor', 'radiating_s2s_surface',
282
+ 'ac_options', 'impedance_0', 'impedance_1', 'impedance_2', 'ac_wave',
283
+ 'les_spec']
286
284
 
287
285
  _child_classes = dict(
288
286
  geom_disable=geom_disable_cls,
@@ -474,8 +472,6 @@ class phase_child(Group):
474
472
  fensapice_drop_cx=fensapice_drop_cx_cls,
475
473
  fensapice_drop_cy=fensapice_drop_cy_cls,
476
474
  fensapice_drop_cz=fensapice_drop_cz_cls,
477
- fensapice_drop_vrh=fensapice_drop_vrh_cls,
478
- fensapice_drop_vrh_1=fensapice_drop_vrh_1_cls,
479
475
  fensapice_drop_vc=fensapice_drop_vc_cls,
480
476
  mixing_plane_thread=mixing_plane_thread_cls,
481
477
  solar_fluxes=solar_fluxes_cls,
@@ -172,8 +172,6 @@ from .fensapice_drop_cv import fensapice_drop_cv as fensapice_drop_cv_cls
172
172
  from .fensapice_drop_cx import fensapice_drop_cx as fensapice_drop_cx_cls
173
173
  from .fensapice_drop_cy import fensapice_drop_cy as fensapice_drop_cy_cls
174
174
  from .fensapice_drop_cz import fensapice_drop_cz as fensapice_drop_cz_cls
175
- from .fensapice_drop_vrh import fensapice_drop_vrh as fensapice_drop_vrh_cls
176
- from .fensapice_drop_vrh_1 import fensapice_drop_vrh_1 as fensapice_drop_vrh_1_cls
177
175
  from .fensapice_drop_vc import fensapice_drop_vc as fensapice_drop_vc_cls
178
176
  from .mixing_plane_thread import mixing_plane_thread as mixing_plane_thread_cls
179
177
  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
- 'b', 'strength']
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', 'b', 'strength']
251
248
 
252
249
  _child_classes = dict(
253
250
  geom_disable=geom_disable_cls,
@@ -408,8 +405,6 @@ class phase_child(Group):
408
405
  fensapice_drop_cx=fensapice_drop_cx_cls,
409
406
  fensapice_drop_cy=fensapice_drop_cy_cls,
410
407
  fensapice_drop_cz=fensapice_drop_cz_cls,
411
- fensapice_drop_vrh=fensapice_drop_vrh_cls,
412
- fensapice_drop_vrh_1=fensapice_drop_vrh_1_cls,
413
408
  fensapice_drop_vc=fensapice_drop_vc_cls,
414
409
  mixing_plane_thread=mixing_plane_thread_cls,
415
410
  wsf=wsf_cls,
@@ -172,8 +172,6 @@ from .fensapice_drop_cv import fensapice_drop_cv as fensapice_drop_cv_cls
172
172
  from .fensapice_drop_cx import fensapice_drop_cx as fensapice_drop_cx_cls
173
173
  from .fensapice_drop_cy import fensapice_drop_cy as fensapice_drop_cy_cls
174
174
  from .fensapice_drop_cz import fensapice_drop_cz as fensapice_drop_cz_cls
175
- from .fensapice_drop_vrh import fensapice_drop_vrh as fensapice_drop_vrh_cls
176
- from .fensapice_drop_vrh_1 import fensapice_drop_vrh_1 as fensapice_drop_vrh_1_cls
177
175
  from .fensapice_drop_vc import fensapice_drop_vc as fensapice_drop_vc_cls
178
176
  from .mixing_plane_thread import mixing_plane_thread as mixing_plane_thread_cls
179
177
  from .wsf import wsf as wsf_cls
@@ -248,12 +246,11 @@ class phase_child(Group):
248
246
  'fensapice_dpm_inj_nstream', 'fensapice_drop_icc',
249
247
  'fensapice_drop_ctemp', 'fensapice_drop_cdiam', 'fensapice_drop_cv',
250
248
  'fensapice_drop_cx', 'fensapice_drop_cy', 'fensapice_drop_cz',
251
- 'fensapice_drop_vrh', 'fensapice_drop_vrh_1', 'fensapice_drop_vc',
252
- 'mixing_plane_thread', 'wsf', 'wsb', 'wsn', 'solar_fluxes',
253
- 'solar_shining_factor', 'radiating_s2s_surface', 'ac_options',
254
- 'impedance_0', 'impedance_1', 'impedance_2', 'ac_wave', 'les_spec',
255
- 'a', 'swirl_model', 'swirl_factor', 'fan_omega', 'fan_origin',
256
- 'strength', 'new_fan_definition']
249
+ 'fensapice_drop_vc', 'mixing_plane_thread', 'wsf', 'wsb', 'wsn',
250
+ 'solar_fluxes', 'solar_shining_factor', 'radiating_s2s_surface',
251
+ 'ac_options', 'impedance_0', 'impedance_1', 'impedance_2', 'ac_wave',
252
+ 'les_spec', 'a', 'swirl_model', 'swirl_factor', 'fan_omega',
253
+ 'fan_origin', 'strength', 'new_fan_definition']
257
254
 
258
255
  _child_classes = dict(
259
256
  geom_disable=geom_disable_cls,
@@ -414,8 +411,6 @@ class phase_child(Group):
414
411
  fensapice_drop_cx=fensapice_drop_cx_cls,
415
412
  fensapice_drop_cy=fensapice_drop_cy_cls,
416
413
  fensapice_drop_cz=fensapice_drop_cz_cls,
417
- fensapice_drop_vrh=fensapice_drop_vrh_cls,
418
- fensapice_drop_vrh_1=fensapice_drop_vrh_1_cls,
419
414
  fensapice_drop_vc=fensapice_drop_vc_cls,
420
415
  mixing_plane_thread=mixing_plane_thread_cls,
421
416
  wsf=wsf_cls,