ansys-fluent-core 0.35.dev0__py3-none-any.whl → 0.35.dev1__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 (39) hide show
  1. ansys/fluent/core/__init__.py +2 -2
  2. ansys/fluent/core/codegen/builtin_settingsgen.py +4 -0
  3. ansys/fluent/core/codegen/settingsgen.py +3 -0
  4. ansys/fluent/core/generated/api_tree/api_objects.json +1 -1
  5. ansys/fluent/core/generated/datamodel_231/flicing.py +15 -15
  6. ansys/fluent/core/generated/datamodel_231/meshing.py +204 -204
  7. ansys/fluent/core/generated/datamodel_232/flicing.py +55 -55
  8. ansys/fluent/core/generated/datamodel_232/meshing.py +151 -151
  9. ansys/fluent/core/generated/datamodel_241/flicing.py +35 -35
  10. ansys/fluent/core/generated/datamodel_241/meshing.py +256 -256
  11. ansys/fluent/core/generated/datamodel_242/flicing.py +35 -35
  12. ansys/fluent/core/generated/datamodel_242/meshing.py +309 -309
  13. ansys/fluent/core/generated/datamodel_242/part_management.py +6 -6
  14. ansys/fluent/core/generated/datamodel_251/flicing.py +40 -40
  15. ansys/fluent/core/generated/datamodel_251/meshing.py +325 -325
  16. ansys/fluent/core/generated/datamodel_251/part_management.py +3 -3
  17. ansys/fluent/core/generated/datamodel_252/flicing.py +55 -55
  18. ansys/fluent/core/generated/datamodel_252/meshing.py +375 -375
  19. ansys/fluent/core/generated/datamodel_252/part_management.py +10 -10
  20. ansys/fluent/core/generated/datamodel_261/flicing.py +35 -35
  21. ansys/fluent/core/generated/datamodel_261/meshing.py +441 -392
  22. ansys/fluent/core/generated/datamodel_261/meshing_utilities.py +296 -616
  23. ansys/fluent/core/generated/datamodel_261/part_management.py +5 -5
  24. ansys/fluent/core/generated/datamodel_261/preferences.py +28 -0
  25. ansys/fluent/core/generated/fluent_version_261.py +3 -3
  26. ansys/fluent/core/generated/meshing/tui_261.py +20 -0
  27. ansys/fluent/core/generated/solver/settings_261.py +7475 -2873
  28. ansys/fluent/core/generated/solver/settings_261.pyi +4946 -1937
  29. ansys/fluent/core/generated/solver/tui_261.py +1762 -678
  30. ansys/fluent/core/launcher/fluent_container.py +4 -0
  31. ansys/fluent/core/module_config.py +5 -0
  32. ansys/fluent/core/search.py +12 -0
  33. ansys/fluent/core/session_solver.py +5 -4
  34. ansys/fluent/core/solver/flunits.py +2 -0
  35. ansys/fluent/core/utils/networking.py +11 -2
  36. {ansys_fluent_core-0.35.dev0.dist-info → ansys_fluent_core-0.35.dev1.dist-info}/METADATA +8 -7
  37. {ansys_fluent_core-0.35.dev0.dist-info → ansys_fluent_core-0.35.dev1.dist-info}/RECORD +39 -39
  38. {ansys_fluent_core-0.35.dev0.dist-info → ansys_fluent_core-0.35.dev1.dist-info}/WHEEL +1 -1
  39. {ansys_fluent_core-0.35.dev0.dist-info → ansys_fluent_core-0.35.dev1.dist-info/licenses}/LICENSE +0 -0
@@ -3225,8 +3225,8 @@ class Root(PyMenu):
3225
3225
  super().__init__(parent, attr, service, rules, path)
3226
3226
  self.MaxSize = self._MaxSize(self, "MaxSize", service, rules, path)
3227
3227
  self.RefacetDuringLoad = self._RefacetDuringLoad(self, "RefacetDuringLoad", service, rules, path)
3228
- self.NormalAngle = self._NormalAngle(self, "NormalAngle", service, rules, path)
3229
3228
  self.Deviation = self._Deviation(self, "Deviation", service, rules, path)
3229
+ self.NormalAngle = self._NormalAngle(self, "NormalAngle", service, rules, path)
3230
3230
 
3231
3231
  class _MaxSize(PyNumericalCommandArgumentsSubItem):
3232
3232
  """
@@ -3238,14 +3238,14 @@ class Root(PyMenu):
3238
3238
  This option is available when DSCO is selected for the Import Route. When enabled, this option will refacet the geometry as it is converted to a .fmd file. This option eliminates the need for any refaceting operation after the geometry is loaded, which can be expensive.
3239
3239
  """
3240
3240
 
3241
- class _NormalAngle(PyNumericalCommandArgumentsSubItem):
3241
+ class _Deviation(PyNumericalCommandArgumentsSubItem):
3242
3242
  """
3243
- Specify a rotational angle (in degrees) of transformation.
3243
+ Specify the distance between facet edges and the geometry edges. Decreasing this value will result in more facets along curved edges.
3244
3244
  """
3245
3245
 
3246
- class _Deviation(PyNumericalCommandArgumentsSubItem):
3246
+ class _NormalAngle(PyNumericalCommandArgumentsSubItem):
3247
3247
  """
3248
- Specify the distance between facet edges and the geometry edges. Decreasing this value will result in more facets along curved edges.
3248
+ Specify a rotational angle (in degrees) of transformation.
3249
3249
  """
3250
3250
 
3251
3251
  def create_instance(self) -> _AppendFmdFilesCommandArguments:
@@ -2161,7 +2161,11 @@ class Root(PyMenu):
2161
2161
  """
2162
2162
  def __init__(self, service, rules, path):
2163
2163
  self.MaxPositions = self.__class__.MaxPositions(service, rules, path + [("MaxPositions", "")])
2164
+ self.PointSize = self.__class__.PointSize(service, rules, path + [("PointSize", "")])
2165
+ self.PointSymbol = self.__class__.PointSymbol(service, rules, path + [("PointSymbol", "")])
2164
2166
  self.QuickSlicing = self.__class__.QuickSlicing(service, rules, path + [("QuickSlicing", "")])
2167
+ self.VectorSize = self.__class__.VectorSize(service, rules, path + [("VectorSize", "")])
2168
+ self.VectorSymbol = self.__class__.VectorSymbol(service, rules, path + [("VectorSymbol", "")])
2165
2169
  super().__init__(service, rules, path)
2166
2170
 
2167
2171
  class MaxPositions(PyNumerical):
@@ -2170,12 +2174,36 @@ class Root(PyMenu):
2170
2174
  """
2171
2175
  pass
2172
2176
 
2177
+ class PointSize(PyNumerical):
2178
+ """
2179
+ Parameter PointSize of value type float.
2180
+ """
2181
+ pass
2182
+
2183
+ class PointSymbol(PyTextual):
2184
+ """
2185
+ Parameter PointSymbol of value type str.
2186
+ """
2187
+ pass
2188
+
2173
2189
  class QuickSlicing(PyParameter):
2174
2190
  """
2175
2191
  Parameter QuickSlicing of value type bool.
2176
2192
  """
2177
2193
  pass
2178
2194
 
2195
+ class VectorSize(PyNumerical):
2196
+ """
2197
+ Parameter VectorSize of value type float.
2198
+ """
2199
+ pass
2200
+
2201
+ class VectorSymbol(PyTextual):
2202
+ """
2203
+ Parameter VectorSymbol of value type str.
2204
+ """
2205
+ pass
2206
+
2179
2207
  class BetaFeatures(PyParameter):
2180
2208
  """
2181
2209
  Parameter BetaFeatures of value type bool.
@@ -1,5 +1,5 @@
1
1
  FLUENT_VERSION = "261"
2
- FLUENT_BUILD_TIME = "Jul 22 2025 12:15:26 EDT"
3
- FLUENT_BUILD_ID = "88"
4
- FLUENT_REVISION = "ed1646ad05"
2
+ FLUENT_BUILD_TIME = "Aug 26 2025 12:13:58 EDT"
3
+ FLUENT_BUILD_ID = "123"
4
+ FLUENT_REVISION = "c5231046fc"
5
5
  FLUENT_BRANCH = "develop"
@@ -9488,16 +9488,36 @@ class main_menu(TUIMenu):
9488
9488
  """
9489
9489
  def __init__(self, service, version, mode, path):
9490
9490
  self.max_positions = self.__class__.max_positions(service, version, mode, path + ["max_positions"])
9491
+ self.point_size = self.__class__.point_size(service, version, mode, path + ["point_size"])
9492
+ self.point_symbol = self.__class__.point_symbol(service, version, mode, path + ["point_symbol"])
9491
9493
  self.quick_slicing = self.__class__.quick_slicing(service, version, mode, path + ["quick_slicing"])
9494
+ self.vector_size = self.__class__.vector_size(service, version, mode, path + ["vector_size"])
9495
+ self.vector_symbol = self.__class__.vector_symbol(service, version, mode, path + ["vector_symbol"])
9492
9496
  super().__init__(service, version, mode, path)
9493
9497
  class max_positions(TUIMethod):
9494
9498
  """
9495
9499
  No help available.
9496
9500
  """
9501
+ class point_size(TUIMethod):
9502
+ """
9503
+ No help available.
9504
+ """
9505
+ class point_symbol(TUIMethod):
9506
+ """
9507
+ No help available.
9508
+ """
9497
9509
  class quick_slicing(TUIMethod):
9498
9510
  """
9499
9511
  No help available.
9500
9512
  """
9513
+ class vector_size(TUIMethod):
9514
+ """
9515
+ No help available.
9516
+ """
9517
+ class vector_symbol(TUIMethod):
9518
+ """
9519
+ No help available.
9520
+ """
9501
9521
 
9502
9522
  class meshing_workflow(TUIMenu):
9503
9523
  """