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
@@ -132,8 +132,6 @@ from .fensapice_drop_cv import fensapice_drop_cv as fensapice_drop_cv_cls
132
132
  from .fensapice_drop_cx import fensapice_drop_cx as fensapice_drop_cx_cls
133
133
  from .fensapice_drop_cy import fensapice_drop_cy as fensapice_drop_cy_cls
134
134
  from .fensapice_drop_cz import fensapice_drop_cz as fensapice_drop_cz_cls
135
- from .fensapice_drop_vrh import fensapice_drop_vrh as fensapice_drop_vrh_cls
136
- from .fensapice_drop_vrh_1 import fensapice_drop_vrh_1 as fensapice_drop_vrh_1_cls
137
135
  from .fensapice_drop_vc import fensapice_drop_vc as fensapice_drop_vc_cls
138
136
  from .radiation_bc import radiation_bc as radiation_bc_cls
139
137
  from .radial_direction import radial_direction as radial_direction_cls
@@ -222,19 +220,19 @@ class phase_child(Group):
222
220
  'fensapice_dpm_surface_injection', 'fensapice_dpm_inj_nstream',
223
221
  'fensapice_drop_icc', 'fensapice_drop_ctemp', 'fensapice_drop_cdiam',
224
222
  'fensapice_drop_cv', 'fensapice_drop_cx', 'fensapice_drop_cy',
225
- 'fensapice_drop_cz', 'fensapice_drop_vrh', 'fensapice_drop_vrh_1',
226
- 'fensapice_drop_vc', 'radiation_bc', 'radial_direction',
227
- 'coll_dtheta', 'coll_dphi', 'band_q_irrad', 'band_q_irrad_diffuse',
228
- 'parallel_collimated_beam', 'solar_direction', 'solar_irradiation',
229
- 't_b_b_spec', 't_b_b', 'in_emiss', 'fmean', 'fvar', 'fmean2',
230
- 'fvar2', 'tss_scalar', 'uds_bc', 'uds', 'pb_disc_bc', 'pb_disc',
231
- 'pb_qmom_bc', 'pb_qmom', 'pb_smm_bc', 'pb_smm', 'pb_dqmom_bc',
232
- 'pb_dqmom', 'dpm_bc_type', 'dpm_bc_collision_partner', 'reinj_inj',
233
- 'dpm_bc_udf', 'mixing_plane_thread', 'wsf', 'wsb', 'wsn',
234
- 'solar_fluxes', 'solar_shining_factor', 'radiating_s2s_surface',
235
- 'slip_velocity', 'velocity_ratio', 'volume_frac',
236
- 'granular_temperature', 'iac', 'ac_options', 'impedance_0',
237
- 'impedance_1', 'impedance_2', 'ac_wave']
223
+ 'fensapice_drop_cz', 'fensapice_drop_vc', 'radiation_bc',
224
+ 'radial_direction', 'coll_dtheta', 'coll_dphi', 'band_q_irrad',
225
+ 'band_q_irrad_diffuse', 'parallel_collimated_beam',
226
+ 'solar_direction', 'solar_irradiation', 't_b_b_spec', 't_b_b',
227
+ 'in_emiss', 'fmean', 'fvar', 'fmean2', 'fvar2', 'tss_scalar',
228
+ 'uds_bc', 'uds', 'pb_disc_bc', 'pb_disc', 'pb_qmom_bc', 'pb_qmom',
229
+ 'pb_smm_bc', 'pb_smm', 'pb_dqmom_bc', 'pb_dqmom', 'dpm_bc_type',
230
+ 'dpm_bc_collision_partner', 'reinj_inj', 'dpm_bc_udf',
231
+ 'mixing_plane_thread', 'wsf', 'wsb', 'wsn', 'solar_fluxes',
232
+ 'solar_shining_factor', 'radiating_s2s_surface', 'slip_velocity',
233
+ 'velocity_ratio', 'volume_frac', 'granular_temperature', 'iac',
234
+ 'ac_options', 'impedance_0', 'impedance_1', 'impedance_2',
235
+ 'ac_wave']
238
236
 
239
237
  _child_classes = dict(
240
238
  geom_disable=geom_disable_cls,
@@ -355,8 +353,6 @@ class phase_child(Group):
355
353
  fensapice_drop_cx=fensapice_drop_cx_cls,
356
354
  fensapice_drop_cy=fensapice_drop_cy_cls,
357
355
  fensapice_drop_cz=fensapice_drop_cz_cls,
358
- fensapice_drop_vrh=fensapice_drop_vrh_cls,
359
- fensapice_drop_vrh_1=fensapice_drop_vrh_1_cls,
360
356
  fensapice_drop_vc=fensapice_drop_vc_cls,
361
357
  radiation_bc=radiation_bc_cls,
362
358
  radial_direction=radial_direction_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
@@ -178,9 +176,8 @@ class pressure_far_field_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(
@@ -299,8 +296,6 @@ class pressure_far_field_child(Group):
299
296
  fensapice_drop_cx=fensapice_drop_cx_cls,
300
297
  fensapice_drop_cy=fensapice_drop_cy_cls,
301
298
  fensapice_drop_cz=fensapice_drop_cz_cls,
302
- fensapice_drop_vrh=fensapice_drop_vrh_cls,
303
- fensapice_drop_vrh_1=fensapice_drop_vrh_1_cls,
304
299
  fensapice_drop_vc=fensapice_drop_vc_cls,
305
300
  uds_bc=uds_bc_cls,
306
301
  uds=uds_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
@@ -242,10 +240,10 @@ class pressure_inlet_child(Group):
242
240
  'fensapice_dpm_inj_nstream', 'fensapice_drop_icc',
243
241
  'fensapice_drop_ctemp', 'fensapice_drop_cdiam', 'fensapice_drop_cv',
244
242
  'fensapice_drop_cx', 'fensapice_drop_cy', 'fensapice_drop_cz',
245
- 'fensapice_drop_vrh', 'fensapice_drop_vrh_1', 'fensapice_drop_vc',
246
- 'mixing_plane_thread', 'wsf', 'wsb', 'wsn', 'solar_fluxes',
247
- 'solar_shining_factor', 'radiating_s2s_surface', 'ac_options',
248
- 'impedance_0', 'impedance_1', 'impedance_2', 'ac_wave', 'les_spec']
243
+ 'fensapice_drop_vc', 'mixing_plane_thread', 'wsf', 'wsb', 'wsn',
244
+ 'solar_fluxes', 'solar_shining_factor', 'radiating_s2s_surface',
245
+ 'ac_options', 'impedance_0', 'impedance_1', 'impedance_2', 'ac_wave',
246
+ 'les_spec']
249
247
 
250
248
  _child_classes = dict(
251
249
  phase=phase_cls,
@@ -407,8 +405,6 @@ class pressure_inlet_child(Group):
407
405
  fensapice_drop_cx=fensapice_drop_cx_cls,
408
406
  fensapice_drop_cy=fensapice_drop_cy_cls,
409
407
  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
408
  fensapice_drop_vc=fensapice_drop_vc_cls,
413
409
  mixing_plane_thread=mixing_plane_thread_cls,
414
410
  wsf=wsf_cls,
@@ -204,8 +204,6 @@ from .fensapice_drop_cv import fensapice_drop_cv as fensapice_drop_cv_cls
204
204
  from .fensapice_drop_cx import fensapice_drop_cx as fensapice_drop_cx_cls
205
205
  from .fensapice_drop_cy import fensapice_drop_cy as fensapice_drop_cy_cls
206
206
  from .fensapice_drop_cz import fensapice_drop_cz as fensapice_drop_cz_cls
207
- from .fensapice_drop_vrh import fensapice_drop_vrh as fensapice_drop_vrh_cls
208
- from .fensapice_drop_vrh_1 import fensapice_drop_vrh_1 as fensapice_drop_vrh_1_cls
209
207
  from .fensapice_drop_vc import fensapice_drop_vc as fensapice_drop_vc_cls
210
208
  from .mixing_plane_thread import mixing_plane_thread as mixing_plane_thread_cls
211
209
  from .solar_fluxes import solar_fluxes as solar_fluxes_cls
@@ -280,10 +278,10 @@ class velocity_inlet_child(Group):
280
278
  'fensapice_dpm_surface_injection', 'fensapice_dpm_inj_nstream',
281
279
  'fensapice_drop_icc', 'fensapice_drop_ctemp', 'fensapice_drop_cdiam',
282
280
  'fensapice_drop_cv', 'fensapice_drop_cx', 'fensapice_drop_cy',
283
- 'fensapice_drop_cz', 'fensapice_drop_vrh', 'fensapice_drop_vrh_1',
284
- 'fensapice_drop_vc', 'mixing_plane_thread', 'solar_fluxes',
285
- 'solar_shining_factor', 'radiating_s2s_surface', 'ac_options',
286
- 'impedance_0', 'impedance_1', 'impedance_2', 'ac_wave', 'les_spec']
281
+ 'fensapice_drop_cz', 'fensapice_drop_vc', 'mixing_plane_thread',
282
+ 'solar_fluxes', 'solar_shining_factor', 'radiating_s2s_surface',
283
+ 'ac_options', 'impedance_0', 'impedance_1', 'impedance_2', 'ac_wave',
284
+ 'les_spec']
287
285
 
288
286
  _child_classes = dict(
289
287
  phase=phase_cls,
@@ -476,8 +474,6 @@ class velocity_inlet_child(Group):
476
474
  fensapice_drop_cx=fensapice_drop_cx_cls,
477
475
  fensapice_drop_cy=fensapice_drop_cy_cls,
478
476
  fensapice_drop_cz=fensapice_drop_cz_cls,
479
- fensapice_drop_vrh=fensapice_drop_vrh_cls,
480
- fensapice_drop_vrh_1=fensapice_drop_vrh_1_cls,
481
477
  fensapice_drop_vc=fensapice_drop_vc_cls,
482
478
  mixing_plane_thread=mixing_plane_thread_cls,
483
479
  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 = "0151694c92fe1b6bfd5c2130d091ab5931e336e033dfde33304ad75d89fb41ab"
8
+ SHASH = "5fff2b5569c1fb2e52767e6ee2dd178dddbcbb1d0285343fd84a964fae04b423"
9
9
  from .root import root
@@ -177,8 +177,6 @@ from .fensapice_drop_cv import fensapice_drop_cv as fensapice_drop_cv_cls
177
177
  from .fensapice_drop_cx import fensapice_drop_cx as fensapice_drop_cx_cls
178
178
  from .fensapice_drop_cy import fensapice_drop_cy as fensapice_drop_cy_cls
179
179
  from .fensapice_drop_cz import fensapice_drop_cz as fensapice_drop_cz_cls
180
- from .fensapice_drop_vrh import fensapice_drop_vrh as fensapice_drop_vrh_cls
181
- from .fensapice_drop_vrh_1 import fensapice_drop_vrh_1 as fensapice_drop_vrh_1_cls
182
180
  from .fensapice_drop_vc import fensapice_drop_vc as fensapice_drop_vc_cls
183
181
  from .mixing_plane_thread import mixing_plane_thread as mixing_plane_thread_cls
184
182
  from .wsf import wsf as wsf_cls
@@ -248,11 +246,11 @@ class inlet_vent_child(Group):
248
246
  'fensapice_dpm_inj_nstream', 'fensapice_drop_icc',
249
247
  'fensapice_drop_ctemp', 'fensapice_drop_cmelt',
250
248
  'fensapice_drop_cdiam', 'fensapice_drop_cv', 'fensapice_drop_cx',
251
- 'fensapice_drop_cy', 'fensapice_drop_cz', 'fensapice_drop_vrh',
252
- 'fensapice_drop_vrh_1', 'fensapice_drop_vc', 'mixing_plane_thread',
253
- 'wsf', 'wsb', 'wsn', 'solar_fluxes', 'solar_shining_factor',
254
- 'radiating_s2s_surface', 'ac_options', 'impedance_0', 'impedance_1',
255
- 'impedance_2', 'ac_wave', 'les_spec', 'b', 'strength']
249
+ 'fensapice_drop_cy', 'fensapice_drop_cz', 'fensapice_drop_vc',
250
+ 'mixing_plane_thread', 'wsf', 'wsb', 'wsn', 'solar_fluxes',
251
+ 'solar_shining_factor', 'radiating_s2s_surface', 'ac_options',
252
+ 'impedance_0', 'impedance_1', 'impedance_2', 'ac_wave', 'les_spec',
253
+ 'b', 'strength']
256
254
 
257
255
  _child_classes = dict(
258
256
  phase=phase_cls,
@@ -418,8 +416,6 @@ class inlet_vent_child(Group):
418
416
  fensapice_drop_cx=fensapice_drop_cx_cls,
419
417
  fensapice_drop_cy=fensapice_drop_cy_cls,
420
418
  fensapice_drop_cz=fensapice_drop_cz_cls,
421
- fensapice_drop_vrh=fensapice_drop_vrh_cls,
422
- fensapice_drop_vrh_1=fensapice_drop_vrh_1_cls,
423
419
  fensapice_drop_vc=fensapice_drop_vc_cls,
424
420
  mixing_plane_thread=mixing_plane_thread_cls,
425
421
  wsf=wsf_cls,
@@ -177,8 +177,6 @@ from .fensapice_drop_cv import fensapice_drop_cv as fensapice_drop_cv_cls
177
177
  from .fensapice_drop_cx import fensapice_drop_cx as fensapice_drop_cx_cls
178
178
  from .fensapice_drop_cy import fensapice_drop_cy as fensapice_drop_cy_cls
179
179
  from .fensapice_drop_cz import fensapice_drop_cz as fensapice_drop_cz_cls
180
- from .fensapice_drop_vrh import fensapice_drop_vrh as fensapice_drop_vrh_cls
181
- from .fensapice_drop_vrh_1 import fensapice_drop_vrh_1 as fensapice_drop_vrh_1_cls
182
180
  from .fensapice_drop_vc import fensapice_drop_vc as fensapice_drop_vc_cls
183
181
  from .mixing_plane_thread import mixing_plane_thread as mixing_plane_thread_cls
184
182
  from .wsf import wsf as wsf_cls
@@ -253,13 +251,12 @@ class intake_fan_child(Group):
253
251
  'fensapice_dpm_inj_nstream', 'fensapice_drop_icc',
254
252
  'fensapice_drop_ctemp', 'fensapice_drop_cmelt',
255
253
  'fensapice_drop_cdiam', 'fensapice_drop_cv', 'fensapice_drop_cx',
256
- 'fensapice_drop_cy', 'fensapice_drop_cz', 'fensapice_drop_vrh',
257
- 'fensapice_drop_vrh_1', 'fensapice_drop_vc', 'mixing_plane_thread',
258
- 'wsf', 'wsb', 'wsn', 'solar_fluxes', 'solar_shining_factor',
259
- 'radiating_s2s_surface', 'ac_options', 'impedance_0', 'impedance_1',
260
- 'impedance_2', 'ac_wave', 'les_spec', 'a', 'swirl_model',
261
- 'swirl_factor', 'fan_omega', 'fan_origin', 'strength',
262
- 'new_fan_definition']
254
+ 'fensapice_drop_cy', 'fensapice_drop_cz', 'fensapice_drop_vc',
255
+ 'mixing_plane_thread', 'wsf', 'wsb', 'wsn', 'solar_fluxes',
256
+ 'solar_shining_factor', 'radiating_s2s_surface', 'ac_options',
257
+ 'impedance_0', 'impedance_1', 'impedance_2', 'ac_wave', 'les_spec',
258
+ 'a', 'swirl_model', 'swirl_factor', 'fan_omega', 'fan_origin',
259
+ 'strength', 'new_fan_definition']
263
260
 
264
261
  _child_classes = dict(
265
262
  phase=phase_cls,
@@ -425,8 +422,6 @@ class intake_fan_child(Group):
425
422
  fensapice_drop_cx=fensapice_drop_cx_cls,
426
423
  fensapice_drop_cy=fensapice_drop_cy_cls,
427
424
  fensapice_drop_cz=fensapice_drop_cz_cls,
428
- fensapice_drop_vrh=fensapice_drop_vrh_cls,
429
- fensapice_drop_vrh_1=fensapice_drop_vrh_1_cls,
430
425
  fensapice_drop_vc=fensapice_drop_vc_cls,
431
426
  mixing_plane_thread=mixing_plane_thread_cls,
432
427
  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 import radial_direction as radial_direction_cls
@@ -228,10 +226,9 @@ class mass_flow_inlet_child(Group):
228
226
  'fensapice_dpm_surface_injection', 'fensapice_dpm_inj_nstream',
229
227
  'fensapice_drop_icc', 'fensapice_drop_ctemp', 'fensapice_drop_cmelt',
230
228
  'fensapice_drop_cdiam', 'fensapice_drop_cv', 'fensapice_drop_cx',
231
- 'fensapice_drop_cy', 'fensapice_drop_cz', 'fensapice_drop_vrh',
232
- 'fensapice_drop_vrh_1', 'fensapice_drop_vc', 'radiation_bc',
233
- 'radial_direction', 'coll_dtheta', 'coll_dphi', 'band_q_irrad',
234
- 'band_q_irrad_diffuse', 'parallel_collimated_beam',
229
+ 'fensapice_drop_cy', 'fensapice_drop_cz', 'fensapice_drop_vc',
230
+ 'radiation_bc', 'radial_direction', 'coll_dtheta', 'coll_dphi',
231
+ 'band_q_irrad', 'band_q_irrad_diffuse', 'parallel_collimated_beam',
235
232
  'solar_direction', 'solar_irradiation', 't_b_b_spec', 't_b_b',
236
233
  'in_emiss', 'fmean', 'fvar', 'fmean2', 'fvar2', 'tss_scalar',
237
234
  'uds_bc', 'uds', 'pb_disc_bc', 'pb_disc', 'pb_qmom_bc', 'pb_qmom',
@@ -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=radial_direction_cls,
@@ -130,8 +130,6 @@ from .fensapice_drop_cv import fensapice_drop_cv as fensapice_drop_cv_cls
130
130
  from .fensapice_drop_cx import fensapice_drop_cx as fensapice_drop_cx_cls
131
131
  from .fensapice_drop_cy import fensapice_drop_cy as fensapice_drop_cy_cls
132
132
  from .fensapice_drop_cz import fensapice_drop_cz as fensapice_drop_cz_cls
133
- from .fensapice_drop_vrh import fensapice_drop_vrh as fensapice_drop_vrh_cls
134
- from .fensapice_drop_vrh_1 import fensapice_drop_vrh_1 as fensapice_drop_vrh_1_cls
135
133
  from .fensapice_drop_vc import fensapice_drop_vc as fensapice_drop_vc_cls
136
134
  from .uds_bc import uds_bc as uds_bc_cls
137
135
  from .uds import uds as uds_cls
@@ -179,10 +177,10 @@ class phase_child(Group):
179
177
  'fensapice_dpm_surface_injection', 'fensapice_dpm_inj_nstream',
180
178
  'fensapice_drop_icc', 'fensapice_drop_ctemp', 'fensapice_drop_cmelt',
181
179
  'fensapice_drop_cdiam', 'fensapice_drop_cv', 'fensapice_drop_cx',
182
- 'fensapice_drop_cy', 'fensapice_drop_cz', 'fensapice_drop_vrh',
183
- 'fensapice_drop_vrh_1', 'fensapice_drop_vc', 'uds_bc', 'uds',
184
- 'dpm_bc_type', 'dpm_bc_collision_partner', 'reinj_inj', 'dpm_bc_udf',
185
- 'solar_fluxes', 'solar_shining_factor', 'radiating_s2s_surface']
180
+ 'fensapice_drop_cy', 'fensapice_drop_cz', 'fensapice_drop_vc',
181
+ 'uds_bc', 'uds', 'dpm_bc_type', 'dpm_bc_collision_partner',
182
+ 'reinj_inj', 'dpm_bc_udf', 'solar_fluxes', 'solar_shining_factor',
183
+ 'radiating_s2s_surface']
186
184
 
187
185
  _child_classes = dict(
188
186
  name=name_cls,
@@ -301,8 +299,6 @@ class phase_child(Group):
301
299
  fensapice_drop_cx=fensapice_drop_cx_cls,
302
300
  fensapice_drop_cy=fensapice_drop_cy_cls,
303
301
  fensapice_drop_cz=fensapice_drop_cz_cls,
304
- fensapice_drop_vrh=fensapice_drop_vrh_cls,
305
- fensapice_drop_vrh_1=fensapice_drop_vrh_1_cls,
306
302
  fensapice_drop_vc=fensapice_drop_vc_cls,
307
303
  uds_bc=uds_bc_cls,
308
304
  uds=uds_cls,
@@ -176,8 +176,6 @@ from .fensapice_drop_cv import fensapice_drop_cv as fensapice_drop_cv_cls
176
176
  from .fensapice_drop_cx import fensapice_drop_cx as fensapice_drop_cx_cls
177
177
  from .fensapice_drop_cy import fensapice_drop_cy as fensapice_drop_cy_cls
178
178
  from .fensapice_drop_cz import fensapice_drop_cz as fensapice_drop_cz_cls
179
- from .fensapice_drop_vrh import fensapice_drop_vrh as fensapice_drop_vrh_cls
180
- from .fensapice_drop_vrh_1 import fensapice_drop_vrh_1 as fensapice_drop_vrh_1_cls
181
179
  from .fensapice_drop_vc import fensapice_drop_vc as fensapice_drop_vc_cls
182
180
  from .mixing_plane_thread import mixing_plane_thread as mixing_plane_thread_cls
183
181
  from .wsf import wsf as wsf_cls
@@ -245,11 +243,10 @@ class phase_child(Group):
245
243
  'fensapice_dpm_inj_nstream', 'fensapice_drop_icc',
246
244
  'fensapice_drop_ctemp', 'fensapice_drop_cmelt',
247
245
  'fensapice_drop_cdiam', 'fensapice_drop_cv', 'fensapice_drop_cx',
248
- 'fensapice_drop_cy', 'fensapice_drop_cz', 'fensapice_drop_vrh',
249
- 'fensapice_drop_vrh_1', 'fensapice_drop_vc', 'mixing_plane_thread',
250
- 'wsf', 'wsb', 'wsn', 'solar_fluxes', 'solar_shining_factor',
251
- 'radiating_s2s_surface', 'ac_options', 'impedance_0', 'impedance_1',
252
- 'impedance_2', 'ac_wave', 'les_spec']
246
+ 'fensapice_drop_cy', 'fensapice_drop_cz', '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']
253
250
 
254
251
  _child_classes = dict(
255
252
  name=name_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,
@@ -207,8 +207,6 @@ from .fensapice_drop_cv import fensapice_drop_cv as fensapice_drop_cv_cls
207
207
  from .fensapice_drop_cx import fensapice_drop_cx as fensapice_drop_cx_cls
208
208
  from .fensapice_drop_cy import fensapice_drop_cy as fensapice_drop_cy_cls
209
209
  from .fensapice_drop_cz import fensapice_drop_cz as fensapice_drop_cz_cls
210
- from .fensapice_drop_vrh import fensapice_drop_vrh as fensapice_drop_vrh_cls
211
- from .fensapice_drop_vrh_1 import fensapice_drop_vrh_1 as fensapice_drop_vrh_1_cls
212
210
  from .fensapice_drop_vc import fensapice_drop_vc as fensapice_drop_vc_cls
213
211
  from .mixing_plane_thread import mixing_plane_thread as mixing_plane_thread_cls
214
212
  from .solar_fluxes import solar_fluxes as solar_fluxes_cls
@@ -284,11 +282,10 @@ class phase_child(Group):
284
282
  'fensapice_dpm_inj_nstream', 'fensapice_drop_icc',
285
283
  'fensapice_drop_ctemp', 'fensapice_drop_cmelt',
286
284
  'fensapice_drop_cdiam', 'fensapice_drop_cv', 'fensapice_drop_cx',
287
- 'fensapice_drop_cy', 'fensapice_drop_cz', 'fensapice_drop_vrh',
288
- 'fensapice_drop_vrh_1', 'fensapice_drop_vc', 'mixing_plane_thread',
289
- 'solar_fluxes', 'solar_shining_factor', 'radiating_s2s_surface',
290
- 'ac_options', 'impedance_0', 'impedance_1', 'impedance_2', 'ac_wave',
291
- 'les_spec']
285
+ 'fensapice_drop_cy', 'fensapice_drop_cz', 'fensapice_drop_vc',
286
+ 'mixing_plane_thread', 'solar_fluxes', 'solar_shining_factor',
287
+ 'radiating_s2s_surface', 'ac_options', 'impedance_0', 'impedance_1',
288
+ 'impedance_2', 'ac_wave', 'les_spec']
292
289
 
293
290
  _child_classes = dict(
294
291
  name=name_cls,
@@ -484,8 +481,6 @@ class phase_child(Group):
484
481
  fensapice_drop_cx=fensapice_drop_cx_cls,
485
482
  fensapice_drop_cy=fensapice_drop_cy_cls,
486
483
  fensapice_drop_cz=fensapice_drop_cz_cls,
487
- fensapice_drop_vrh=fensapice_drop_vrh_cls,
488
- fensapice_drop_vrh_1=fensapice_drop_vrh_1_cls,
489
484
  fensapice_drop_vc=fensapice_drop_vc_cls,
490
485
  mixing_plane_thread=mixing_plane_thread_cls,
491
486
  solar_fluxes=solar_fluxes_cls,
@@ -176,8 +176,6 @@ from .fensapice_drop_cv import fensapice_drop_cv as fensapice_drop_cv_cls
176
176
  from .fensapice_drop_cx import fensapice_drop_cx as fensapice_drop_cx_cls
177
177
  from .fensapice_drop_cy import fensapice_drop_cy as fensapice_drop_cy_cls
178
178
  from .fensapice_drop_cz import fensapice_drop_cz as fensapice_drop_cz_cls
179
- from .fensapice_drop_vrh import fensapice_drop_vrh as fensapice_drop_vrh_cls
180
- from .fensapice_drop_vrh_1 import fensapice_drop_vrh_1 as fensapice_drop_vrh_1_cls
181
179
  from .fensapice_drop_vc import fensapice_drop_vc as fensapice_drop_vc_cls
182
180
  from .mixing_plane_thread import mixing_plane_thread as mixing_plane_thread_cls
183
181
  from .wsf import wsf as wsf_cls
@@ -247,11 +245,11 @@ class phase_child(Group):
247
245
  'fensapice_dpm_inj_nstream', 'fensapice_drop_icc',
248
246
  'fensapice_drop_ctemp', 'fensapice_drop_cmelt',
249
247
  'fensapice_drop_cdiam', 'fensapice_drop_cv', 'fensapice_drop_cx',
250
- 'fensapice_drop_cy', 'fensapice_drop_cz', 'fensapice_drop_vrh',
251
- 'fensapice_drop_vrh_1', 'fensapice_drop_vc', 'mixing_plane_thread',
252
- 'wsf', 'wsb', 'wsn', 'solar_fluxes', 'solar_shining_factor',
253
- 'radiating_s2s_surface', 'ac_options', 'impedance_0', 'impedance_1',
254
- 'impedance_2', 'ac_wave', 'les_spec', 'b', 'strength']
248
+ 'fensapice_drop_cy', 'fensapice_drop_cz', 'fensapice_drop_vc',
249
+ 'mixing_plane_thread', 'wsf', 'wsb', 'wsn', 'solar_fluxes',
250
+ 'solar_shining_factor', 'radiating_s2s_surface', 'ac_options',
251
+ 'impedance_0', 'impedance_1', 'impedance_2', 'ac_wave', 'les_spec',
252
+ 'b', 'strength']
255
253
 
256
254
  _child_classes = dict(
257
255
  name=name_cls,
@@ -416,8 +414,6 @@ class phase_child(Group):
416
414
  fensapice_drop_cx=fensapice_drop_cx_cls,
417
415
  fensapice_drop_cy=fensapice_drop_cy_cls,
418
416
  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
417
  fensapice_drop_vc=fensapice_drop_vc_cls,
422
418
  mixing_plane_thread=mixing_plane_thread_cls,
423
419
  wsf=wsf_cls,
@@ -176,8 +176,6 @@ from .fensapice_drop_cv import fensapice_drop_cv as fensapice_drop_cv_cls
176
176
  from .fensapice_drop_cx import fensapice_drop_cx as fensapice_drop_cx_cls
177
177
  from .fensapice_drop_cy import fensapice_drop_cy as fensapice_drop_cy_cls
178
178
  from .fensapice_drop_cz import fensapice_drop_cz as fensapice_drop_cz_cls
179
- from .fensapice_drop_vrh import fensapice_drop_vrh as fensapice_drop_vrh_cls
180
- from .fensapice_drop_vrh_1 import fensapice_drop_vrh_1 as fensapice_drop_vrh_1_cls
181
179
  from .fensapice_drop_vc import fensapice_drop_vc as fensapice_drop_vc_cls
182
180
  from .mixing_plane_thread import mixing_plane_thread as mixing_plane_thread_cls
183
181
  from .wsf import wsf as wsf_cls
@@ -252,13 +250,12 @@ class phase_child(Group):
252
250
  'fensapice_dpm_inj_nstream', 'fensapice_drop_icc',
253
251
  'fensapice_drop_ctemp', 'fensapice_drop_cmelt',
254
252
  'fensapice_drop_cdiam', 'fensapice_drop_cv', 'fensapice_drop_cx',
255
- 'fensapice_drop_cy', 'fensapice_drop_cz', 'fensapice_drop_vrh',
256
- 'fensapice_drop_vrh_1', 'fensapice_drop_vc', 'mixing_plane_thread',
257
- 'wsf', 'wsb', 'wsn', 'solar_fluxes', 'solar_shining_factor',
258
- 'radiating_s2s_surface', 'ac_options', 'impedance_0', 'impedance_1',
259
- 'impedance_2', 'ac_wave', 'les_spec', 'a', 'swirl_model',
260
- 'swirl_factor', 'fan_omega', 'fan_origin', 'strength',
261
- 'new_fan_definition']
253
+ 'fensapice_drop_cy', 'fensapice_drop_cz', 'fensapice_drop_vc',
254
+ 'mixing_plane_thread', 'wsf', 'wsb', 'wsn', 'solar_fluxes',
255
+ 'solar_shining_factor', 'radiating_s2s_surface', 'ac_options',
256
+ 'impedance_0', 'impedance_1', 'impedance_2', 'ac_wave', 'les_spec',
257
+ 'a', 'swirl_model', 'swirl_factor', 'fan_omega', 'fan_origin',
258
+ 'strength', 'new_fan_definition']
262
259
 
263
260
  _child_classes = dict(
264
261
  name=name_cls,
@@ -423,8 +420,6 @@ class phase_child(Group):
423
420
  fensapice_drop_cx=fensapice_drop_cx_cls,
424
421
  fensapice_drop_cy=fensapice_drop_cy_cls,
425
422
  fensapice_drop_cz=fensapice_drop_cz_cls,
426
- fensapice_drop_vrh=fensapice_drop_vrh_cls,
427
- fensapice_drop_vrh_1=fensapice_drop_vrh_1_cls,
428
423
  fensapice_drop_vc=fensapice_drop_vc_cls,
429
424
  mixing_plane_thread=mixing_plane_thread_cls,
430
425
  wsf=wsf_cls,
@@ -134,8 +134,6 @@ from .fensapice_drop_cv import fensapice_drop_cv as fensapice_drop_cv_cls
134
134
  from .fensapice_drop_cx import fensapice_drop_cx as fensapice_drop_cx_cls
135
135
  from .fensapice_drop_cy import fensapice_drop_cy as fensapice_drop_cy_cls
136
136
  from .fensapice_drop_cz import fensapice_drop_cz as fensapice_drop_cz_cls
137
- from .fensapice_drop_vrh import fensapice_drop_vrh as fensapice_drop_vrh_cls
138
- from .fensapice_drop_vrh_1 import fensapice_drop_vrh_1 as fensapice_drop_vrh_1_cls
139
137
  from .fensapice_drop_vc import fensapice_drop_vc as fensapice_drop_vc_cls
140
138
  from .radiation_bc import radiation_bc as radiation_bc_cls
141
139
  from .radial_direction import radial_direction as radial_direction_cls
@@ -226,10 +224,9 @@ class phase_child(Group):
226
224
  'fensapice_dpm_surface_injection', 'fensapice_dpm_inj_nstream',
227
225
  'fensapice_drop_icc', 'fensapice_drop_ctemp', 'fensapice_drop_cmelt',
228
226
  'fensapice_drop_cdiam', 'fensapice_drop_cv', 'fensapice_drop_cx',
229
- 'fensapice_drop_cy', 'fensapice_drop_cz', 'fensapice_drop_vrh',
230
- 'fensapice_drop_vrh_1', 'fensapice_drop_vc', 'radiation_bc',
231
- 'radial_direction', 'coll_dtheta', 'coll_dphi', 'band_q_irrad',
232
- 'band_q_irrad_diffuse', 'parallel_collimated_beam',
227
+ 'fensapice_drop_cy', 'fensapice_drop_cz', 'fensapice_drop_vc',
228
+ 'radiation_bc', 'radial_direction', 'coll_dtheta', 'coll_dphi',
229
+ 'band_q_irrad', 'band_q_irrad_diffuse', 'parallel_collimated_beam',
233
230
  'solar_direction', 'solar_irradiation', 't_b_b_spec', 't_b_b',
234
231
  'in_emiss', 'fmean', 'fvar', 'fmean2', 'fvar2', 'tss_scalar',
235
232
  'uds_bc', 'uds', 'pb_disc_bc', 'pb_disc', 'pb_qmom_bc', 'pb_qmom',
@@ -362,8 +359,6 @@ class phase_child(Group):
362
359
  fensapice_drop_cx=fensapice_drop_cx_cls,
363
360
  fensapice_drop_cy=fensapice_drop_cy_cls,
364
361
  fensapice_drop_cz=fensapice_drop_cz_cls,
365
- fensapice_drop_vrh=fensapice_drop_vrh_cls,
366
- fensapice_drop_vrh_1=fensapice_drop_vrh_1_cls,
367
362
  fensapice_drop_vc=fensapice_drop_vc_cls,
368
363
  radiation_bc=radiation_bc_cls,
369
364
  radial_direction=radial_direction_cls,
@@ -131,8 +131,6 @@ from .fensapice_drop_cv import fensapice_drop_cv as fensapice_drop_cv_cls
131
131
  from .fensapice_drop_cx import fensapice_drop_cx as fensapice_drop_cx_cls
132
132
  from .fensapice_drop_cy import fensapice_drop_cy as fensapice_drop_cy_cls
133
133
  from .fensapice_drop_cz import fensapice_drop_cz as fensapice_drop_cz_cls
134
- from .fensapice_drop_vrh import fensapice_drop_vrh as fensapice_drop_vrh_cls
135
- from .fensapice_drop_vrh_1 import fensapice_drop_vrh_1 as fensapice_drop_vrh_1_cls
136
134
  from .fensapice_drop_vc import fensapice_drop_vc as fensapice_drop_vc_cls
137
135
  from .uds_bc import uds_bc as uds_bc_cls
138
136
  from .uds import uds as uds_cls
@@ -181,10 +179,10 @@ class pressure_far_field_child(Group):
181
179
  'fensapice_dpm_surface_injection', 'fensapice_dpm_inj_nstream',
182
180
  'fensapice_drop_icc', 'fensapice_drop_ctemp', 'fensapice_drop_cmelt',
183
181
  'fensapice_drop_cdiam', 'fensapice_drop_cv', 'fensapice_drop_cx',
184
- 'fensapice_drop_cy', 'fensapice_drop_cz', 'fensapice_drop_vrh',
185
- 'fensapice_drop_vrh_1', 'fensapice_drop_vc', 'uds_bc', 'uds',
186
- 'dpm_bc_type', 'dpm_bc_collision_partner', 'reinj_inj', 'dpm_bc_udf',
187
- 'solar_fluxes', 'solar_shining_factor', 'radiating_s2s_surface']
182
+ 'fensapice_drop_cy', 'fensapice_drop_cz', 'fensapice_drop_vc',
183
+ 'uds_bc', 'uds', 'dpm_bc_type', 'dpm_bc_collision_partner',
184
+ 'reinj_inj', 'dpm_bc_udf', 'solar_fluxes', 'solar_shining_factor',
185
+ 'radiating_s2s_surface']
188
186
 
189
187
  _child_classes = dict(
190
188
  phase=phase_cls,
@@ -304,8 +302,6 @@ class pressure_far_field_child(Group):
304
302
  fensapice_drop_cx=fensapice_drop_cx_cls,
305
303
  fensapice_drop_cy=fensapice_drop_cy_cls,
306
304
  fensapice_drop_cz=fensapice_drop_cz_cls,
307
- fensapice_drop_vrh=fensapice_drop_vrh_cls,
308
- fensapice_drop_vrh_1=fensapice_drop_vrh_1_cls,
309
305
  fensapice_drop_vc=fensapice_drop_vc_cls,
310
306
  uds_bc=uds_bc_cls,
311
307
  uds=uds_cls,
@@ -177,8 +177,6 @@ from .fensapice_drop_cv import fensapice_drop_cv as fensapice_drop_cv_cls
177
177
  from .fensapice_drop_cx import fensapice_drop_cx as fensapice_drop_cx_cls
178
178
  from .fensapice_drop_cy import fensapice_drop_cy as fensapice_drop_cy_cls
179
179
  from .fensapice_drop_cz import fensapice_drop_cz as fensapice_drop_cz_cls
180
- from .fensapice_drop_vrh import fensapice_drop_vrh as fensapice_drop_vrh_cls
181
- from .fensapice_drop_vrh_1 import fensapice_drop_vrh_1 as fensapice_drop_vrh_1_cls
182
180
  from .fensapice_drop_vc import fensapice_drop_vc as fensapice_drop_vc_cls
183
181
  from .mixing_plane_thread import mixing_plane_thread as mixing_plane_thread_cls
184
182
  from .wsf import wsf as wsf_cls
@@ -246,11 +244,10 @@ class pressure_inlet_child(Group):
246
244
  'fensapice_dpm_inj_nstream', 'fensapice_drop_icc',
247
245
  'fensapice_drop_ctemp', 'fensapice_drop_cmelt',
248
246
  'fensapice_drop_cdiam', 'fensapice_drop_cv', 'fensapice_drop_cx',
249
- 'fensapice_drop_cy', 'fensapice_drop_cz', 'fensapice_drop_vrh',
250
- 'fensapice_drop_vrh_1', 'fensapice_drop_vc', 'mixing_plane_thread',
251
- 'wsf', 'wsb', 'wsn', 'solar_fluxes', 'solar_shining_factor',
252
- 'radiating_s2s_surface', 'ac_options', 'impedance_0', 'impedance_1',
253
- 'impedance_2', 'ac_wave', 'les_spec']
247
+ 'fensapice_drop_cy', 'fensapice_drop_cz', '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']
254
251
 
255
252
  _child_classes = dict(
256
253
  phase=phase_cls,
@@ -416,8 +413,6 @@ class pressure_inlet_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,
@@ -208,8 +208,6 @@ from .fensapice_drop_cv import fensapice_drop_cv as fensapice_drop_cv_cls
208
208
  from .fensapice_drop_cx import fensapice_drop_cx as fensapice_drop_cx_cls
209
209
  from .fensapice_drop_cy import fensapice_drop_cy as fensapice_drop_cy_cls
210
210
  from .fensapice_drop_cz import fensapice_drop_cz as fensapice_drop_cz_cls
211
- from .fensapice_drop_vrh import fensapice_drop_vrh as fensapice_drop_vrh_cls
212
- from .fensapice_drop_vrh_1 import fensapice_drop_vrh_1 as fensapice_drop_vrh_1_cls
213
211
  from .fensapice_drop_vc import fensapice_drop_vc as fensapice_drop_vc_cls
214
212
  from .mixing_plane_thread import mixing_plane_thread as mixing_plane_thread_cls
215
213
  from .solar_fluxes import solar_fluxes as solar_fluxes_cls
@@ -286,11 +284,10 @@ class velocity_inlet_child(Group):
286
284
  'fensapice_dpm_inj_nstream', 'fensapice_drop_icc',
287
285
  'fensapice_drop_ctemp', 'fensapice_drop_cmelt',
288
286
  'fensapice_drop_cdiam', 'fensapice_drop_cv', 'fensapice_drop_cx',
289
- 'fensapice_drop_cy', 'fensapice_drop_cz', 'fensapice_drop_vrh',
290
- 'fensapice_drop_vrh_1', 'fensapice_drop_vc', 'mixing_plane_thread',
291
- 'solar_fluxes', 'solar_shining_factor', 'radiating_s2s_surface',
292
- 'ac_options', 'impedance_0', 'impedance_1', 'impedance_2', 'ac_wave',
293
- 'les_spec']
287
+ 'fensapice_drop_cy', 'fensapice_drop_cz', 'fensapice_drop_vc',
288
+ 'mixing_plane_thread', 'solar_fluxes', 'solar_shining_factor',
289
+ 'radiating_s2s_surface', 'ac_options', 'impedance_0', 'impedance_1',
290
+ 'impedance_2', 'ac_wave', 'les_spec']
294
291
 
295
292
  _child_classes = dict(
296
293
  phase=phase_cls,
@@ -487,8 +484,6 @@ class velocity_inlet_child(Group):
487
484
  fensapice_drop_cx=fensapice_drop_cx_cls,
488
485
  fensapice_drop_cy=fensapice_drop_cy_cls,
489
486
  fensapice_drop_cz=fensapice_drop_cz_cls,
490
- fensapice_drop_vrh=fensapice_drop_vrh_cls,
491
- fensapice_drop_vrh_1=fensapice_drop_vrh_1_cls,
492
487
  fensapice_drop_vc=fensapice_drop_vc_cls,
493
488
  mixing_plane_thread=mixing_plane_thread_cls,
494
489
  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 = "3c9ace44a737e26144a81a72d3c131f0d6ca0ddb50483e465617d890da30dea1"
8
+ SHASH = "c0165dec1fe71c38c2426eeea5af0dc73bf30a6b920f544b717583b925eb03a5"
9
9
  from .root import root
@@ -33,8 +33,6 @@ from .fensapice_drop_cv import fensapice_drop_cv as fensapice_drop_cv_cls
33
33
  from .fensapice_drop_cx import fensapice_drop_cx as fensapice_drop_cx_cls
34
34
  from .fensapice_drop_cy import fensapice_drop_cy as fensapice_drop_cy_cls
35
35
  from .fensapice_drop_cz import fensapice_drop_cz as fensapice_drop_cz_cls
36
- from .fensapice_drop_vrh import fensapice_drop_vrh as fensapice_drop_vrh_cls
37
- from .fensapice_drop_vrh_1 import fensapice_drop_vrh_1 as fensapice_drop_vrh_1_cls
38
36
  from .fensapice_drop_vc import fensapice_drop_vc as fensapice_drop_vc_cls
39
37
  class icing(Group):
40
38
  """
@@ -51,8 +49,7 @@ class icing(Group):
51
49
  'fensapice_dpm_inj_nstream', 'fensapice_drop_icc',
52
50
  'fensapice_drop_ctemp', 'fensapice_drop_cmelt',
53
51
  'fensapice_drop_cdiam', 'fensapice_drop_cv', 'fensapice_drop_cx',
54
- 'fensapice_drop_cy', 'fensapice_drop_cz', 'fensapice_drop_vrh',
55
- 'fensapice_drop_vrh_1', 'fensapice_drop_vc']
52
+ 'fensapice_drop_cy', 'fensapice_drop_cz', 'fensapice_drop_vc']
56
53
 
57
54
  _child_classes = dict(
58
55
  fensapice_flow_bc_subtype=fensapice_flow_bc_subtype_cls,
@@ -74,8 +71,6 @@ class icing(Group):
74
71
  fensapice_drop_cx=fensapice_drop_cx_cls,
75
72
  fensapice_drop_cy=fensapice_drop_cy_cls,
76
73
  fensapice_drop_cz=fensapice_drop_cz_cls,
77
- fensapice_drop_vrh=fensapice_drop_vrh_cls,
78
- fensapice_drop_vrh_1=fensapice_drop_vrh_1_cls,
79
74
  fensapice_drop_vc=fensapice_drop_vc_cls,
80
75
  )
81
76