ansys-fluent-core 0.30.dev2__py3-none-any.whl → 0.30.dev4__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 (78) hide show
  1. ansys/fluent/core/__init__.py +14 -3
  2. ansys/fluent/core/codegen/datamodelgen.py +17 -3
  3. ansys/fluent/core/codegen/settingsgen.py +26 -4
  4. ansys/fluent/core/codegen/walk_api.py +11 -1
  5. ansys/fluent/core/exceptions.py +7 -4
  6. ansys/fluent/core/generated/api_tree/api_objects.json +1 -1
  7. ansys/fluent/core/generated/datamodel_242/meshing_utilities.pyi +990 -0
  8. ansys/fluent/core/generated/datamodel_251/meshing_utilities.pyi +1002 -0
  9. ansys/fluent/core/generated/datamodel_252/meshing.py +7 -0
  10. ansys/fluent/core/generated/datamodel_252/meshing_utilities.pyi +1007 -0
  11. ansys/fluent/core/generated/datamodel_252/preferences.py +132 -3
  12. ansys/fluent/core/generated/fluent_version_252.py +3 -3
  13. ansys/fluent/core/generated/meshing/tui_252.py +111 -12
  14. ansys/fluent/core/generated/solver/settings_222.py +166 -170
  15. ansys/fluent/core/generated/solver/settings_222.pyi +10 -8
  16. ansys/fluent/core/generated/solver/settings_231.py +551 -598
  17. ansys/fluent/core/generated/solver/settings_231.pyi +40 -38
  18. ansys/fluent/core/generated/solver/settings_232.py +689 -736
  19. ansys/fluent/core/generated/solver/settings_232.pyi +39 -37
  20. ansys/fluent/core/generated/solver/settings_241.py +1365 -1439
  21. ansys/fluent/core/generated/solver/settings_241.pyi +1071 -1074
  22. ansys/fluent/core/generated/solver/settings_242.py +2852 -3098
  23. ansys/fluent/core/generated/solver/settings_242.pyi +2059 -2151
  24. ansys/fluent/core/generated/solver/settings_251.py +3656 -3914
  25. ansys/fluent/core/generated/solver/settings_251.pyi +2915 -3008
  26. ansys/fluent/core/generated/solver/settings_252.py +5894 -5707
  27. ansys/fluent/core/generated/solver/settings_252.pyi +4411 -4297
  28. ansys/fluent/core/generated/solver/tui_252.py +205 -25
  29. ansys/fluent/core/get_build_details.py +2 -2
  30. ansys/fluent/core/launcher/container_launcher.py +7 -1
  31. ansys/fluent/core/launcher/fluent_container.py +3 -2
  32. ansys/fluent/core/launcher/pim_launcher.py +7 -1
  33. ansys/fluent/core/launcher/slurm_launcher.py +7 -1
  34. ansys/fluent/core/launcher/standalone_launcher.py +7 -1
  35. ansys/fluent/core/services/datamodel_se.py +28 -23
  36. ansys/fluent/core/services/datamodel_tui.py +1 -1
  37. ansys/fluent/core/services/field_data.py +17 -5
  38. ansys/fluent/core/session_base_meshing.py +3 -3
  39. ansys/fluent/core/session_meshing.py +4 -4
  40. ansys/fluent/core/session_meshing.pyi +9 -9
  41. ansys/fluent/core/session_pure_meshing.pyi +9 -9
  42. ansys/fluent/core/session_solver.py +1 -1
  43. ansys/fluent/core/session_solver.pyi +5 -5
  44. ansys/fluent/core/solver/_docstrings.py +244 -0
  45. ansys/fluent/core/solver/error_message.py +7 -12
  46. ansys/fluent/core/solver/flobject.py +86 -27
  47. ansys/fluent/core/utils/fluent_version.py +2 -3
  48. ansys/fluent/core/utils/test_grpc_connection.py +139 -0
  49. ansys/fluent/core/workflow.py +1 -0
  50. {ansys_fluent_core-0.30.dev2.dist-info → ansys_fluent_core-0.30.dev4.dist-info}/METADATA +12 -12
  51. {ansys_fluent_core-0.30.dev2.dist-info → ansys_fluent_core-0.30.dev4.dist-info}/RECORD +77 -73
  52. ansys/fluent/core/_version.py +0 -40
  53. /ansys/fluent/core/generated/datamodel_222/{PartManagement.py → part_management.py} +0 -0
  54. /ansys/fluent/core/generated/datamodel_222/{PMFileManagement.py → pm_file_management.py} +0 -0
  55. /ansys/fluent/core/generated/datamodel_231/{PartManagement.py → part_management.py} +0 -0
  56. /ansys/fluent/core/generated/datamodel_231/{PMFileManagement.py → pm_file_management.py} +0 -0
  57. /ansys/fluent/core/generated/datamodel_231/{solverworkflow.py → solver_workflow.py} +0 -0
  58. /ansys/fluent/core/generated/datamodel_232/{PartManagement.py → part_management.py} +0 -0
  59. /ansys/fluent/core/generated/datamodel_232/{PMFileManagement.py → pm_file_management.py} +0 -0
  60. /ansys/fluent/core/generated/datamodel_232/{solverworkflow.py → solver_workflow.py} +0 -0
  61. /ansys/fluent/core/generated/datamodel_241/{PartManagement.py → part_management.py} +0 -0
  62. /ansys/fluent/core/generated/datamodel_241/{PMFileManagement.py → pm_file_management.py} +0 -0
  63. /ansys/fluent/core/generated/datamodel_241/{solverworkflow.py → solver_workflow.py} +0 -0
  64. /ansys/fluent/core/generated/datamodel_242/{MeshingUtilities.py → meshing_utilities.py} +0 -0
  65. /ansys/fluent/core/generated/datamodel_242/{PartManagement.py → part_management.py} +0 -0
  66. /ansys/fluent/core/generated/datamodel_242/{PMFileManagement.py → pm_file_management.py} +0 -0
  67. /ansys/fluent/core/generated/datamodel_242/{solverworkflow.py → solver_workflow.py} +0 -0
  68. /ansys/fluent/core/generated/datamodel_251/{MeshingUtilities.py → meshing_utilities.py} +0 -0
  69. /ansys/fluent/core/generated/datamodel_251/{PartManagement.py → part_management.py} +0 -0
  70. /ansys/fluent/core/generated/datamodel_251/{PMFileManagement.py → pm_file_management.py} +0 -0
  71. /ansys/fluent/core/generated/datamodel_251/{solverworkflow.py → solver_workflow.py} +0 -0
  72. /ansys/fluent/core/generated/datamodel_252/{MeshingUtilities.py → meshing_utilities.py} +0 -0
  73. /ansys/fluent/core/generated/datamodel_252/{PartManagement.py → part_management.py} +0 -0
  74. /ansys/fluent/core/generated/datamodel_252/{PMFileManagement.py → pm_file_management.py} +0 -0
  75. /ansys/fluent/core/generated/datamodel_252/{solverworkflow.py → solver_workflow.py} +0 -0
  76. /ansys/fluent/core/{systemcoupling.py → system_coupling.py} +0 -0
  77. {ansys_fluent_core-0.30.dev2.dist-info → ansys_fluent_core-0.30.dev4.dist-info}/LICENSE +0 -0
  78. {ansys_fluent_core-0.30.dev2.dist-info → ansys_fluent_core-0.30.dev4.dist-info}/WHEEL +0 -0
@@ -12,6 +12,8 @@ from ansys.fluent.core.solver.flobject import (
12
12
  _InOutFile,
13
13
  )
14
14
 
15
+ from typing import Any
16
+
15
17
  class single_precision_coordinates(Boolean):
16
18
  version: str
17
19
  fluent_name: str
@@ -787,7 +789,7 @@ class mesh(Group):
787
789
  """
788
790
  Perform analysis of mesh quality.
789
791
  """
790
- def rotate(self, angle: float | str, origin: tuple[float | str, float | str, float | str, axis_components: tuple[float | str, float | str, float | str):
792
+ def rotate(self, angle: float | str, origin: tuple[float | str, float | str, float | str], axis_components: tuple[float | str, float | str, float | str]):
791
793
  """
792
794
  Rotate the mesh.
793
795
 
@@ -851,7 +853,7 @@ class mesh(Group):
851
853
  zones : bool
852
854
  'zones' child.
853
855
  """
854
- def translate(self, offset: tuple[float | str, float | str, float | str):
856
+ def translate(self, offset: tuple[float | str, float | str, float | str]):
855
857
  """
856
858
  Translate the mesh.
857
859
 
@@ -3341,21 +3343,21 @@ class beams(NamedObject[beams_child]):
3341
3343
  Parameters
3342
3344
  ----------
3343
3345
  orig_beam_name : str
3344
- Choose the name for the optical beam to be copied.
3346
+ The name for the optical beam to be copied.
3345
3347
  beam_name : str
3346
- Set a unique name for each optical beam.
3348
+ A unique name for each optical beam.
3347
3349
  ap_face_zone : str
3348
- Set the wall face zones to specify the optical aperture surface.
3350
+ The wall face zones to specify the optical aperture surface.
3349
3351
  beam_length : real
3350
- Set the length of optical beam propagation.
3352
+ The length of optical beam propagation.
3351
3353
  ray_npoints : int
3352
- Set the number of grid point in each ray of the optical beam.
3354
+ The number of grid point in each ray of the optical beam.
3353
3355
  x_beam_vector : real
3354
- Set the x-component of the beam propagation vector.
3356
+ The x-component of the beam propagation vector.
3355
3357
  y_beam_vector : real
3356
- Set the y-component of the beam propagation vector.
3358
+ The y-component of the beam propagation vector.
3357
3359
  z_beam_vector : real
3358
- Set the z-component of the beam propagation vector.
3360
+ The z-component of the beam propagation vector.
3359
3361
  """
3360
3362
  def list_beam_parameters(self, beam_name: str):
3361
3363
  """
@@ -3364,7 +3366,7 @@ class beams(NamedObject[beams_child]):
3364
3366
  Parameters
3365
3367
  ----------
3366
3368
  beam_name : str
3367
- Choose the name for the optical beam to be listed.
3369
+ The name for the optical beam to be listed.
3368
3370
  """
3369
3371
  child_object_type: beams_child
3370
3372
  return_type: str
@@ -22905,21 +22907,21 @@ class run_calculation(Group):
22905
22907
  Parameters
22906
22908
  ----------
22907
22909
  total_period_count : int
22908
- Set number of total periods.
22910
+ Number of total periods.
22909
22911
  time_step_count : int
22910
- Set inceremtal number of Time steps.
22912
+ Inceremtal number of Time steps.
22911
22913
  total_time_step_count : int
22912
- Set total number of Time steps.
22914
+ Total number of Time steps.
22913
22915
  total_time : real
22914
- Set Total Simulation Time.
22916
+ Total Simulation Time.
22915
22917
  incremental_time : real
22916
- Set Incremental Time.
22918
+ Incremental Time.
22917
22919
  max_iter_per_step : int
22918
- Set Maximum Number of iterations per time step.
22920
+ Maximum Number of iterations per time step.
22919
22921
  postprocess : bool
22920
22922
  Enable/Disable Postprocess pollutant solution?.
22921
22923
  post_iter_per_time_step_count : int
22922
- Set Number of post-processing iterations per time step.
22924
+ Number of post-processing iterations per time step.
22923
22925
  """
22924
22926
  def iterate(self, iter_count: int):
22925
22927
  """
@@ -22928,7 +22930,7 @@ class run_calculation(Group):
22928
22930
  Parameters
22929
22931
  ----------
22930
22932
  iter_count : int
22931
- Set incremental number of time steps.
22933
+ Incremental number of time steps.
22932
22934
  """
22933
22935
  def calculate(self):
22934
22936
  """
@@ -24736,7 +24738,7 @@ class by_type(Group):
24736
24738
  use_inherent_material_color: use_inherent_material_color
24737
24739
  def reset(self, reset_color: bool):
24738
24740
  """
24739
- To reset colors and/or materials to the defaults.
24741
+ Reset colors and/or materials to the defaults.
24740
24742
 
24741
24743
  Parameters
24742
24744
  ----------
@@ -24758,7 +24760,7 @@ class by_surface(Group):
24758
24760
  use_inherent_material_color: use_inherent_material_color_1
24759
24761
  def reset(self, reset_color: bool):
24760
24762
  """
24761
- To reset colors and/or materials to the defaults.
24763
+ Reset colors and/or materials to the defaults.
24762
24764
 
24763
24765
  Parameters
24764
24766
  ----------
@@ -24767,11 +24769,11 @@ class by_surface(Group):
24767
24769
  """
24768
24770
  def list_surfaces_by_color(self):
24769
24771
  """
24770
- To list the surfaces by its color.
24772
+ List the surfaces by its color.
24771
24773
  """
24772
24774
  def list_surfaces_by_material(self):
24773
24775
  """
24774
- To list the surfaces by its material.
24776
+ List the surfaces by its material.
24775
24777
  """
24776
24778
  return_type: str
24777
24779
  class far_field_faces(String):
@@ -24920,11 +24922,11 @@ class lights(Group):
24920
24922
  headlight_setting: headlight_setting
24921
24923
  lights_on: lights_on
24922
24924
  lighting_interpolation: lighting_interpolation
24923
- def set_ambient_color(self, rgb_vector: tuple[float | str, float | str, float | str):
24925
+ def set_ambient_color(self, rgb_vector: tuple[float | str, float | str, float | str]):
24924
24926
  """
24925
24927
  'set_ambient_color' command.
24926
24928
  """
24927
- def set_light(self, light_number: int, light_on: bool, rgb_vector: tuple[float | str, float | str, float | str, use_view_factor: bool, change_light_direction: bool, direction_vector: tuple[float | str, float | str, float | str):
24929
+ def set_light(self, light_number: int, light_on: bool, rgb_vector: tuple[float | str, float | str, float | str], use_view_factor: bool, change_light_direction: bool, direction_vector: tuple[float | str, float | str, float | str]):
24928
24930
  """
24929
24931
  'set_light' command.
24930
24932
  """
@@ -26671,7 +26673,7 @@ class histogram(Group):
26671
26673
  Parameters
26672
26674
  ----------
26673
26675
  sample_file : str
26674
- Enter the name of a sample file to be loaded.
26676
+ The name of a sample file to be loaded.
26675
26677
  """
26676
26678
  return_type: str
26677
26679
  class user_defined_functions_1(String):
@@ -26752,7 +26754,7 @@ class fluxes(Group):
26752
26754
  domain_val : str
26753
26755
  'domain_val' child.
26754
26756
  all_bndry_zones : bool
26755
- Select all the boundary/interior zones.
26757
+ All the boundary/interior zones.
26756
26758
  zone_list : List
26757
26759
  'zone_list' child.
26758
26760
  write_to_file : bool
@@ -26773,7 +26775,7 @@ class fluxes(Group):
26773
26775
  domain_val : str
26774
26776
  'domain_val' child.
26775
26777
  all_bndry_zones : bool
26776
- Select all the boundary/interior zones.
26778
+ All the boundary/interior zones.
26777
26779
  zone_list : List
26778
26780
  'zone_list' child.
26779
26781
  write_to_file : bool
@@ -26794,7 +26796,7 @@ class fluxes(Group):
26794
26796
  domain_val : str
26795
26797
  'domain_val' child.
26796
26798
  all_bndry_zones : bool
26797
- Select all the boundary/interior zones.
26799
+ All the boundary/interior zones.
26798
26800
  zone_list : List
26799
26801
  'zone_list' child.
26800
26802
  write_to_file : bool
@@ -26815,7 +26817,7 @@ class fluxes(Group):
26815
26817
  domain_val : str
26816
26818
  'domain_val' child.
26817
26819
  all_bndry_zones : bool
26818
- Select all the boundary/interior zones.
26820
+ All the boundary/interior zones.
26819
26821
  zone_list : List
26820
26822
  'zone_list' child.
26821
26823
  write_to_file : bool
@@ -26836,7 +26838,7 @@ class fluxes(Group):
26836
26838
  domain_val : str
26837
26839
  'domain_val' child.
26838
26840
  all_bndry_zones : bool
26839
- Select all the boundary/interior zones.
26841
+ All the boundary/interior zones.
26840
26842
  zone_list : List
26841
26843
  'zone_list' child.
26842
26844
  write_to_file : bool
@@ -26857,7 +26859,7 @@ class fluxes(Group):
26857
26859
  domain_val : str
26858
26860
  'domain_val' child.
26859
26861
  all_bndry_zones : bool
26860
- Select all the boundary/interior zones.
26862
+ All the boundary/interior zones.
26861
26863
  zone_list : List
26862
26864
  'zone_list' child.
26863
26865
  write_to_file : bool
@@ -26878,7 +26880,7 @@ class fluxes(Group):
26878
26880
  domain_val : str
26879
26881
  'domain_val' child.
26880
26882
  all_bndry_zones : bool
26881
- Select all the boundary/interior zones.
26883
+ All the boundary/interior zones.
26882
26884
  zone_list : List
26883
26885
  'zone_list' child.
26884
26886
  write_to_file : bool
@@ -26899,7 +26901,7 @@ class fluxes(Group):
26899
26901
  domain_val : str
26900
26902
  'domain_val' child.
26901
26903
  all_bndry_zones : bool
26902
- Select all the boundary/interior zones.
26904
+ All the boundary/interior zones.
26903
26905
  zone_list : List
26904
26906
  'zone_list' child.
26905
26907
  write_to_file : bool
@@ -27106,9 +27108,9 @@ class report(Group):
27106
27108
  print_write_histogram: print_write_histogram
27107
27109
  def aero_optical_distortions(self):
27108
27110
  """
27109
- Optics report menu.
27111
+ Optics report object.
27110
27112
  """
27111
- def forces(self, options: str, domain_val: str, all_wall_zones: bool, wall_thread_list: list[str], direction_vector: tuple[float | str, float | str, float | str, momentum_center: tuple[float | str, float | str, float | str, momentum_axis: tuple[float | str, float | str, float | str, pressure_coordinate: str, coord_val: float | str, write_to_file: bool, file_name: str, append_data: bool, overwrite: bool):
27113
+ def forces(self, options: str, domain_val: str, all_wall_zones: bool, wall_thread_list: list[str], direction_vector: tuple[float | str, float | str, float | str], momentum_center: tuple[float | str, float | str, float | str], momentum_axis: tuple[float | str, float | str, float | str], pressure_coordinate: str, coord_val: float | str, write_to_file: bool, file_name: str, append_data: bool, overwrite: bool):
27112
27114
  """
27113
27115
  'forces' command.
27114
27116
  """
@@ -27134,7 +27136,7 @@ class report(Group):
27134
27136
  """
27135
27137
  Print path-line-summary report.
27136
27138
  """
27137
- def projected_surface_area(self, surface_id_val: list[int], min_feature_size: float | str, proj_plane_norm_comp: tuple[float | str, float | str, float | str):
27139
+ def projected_surface_area(self, surface_id_val: list[int], min_feature_size: float | str, proj_plane_norm_comp: tuple[float | str, float | str, float | str]):
27138
27140
  """
27139
27141
  Print total area of the projection of a group of surfaces to a plane.
27140
27142
 
@@ -27754,7 +27756,7 @@ class partition_1(Group):
27754
27756
  Parameters
27755
27757
  ----------
27756
27758
  smoothing_iteration : int
27757
- Set maximum number of smoothing iterations.
27759
+ Maximum number of smoothing iterations.
27758
27760
  """
27759
27761
  def use_stored_partitions(self):
27760
27762
  """