ansys-fluent-core 0.28.1__py3-none-any.whl → 0.29.0__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 (223) hide show
  1. ansys/fluent/core/__init__.py +26 -1
  2. ansys/fluent/core/_stand_alone_datamodel_client/_datamodel_client.py +22 -0
  3. ansys/fluent/core/_version.py +24 -2
  4. ansys/fluent/core/codegen/__init__.py +22 -0
  5. ansys/fluent/core/codegen/allapigen.py +38 -5
  6. ansys/fluent/core/codegen/builtin_settingsgen.py +22 -0
  7. ansys/fluent/core/codegen/data/__init__.py +21 -0
  8. ansys/fluent/core/codegen/data/fluent_gui_help_patch.py +22 -0
  9. ansys/fluent/core/codegen/data/meshing_utilities_examples.py +22 -0
  10. ansys/fluent/core/codegen/datamodelgen.py +40 -4
  11. ansys/fluent/core/codegen/print_fluent_version.py +22 -0
  12. ansys/fluent/core/codegen/settingsgen.py +67 -4
  13. ansys/fluent/core/codegen/tuigen.py +44 -6
  14. ansys/fluent/core/codegen/walk_api.py +67 -18
  15. ansys/fluent/core/codegen/write_settings_yaml.py +22 -0
  16. ansys/fluent/core/data_model_cache.py +22 -0
  17. ansys/fluent/core/examples/__init__.py +22 -0
  18. ansys/fluent/core/examples/downloads.py +22 -0
  19. ansys/fluent/core/exceptions.py +22 -0
  20. ansys/fluent/core/file_session.py +22 -0
  21. ansys/fluent/core/filereader/__init__.py +21 -0
  22. ansys/fluent/core/filereader/case_file.py +22 -0
  23. ansys/fluent/core/filereader/casereader.py +22 -0
  24. ansys/fluent/core/filereader/data_file.py +22 -0
  25. ansys/fluent/core/filereader/lispy.py +22 -0
  26. ansys/fluent/core/fluent_connection.py +23 -1
  27. ansys/fluent/core/generated/api_tree/api_objects.json +1 -1
  28. ansys/fluent/core/generated/datamodel_252/meshing.py +32 -0
  29. ansys/fluent/core/generated/datamodel_252/preferences.py +7 -0
  30. ansys/fluent/core/generated/fluent_version_252.py +3 -3
  31. ansys/fluent/core/generated/meshing/tui_252.py +395 -390
  32. ansys/fluent/core/generated/solver/settings_222.py +0 -72
  33. ansys/fluent/core/generated/solver/settings_222.pyi +0 -307
  34. ansys/fluent/core/generated/solver/settings_231.py +0 -574
  35. ansys/fluent/core/generated/solver/settings_231.pyi +0 -561
  36. ansys/fluent/core/generated/solver/settings_232.py +0 -527
  37. ansys/fluent/core/generated/solver/settings_232.pyi +0 -2803
  38. ansys/fluent/core/generated/solver/settings_241.py +0 -478
  39. ansys/fluent/core/generated/solver/settings_241.pyi +0 -522
  40. ansys/fluent/core/generated/solver/settings_242.py +0 -361
  41. ansys/fluent/core/generated/solver/settings_242.pyi +0 -591
  42. ansys/fluent/core/generated/solver/settings_251.py +0 -399
  43. ansys/fluent/core/generated/solver/settings_251.pyi +0 -629
  44. ansys/fluent/core/generated/solver/settings_252.py +8118 -4206
  45. ansys/fluent/core/generated/solver/settings_252.pyi +7229 -3259
  46. ansys/fluent/core/generated/solver/tui_252.py +4508 -3877
  47. ansys/fluent/core/get_build_details.py +22 -0
  48. ansys/fluent/core/journaling.py +38 -0
  49. ansys/fluent/core/launcher/__init__.py +22 -0
  50. ansys/fluent/core/launcher/container_launcher.py +65 -56
  51. ansys/fluent/core/launcher/error_handler.py +30 -0
  52. ansys/fluent/core/launcher/fluent_container.py +45 -20
  53. ansys/fluent/core/launcher/launcher.py +53 -5
  54. ansys/fluent/core/launcher/launcher_utils.py +22 -0
  55. ansys/fluent/core/launcher/pim_launcher.py +120 -86
  56. ansys/fluent/core/launcher/process_launch_string.py +22 -0
  57. ansys/fluent/core/launcher/pyfluent_enums.py +22 -0
  58. ansys/fluent/core/launcher/server_info.py +45 -3
  59. ansys/fluent/core/launcher/slurm_launcher.py +25 -3
  60. ansys/fluent/core/launcher/standalone_launcher.py +68 -63
  61. ansys/fluent/core/launcher/watchdog.py +22 -0
  62. ansys/fluent/core/logging.py +24 -0
  63. ansys/fluent/core/logging_config.yaml +3 -0
  64. ansys/fluent/core/meshing/meshing_workflow.py +22 -0
  65. ansys/fluent/core/parametric.py +22 -0
  66. ansys/fluent/core/post_objects/__init__.py +21 -0
  67. ansys/fluent/core/post_objects/check_in_notebook.py +22 -0
  68. ansys/fluent/core/post_objects/meta.py +22 -0
  69. ansys/fluent/core/post_objects/post_helper.py +22 -0
  70. ansys/fluent/core/post_objects/post_object_definitions.py +22 -0
  71. ansys/fluent/core/post_objects/post_objects_container.py +22 -0
  72. ansys/fluent/core/post_objects/singleton_meta.py +22 -0
  73. ansys/fluent/core/post_objects/timing_decorator.py +22 -0
  74. ansys/fluent/core/report.py +77 -0
  75. ansys/fluent/core/rpvars.py +22 -0
  76. ansys/fluent/core/scheduler/__init__.py +22 -0
  77. ansys/fluent/core/scheduler/load_machines.py +22 -0
  78. ansys/fluent/core/scheduler/machine_list.py +22 -0
  79. ansys/fluent/core/search.py +22 -0
  80. ansys/fluent/core/services/__init__.py +22 -0
  81. ansys/fluent/core/services/api_upgrade.py +22 -0
  82. ansys/fluent/core/services/app_utilities.py +38 -0
  83. ansys/fluent/core/services/batch_ops.py +22 -0
  84. ansys/fluent/core/services/datamodel_se.py +163 -61
  85. ansys/fluent/core/services/datamodel_tui.py +22 -0
  86. ansys/fluent/core/services/deprecated_field_data.py +23 -1
  87. ansys/fluent/core/services/events.py +22 -0
  88. ansys/fluent/core/services/field_data.py +285 -2
  89. ansys/fluent/core/services/health_check.py +22 -0
  90. ansys/fluent/core/services/interceptors.py +50 -2
  91. ansys/fluent/core/services/monitor.py +22 -0
  92. ansys/fluent/core/services/reduction.py +22 -0
  93. ansys/fluent/core/services/scheme_eval.py +22 -0
  94. ansys/fluent/core/services/settings.py +22 -0
  95. ansys/fluent/core/services/solution_variables.py +22 -0
  96. ansys/fluent/core/services/streaming.py +22 -0
  97. ansys/fluent/core/services/transcript.py +22 -0
  98. ansys/fluent/core/session.py +39 -2
  99. ansys/fluent/core/session_base_meshing.py +22 -0
  100. ansys/fluent/core/session_meshing.py +22 -0
  101. ansys/fluent/core/session_meshing.pyi +22 -0
  102. ansys/fluent/core/session_pure_meshing.py +22 -0
  103. ansys/fluent/core/session_pure_meshing.pyi +22 -0
  104. ansys/fluent/core/session_shared.py +22 -0
  105. ansys/fluent/core/session_solver.py +43 -0
  106. ansys/fluent/core/session_solver.pyi +22 -0
  107. ansys/fluent/core/session_solver_aero.py +22 -0
  108. ansys/fluent/core/session_solver_icing.py +22 -0
  109. ansys/fluent/core/session_solver_lite.py +22 -0
  110. ansys/fluent/core/solver/__init__.py +22 -0
  111. ansys/fluent/core/solver/error_message.py +22 -0
  112. ansys/fluent/core/solver/flobject.py +22 -0
  113. ansys/fluent/core/solver/flunits.py +22 -0
  114. ansys/fluent/core/solver/function/__init__.py +22 -0
  115. ansys/fluent/core/solver/function/reduction.py +22 -0
  116. ansys/fluent/core/solver/settings_builtin_bases.py +22 -0
  117. ansys/fluent/core/solver/settings_builtin_data.py +22 -0
  118. ansys/fluent/core/solver/settings_external.py +22 -0
  119. ansys/fluent/core/streaming_services/__init__.py +21 -0
  120. ansys/fluent/core/streaming_services/datamodel_event_streaming.py +34 -12
  121. ansys/fluent/core/streaming_services/datamodel_streaming.py +22 -0
  122. ansys/fluent/core/streaming_services/events_streaming.py +22 -0
  123. ansys/fluent/core/streaming_services/field_data_streaming.py +22 -0
  124. ansys/fluent/core/streaming_services/monitor_streaming.py +23 -1
  125. ansys/fluent/core/streaming_services/streaming.py +22 -0
  126. ansys/fluent/core/streaming_services/transcript_streaming.py +22 -0
  127. ansys/fluent/core/systemcoupling.py +22 -0
  128. ansys/fluent/core/utils/__init__.py +22 -0
  129. ansys/fluent/core/utils/data_transfer.py +22 -0
  130. ansys/fluent/core/utils/deprecate.py +24 -1
  131. ansys/fluent/core/utils/dictionary_operations.py +22 -0
  132. ansys/fluent/core/utils/dump_session_data.py +22 -0
  133. ansys/fluent/core/utils/event_loop.py +22 -0
  134. ansys/fluent/core/utils/execution.py +22 -0
  135. ansys/fluent/core/utils/file_transfer_service.py +22 -0
  136. ansys/fluent/core/utils/fix_doc.py +22 -0
  137. ansys/fluent/core/utils/fldoc.py +22 -0
  138. ansys/fluent/core/utils/fluent_version.py +22 -0
  139. ansys/fluent/core/utils/networking.py +22 -0
  140. ansys/fluent/core/utils/setup_for_fluent.py +22 -0
  141. ansys/fluent/core/warnings.py +22 -0
  142. ansys/fluent/core/workflow.py +22 -0
  143. {ansys_fluent_core-0.28.1.dist-info → ansys_fluent_core-0.29.0.dist-info}/LICENSE +8 -8
  144. {ansys_fluent_core-0.28.1.dist-info → ansys_fluent_core-0.29.0.dist-info}/METADATA +56 -33
  145. ansys_fluent_core-0.29.0.dist-info/RECORD +219 -0
  146. {ansys_fluent_core-0.28.1.dist-info → ansys_fluent_core-0.29.0.dist-info}/WHEEL +1 -1
  147. ansys/fluent/core/docs/README.rst +0 -155
  148. ansys/fluent/tests/conftest.py +0 -415
  149. ansys/fluent/tests/fluent_fixtures.py +0 -195
  150. ansys/fluent/tests/integration/test_optislang/test_optislang_integration.py +0 -263
  151. ansys/fluent/tests/parametric/test_local_parametric_run.py +0 -36
  152. ansys/fluent/tests/parametric/test_local_parametric_setup.py +0 -34
  153. ansys/fluent/tests/parametric/test_parametric_workflow.py +0 -279
  154. ansys/fluent/tests/test_aero_session.py +0 -88
  155. ansys/fluent/tests/test_batch_ops.py +0 -39
  156. ansys/fluent/tests/test_builtin_settings.py +0 -761
  157. ansys/fluent/tests/test_cad_to_post_ftm.py +0 -525
  158. ansys/fluent/tests/test_cad_to_post_wtm.py +0 -250
  159. ansys/fluent/tests/test_casereader.py +0 -324
  160. ansys/fluent/tests/test_codegen.py +0 -783
  161. ansys/fluent/tests/test_creatable.py +0 -31
  162. ansys/fluent/tests/test_data_model_cache.py +0 -434
  163. ansys/fluent/tests/test_datamodel_api.py +0 -449
  164. ansys/fluent/tests/test_datamodel_service.py +0 -814
  165. ansys/fluent/tests/test_datareader.py +0 -103
  166. ansys/fluent/tests/test_error_handling.py +0 -24
  167. ansys/fluent/tests/test_events_manager.py +0 -214
  168. ansys/fluent/tests/test_field_data.py +0 -466
  169. ansys/fluent/tests/test_file_session.py +0 -355
  170. ansys/fluent/tests/test_file_transfer_service.py +0 -165
  171. ansys/fluent/tests/test_fix_doc.py +0 -29
  172. ansys/fluent/tests/test_flobject.py +0 -1235
  173. ansys/fluent/tests/test_fluent_fixes.py +0 -106
  174. ansys/fluent/tests/test_fluent_session.py +0 -270
  175. ansys/fluent/tests/test_fluent_version.py +0 -66
  176. ansys/fluent/tests/test_fluent_version_marker.py +0 -65
  177. ansys/fluent/tests/test_icing_session.py +0 -9
  178. ansys/fluent/tests/test_launcher.py +0 -529
  179. ansys/fluent/tests/test_launcher_remote.py +0 -272
  180. ansys/fluent/tests/test_lispy.py +0 -40
  181. ansys/fluent/tests/test_logging.py +0 -16
  182. ansys/fluent/tests/test_mapped_api.py +0 -774
  183. ansys/fluent/tests/test_meshing_utilities.py +0 -2436
  184. ansys/fluent/tests/test_meshing_workflow.py +0 -421
  185. ansys/fluent/tests/test_meshingmode/test_meshing_launch.py +0 -168
  186. ansys/fluent/tests/test_new_meshing_workflow.py +0 -1801
  187. ansys/fluent/tests/test_preferences.py +0 -89
  188. ansys/fluent/tests/test_pure_mesh_vs_mesh_workflow.py +0 -101
  189. ansys/fluent/tests/test_reduction.py +0 -484
  190. ansys/fluent/tests/test_rp_vars.py +0 -77
  191. ansys/fluent/tests/test_scheduler.py +0 -471
  192. ansys/fluent/tests/test_scheme_eval_222.py +0 -338
  193. ansys/fluent/tests/test_scheme_eval_231.py +0 -243
  194. ansys/fluent/tests/test_search.py +0 -344
  195. ansys/fluent/tests/test_session.py +0 -594
  196. ansys/fluent/tests/test_settings_api.py +0 -606
  197. ansys/fluent/tests/test_settings_reader.py +0 -85
  198. ansys/fluent/tests/test_slurm_future.py +0 -67
  199. ansys/fluent/tests/test_solution_variables.py +0 -241
  200. ansys/fluent/tests/test_solver_monitors.py +0 -83
  201. ansys/fluent/tests/test_solvermode/boundaries_periodic_expDict +0 -1712
  202. ansys/fluent/tests/test_solvermode/test_boundaries.py +0 -127
  203. ansys/fluent/tests/test_solvermode/test_calculationactivities.py +0 -20
  204. ansys/fluent/tests/test_solvermode/test_controls.py +0 -131
  205. ansys/fluent/tests/test_solvermode/test_general.py +0 -109
  206. ansys/fluent/tests/test_solvermode/test_initialization.py +0 -83
  207. ansys/fluent/tests/test_solvermode/test_materials.py +0 -40
  208. ansys/fluent/tests/test_solvermode/test_methods.py +0 -65
  209. ansys/fluent/tests/test_solvermode/test_models.py +0 -99
  210. ansys/fluent/tests/test_solvermode/test_named_expressions.py +0 -35
  211. ansys/fluent/tests/test_solvermode/test_post_vector.py +0 -22
  212. ansys/fluent/tests/test_solvermode/test_species_model.py +0 -67
  213. ansys/fluent/tests/test_streaming_services.py +0 -52
  214. ansys/fluent/tests/test_systemcoupling.py +0 -44
  215. ansys/fluent/tests/test_topy.py +0 -179
  216. ansys/fluent/tests/test_tui_api.py +0 -70
  217. ansys/fluent/tests/test_type_stub.py +0 -37
  218. ansys/fluent/tests/test_utils.py +0 -82
  219. ansys/fluent/tests/util/__init__.py +0 -36
  220. ansys/fluent/tests/util/meshing_workflow.py +0 -33
  221. ansys/fluent/tests/util/solver.py +0 -72
  222. ansys_fluent_core-0.28.1.dist-info/AUTHORS +0 -12
  223. ansys_fluent_core-0.28.1.dist-info/RECORD +0 -294
@@ -1,3 +1,25 @@
1
+ # Copyright (C) 2021 - 2025 ANSYS, Inc. and/or its affiliates.
2
+ # SPDX-License-Identifier: MIT
3
+ #
4
+ #
5
+ # Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ # of this software and associated documentation files (the "Software"), to deal
7
+ # in the Software without restriction, including without limitation the rights
8
+ # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ # copies of the Software, and to permit persons to whom the Software is
10
+ # furnished to do so, subject to the following conditions:
11
+ #
12
+ # The above copyright notice and this permission notice shall be included in all
13
+ # copies or substantial portions of the Software.
14
+ #
15
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ # SOFTWARE.
22
+
1
23
  """Provides a module to get global PyConsole objects."""
2
24
 
3
25
  from ansys.fluent.core.launcher.launcher import launch_fluent
@@ -1,3 +1,25 @@
1
+ # Copyright (C) 2021 - 2025 ANSYS, Inc. and/or its affiliates.
2
+ # SPDX-License-Identifier: MIT
3
+ #
4
+ #
5
+ # Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ # of this software and associated documentation files (the "Software"), to deal
7
+ # in the Software without restriction, including without limitation the rights
8
+ # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ # copies of the Software, and to permit persons to whom the Software is
10
+ # furnished to do so, subject to the following conditions:
11
+ #
12
+ # The above copyright notice and this permission notice shall be included in all
13
+ # copies or substantial portions of the Software.
14
+ #
15
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ # SOFTWARE.
22
+
1
23
  """Provides a module to get warnings for core functionality."""
2
24
 
3
25
  import warnings
@@ -1,3 +1,25 @@
1
+ # Copyright (C) 2021 - 2025 ANSYS, Inc. and/or its affiliates.
2
+ # SPDX-License-Identifier: MIT
3
+ #
4
+ #
5
+ # Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ # of this software and associated documentation files (the "Software"), to deal
7
+ # in the Software without restriction, including without limitation the rights
8
+ # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ # copies of the Software, and to permit persons to whom the Software is
10
+ # furnished to do so, subject to the following conditions:
11
+ #
12
+ # The above copyright notice and this permission notice shall be included in all
13
+ # copies or substantial portions of the Software.
14
+ #
15
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ # SOFTWARE.
22
+
1
23
  """Workflow module that wraps and extends the core functionality."""
2
24
 
3
25
  from __future__ import annotations
@@ -1,13 +1,13 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2022 ANSYS, Inc. All rights reserved.
3
+ Copyright (c) 2021 - 2025 ANSYS, Inc. and/or its affiliates.
4
4
 
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
6
+ this software and associated documentation files (the "Software"), to deal in
7
+ the Software without restriction, including without limitation the rights to
8
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
9
+ of the Software, and to permit persons to whom the Software is furnished to do
10
+ so, subject to the following conditions:
11
11
 
12
12
  The above copyright notice and this permission notice shall be included in all
13
13
  copies or substantial portions of the Software.
@@ -18,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
18
  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
19
  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
20
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
21
+ SOFTWARE.
@@ -1,42 +1,64 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.3
2
2
  Name: ansys-fluent-core
3
- Version: 0.28.1
4
- Summary: PyFluent provides Pythonic access to Ansys Fluent
5
- Home-page: https://github.com/ansys/pyfluent
6
- License: MIT
7
- Author: ANSYS, Inc.
8
- Author-email: ansys.support@ansys.com
9
- Maintainer: PyAnsys developers
10
- Maintainer-email: pyansys.maintainers@ansys.com
11
- Requires-Python: >=3.10,<4.0
3
+ Version: 0.29.0
4
+ Summary: PyFluent provides Pythonic access to Ansys Fluent.
5
+ Author-email: "ANSYS, Inc." <pyansys.core@ansys.com>
6
+ Maintainer-email: "ANSYS, Inc." <pyansys.core@ansys.com>
7
+ Requires-Python: >=3.10,<3.14
8
+ Description-Content-Type: text/x-rst
12
9
  Classifier: Development Status :: 4 - Beta
10
+ Classifier: Programming Language :: Python :: 3
13
11
  Classifier: License :: OSI Approved :: MIT License
14
12
  Classifier: Operating System :: OS Independent
15
- Classifier: Programming Language :: Python :: 3
16
- Classifier: Programming Language :: Python :: 3.10
17
- Classifier: Programming Language :: Python :: 3.11
18
- Classifier: Programming Language :: Python :: 3.12
19
- Classifier: Programming Language :: Python :: 3.13
20
- Provides-Extra: reader
21
- Provides-Extra: tests
22
- Requires-Dist: ansys-api-fluent (>=0.3.30,<0.4.0)
23
- Requires-Dist: ansys-platform-instancemanagement (>=1.0,<2.0)
24
- Requires-Dist: ansys-tools-filetransfer (>=0.1,<0.3)
25
- Requires-Dist: ansys-units (>=0.3.3,<0.5)
26
- Requires-Dist: docker (>=7.1.0)
27
- Requires-Dist: grpcio (>=1.30.0,<2.0.0)
28
- Requires-Dist: grpcio-health-checking (>=1.30.0,<2.0.0)
29
- Requires-Dist: h5py (==3.12.1) ; extra == "reader"
30
- Requires-Dist: lxml (>=4.9.2)
31
- Requires-Dist: nltk (>=3.9.1)
32
- Requires-Dist: numpy (>=1.14.0,<3.0.0)
33
- Requires-Dist: pandas (>=1.1.0,<2.3)
34
- Requires-Dist: pyyaml (>=6.0)
13
+ Requires-Dist: ansys-api-fluent>=0.3.35
14
+ Requires-Dist: ansys-platform-instancemanagement~=1.1
15
+ Requires-Dist: ansys-tools-filetransfer>=0.1,<0.3
16
+ Requires-Dist: ansys-units>=0.3.3,<0.5
17
+ Requires-Dist: docker>=7.1.0
18
+ Requires-Dist: grpcio>=1.30.0
19
+ Requires-Dist: grpcio-health-checking>=1.30.0
20
+ Requires-Dist: grpcio-status>=1.30.0
21
+ Requires-Dist: lxml>=4.9.2
22
+ Requires-Dist: nltk>=3.9.1
23
+ Requires-Dist: numpy>=1.14.0,<3.0.0
24
+ Requires-Dist: pandas>=1.1.0,<2.3
25
+ Requires-Dist: pyansys-tools-report>=0.8.1
26
+ Requires-Dist: pyyaml>=6.0
27
+ Requires-Dist: Sphinx==7.4.7 ; extra == "docs"
28
+ Requires-Dist: jupyter_sphinx==0.5.3 ; extra == "docs"
29
+ Requires-Dist: numpydoc==1.8.0 ; extra == "docs"
30
+ Requires-Dist: matplotlib==3.10.0 ; extra == "docs"
31
+ Requires-Dist: ansys-sphinx-theme==1.2.7 ; extra == "docs"
32
+ Requires-Dist: pypandoc==1.15 ; extra == "docs"
33
+ Requires-Dist: pytest-sphinx==0.6.3 ; extra == "docs"
34
+ Requires-Dist: sphinx-autobuild==2024.10.3 ; extra == "docs"
35
+ Requires-Dist: sphinx-autodoc-typehints==2.3.0 ; extra == "docs"
36
+ Requires-Dist: sphinx-copybutton==0.5.2 ; extra == "docs"
37
+ Requires-Dist: sphinx-gallery==0.18.0 ; extra == "docs"
38
+ Requires-Dist: sphinx-notfound-page==1.1.0 ; extra == "docs"
39
+ Requires-Dist: sphinxcontrib-websupport==2.0.0 ; extra == "docs"
40
+ Requires-Dist: sphinxemoji==0.3.1 ; extra == "docs"
41
+ Requires-Dist: sphinx-toggleprompt==0.5.2 ; extra == "docs"
42
+ Requires-Dist: autodocsumm==0.2.14 ; extra == "docs"
43
+ Requires-Dist: beautifulsoup4==4.13.1 ; extra == "docs"
44
+ Requires-Dist: openpyxl>=3.1.5 ; extra == "docs"
45
+ Requires-Dist: plotly>=5.22.0 ; extra == "docs"
46
+ Requires-Dist: python-pptx>=0.6.23 ; extra == "docs"
47
+ Requires-Dist: quarto-cli==1.6.39 ; extra == "docs"
48
+ Requires-Dist: pdf2image==1.17.0 ; extra == "docs"
49
+ Requires-Dist: seaborn>=0.13.2 ; extra == "docs"
50
+ Requires-Dist: tensorflow>=2.17.0 ; extra == "docs"
51
+ Requires-Dist: h5py==3.12.1 ; extra == "reader"
52
+ Requires-Dist: pytest==8.3.4 ; extra == "tests"
53
+ Requires-Dist: pytest-cov==6.0.0 ; extra == "tests"
54
+ Requires-Dist: pytest-mock==3.14.0 ; extra == "tests"
55
+ Requires-Dist: pytest-xdist==3.6.1 ; extra == "tests"
35
56
  Project-URL: Documentation, https://fluent.docs.pyansys.com/
36
- Project-URL: Repository, https://github.com/ansys/pyfluent
37
57
  Project-URL: Source, https://github.com/ansys/pyfluent
38
58
  Project-URL: Tracker, https://github.com/ansys/pyfluent/issues
39
- Description-Content-Type: text/x-rst
59
+ Provides-Extra: docs
60
+ Provides-Extra: reader
61
+ Provides-Extra: tests
40
62
 
41
63
  PyFluent
42
64
  ========
@@ -127,7 +149,8 @@ the latest release with:
127
149
  cd pyfluent
128
150
  pip install pip -U
129
151
  pip install -e .
130
- python codegen/allapigen.py # Generates the API files
152
+ python codegen/allapigen.py # Generates the API files or
153
+ python codegen/allapigen.py -v # Pass -v or --verbose to display the paths of the generated API files
131
154
 
132
155
  Dependencies
133
156
  ------------
@@ -0,0 +1,219 @@
1
+ ansys/fluent/core/__init__.py,sha256=tohX4NpmnMumClK7vqCn4AAHAB8S5A-on-tAYlIJLTE,5712
2
+ ansys/fluent/core/_version.py,sha256=P2ta9lBB0BCMnAD2kDerO05mP-5kdUe65Baq58A1ieQ,1545
3
+ ansys/fluent/core/data_model_cache.py,sha256=MVnBuH7s5Yr_AI8f0F9kPw-gMExDopUKvW9a99MX2RE,16963
4
+ ansys/fluent/core/exceptions.py,sha256=-3N1Mz58PzxxISx0SvKQqhcK9vAeqhsHnmgI7kW-S6w,1890
5
+ ansys/fluent/core/file_session.py,sha256=5Pvotahjxw796IeyFJxZIXRh2zdLjz_4abDxdOJTyX4,27850
6
+ ansys/fluent/core/fluent_connection.py,sha256=Umlmkpid7SVvFFnfwBbLxgI7asxBkLXM3FJE-hCl6dY,29181
7
+ ansys/fluent/core/get_build_details.py,sha256=Gsyj41FBk73wdq7zcqttUd98QmiKcP53O4bzt2gMwrk,2446
8
+ ansys/fluent/core/journaling.py,sha256=HnskC_eUwjslXsUZTJYkrLtBQAeMSiW4ZpUuXrgmtow,2299
9
+ ansys/fluent/core/logging.py,sha256=d2nECUMpr6-LyN4XDQRMxBIMJSBgeshGeG1Egll_n_Y,9452
10
+ ansys/fluent/core/logging_config.yaml,sha256=vRRU5i-XxnAJgPxgJPfSrMUDXFVh0XJ2kBNrZsxwrB0,1408
11
+ ansys/fluent/core/parametric.py,sha256=msLDlV7fSB4vBjb1HnKNENZBDWvjcIPNli-s0PjX4cY,11377
12
+ ansys/fluent/core/report.py,sha256=bzxuEOfSevMinCn2YCu-5nfkRjI5W1WYoIepCLma4cw,2714
13
+ ansys/fluent/core/rpvars.py,sha256=32_hibh-lQ5z6C2yPeCdL0BEKJuPUvUp-f5-F5bxam0,4640
14
+ ansys/fluent/core/search.py,sha256=bkT4jjkYhNgzd-yDDTNaCkRoD-wZ_z88fU7kV9VKS1w,17530
15
+ ansys/fluent/core/session.py,sha256=ZqWF4alYwENitvK28tTTTu4V-dOiyCGswvEx2tdjBkU,16827
16
+ ansys/fluent/core/session_base_meshing.py,sha256=ZF-ycCaqGWzmWeMvRZjFsUokJ2bEIalmQLeuHiMcttg,10068
17
+ ansys/fluent/core/session_meshing.py,sha256=5APt6EZUa2qoHxEMI_oZkwgyV9UQlDeqjZshGv9t6JE,4870
18
+ ansys/fluent/core/session_meshing.pyi,sha256=OI65sZp60ScqFfQvI2wRFLVRKH4IDXxQu8eGByy5-cc,2285
19
+ ansys/fluent/core/session_pure_meshing.py,sha256=mEHg4xn18iK_yHlr5qRRddRZPNIaTolwHNVz7YMvM0k,8608
20
+ ansys/fluent/core/session_pure_meshing.pyi,sha256=XJwGAoqZrCp5C2zKRRHjeBHu-pTuLY3WKKN-LnxB9I8,2772
21
+ ansys/fluent/core/session_shared.py,sha256=O2Ld2U1r-UpMNYbMHDv7xCEgR002moliUEtRf9s2z4g,3054
22
+ ansys/fluent/core/session_solver.py,sha256=rhnA6G35QWo2GJNvswTuf1Ui8aL8LSrElC8mnpoiVAA,13767
23
+ ansys/fluent/core/session_solver.pyi,sha256=hUyEP9DRYj8yM28BPhDvmU43nCQza3thk-YB2O9xhOU,2045
24
+ ansys/fluent/core/session_solver_aero.py,sha256=6XuZR6JsWhiX5Wppty4BImG-LG7RFxXeqZ-VlyQDA2g,4492
25
+ ansys/fluent/core/session_solver_icing.py,sha256=_-gsew_0gan9mx2QZSycXAzNOvGS3MxykBacORS5Kqg,3649
26
+ ansys/fluent/core/session_solver_lite.py,sha256=LHiGY6qdNOY7OwtnZwlWyTDSd3T_fGF4pL2M-M_xW14,3101
27
+ ansys/fluent/core/systemcoupling.py,sha256=6TnZ9ER51K2BwH0WSxoAX6cEaIXxZW2FfsmGX-uEwUM,13802
28
+ ansys/fluent/core/warnings.py,sha256=_v47xiF743i8XQbdIT_yW4jz36Z4VDp-1a3AeeBANo8,2028
29
+ ansys/fluent/core/workflow.py,sha256=n4HPCxoOrH1Gwqblk2p3hynm0QXVtb-JFQ3sm1uXUPM,59157
30
+ ansys/fluent/core/_stand_alone_datamodel_client/_datamodel_client.py,sha256=0RNLFEcHva7X3HxMaDuC-Ry2qZqkNkbm8jMkFNcuyP0,2118
31
+ ansys/fluent/core/codegen/__init__.py,sha256=W8cAyIWfzg80ilUh_m3Jb_uxnfWL2yYnwPOKViQWVO4,1755
32
+ ansys/fluent/core/codegen/allapigen.py,sha256=Ga0l683Oh_U9yRKWlFGNP3K1grjTR8K18kHAmq0SE7M,2659
33
+ ansys/fluent/core/codegen/builtin_settingsgen.py,sha256=LY8wkDSQu08bZQSjKbnK9mZ5Ro0y3kWPi72w-7E_gVI,5255
34
+ ansys/fluent/core/codegen/datamodelgen.py,sha256=1cC_3ysWayxcl0TrAFjabu8dE9WrAxHVCAI2umxBMyU,20339
35
+ ansys/fluent/core/codegen/print_fluent_version.py,sha256=4Oy8olebE3LLyQfIHtJ0f-2CEMzAQGo_141VG_3nFCw,2063
36
+ ansys/fluent/core/codegen/settingsgen.py,sha256=jen5wdT6QBl8qINxORb2FnmRf72JjaC74rhTF2ARcII,14941
37
+ ansys/fluent/core/codegen/tuigen.py,sha256=GQdAsqodFI-0sbGGIkVBVskA9OwLMg2a6xfKANiscg4,13923
38
+ ansys/fluent/core/codegen/walk_api.py,sha256=xx1czU1wfdXPeJpz5Lg6W3hx83RKUCnfwQAZg99P6OE,4038
39
+ ansys/fluent/core/codegen/write_settings_yaml.py,sha256=HPWqpzUiDZTkbVOD-Nl-8ihPgqDNgsRCwXHqNrw_cJU,2540
40
+ ansys/fluent/core/codegen/data/__init__.py,sha256=iU3iD1C8euFedGFX4o1-NVuoI7OKhEgjmbXR1tqjv0o,1153
41
+ ansys/fluent/core/codegen/data/fluent_gui_help_patch.py,sha256=5Tv9iBFzFaVwl11_rWqjRxxY1SB7OTW8e6LV8SdYpqQ,1640
42
+ ansys/fluent/core/codegen/data/meshing_utilities_examples.py,sha256=W3LvwDCLAFtnpMwBTDaDPct8fncDJr2sB3msZJjQG20,47646
43
+ ansys/fluent/core/codegen/data/static_info_222_meshing.pickle,sha256=W77lAHK8zE8NK_Vjcy9z3HgcLvBlXf-b2sk9PG_RyOg,288626
44
+ ansys/fluent/core/codegen/data/static_info_222_solver.pickle,sha256=rdXZm32IyvhztClk5mirzlf3_hczC-3FYFW8JEMoK3Y,1196326
45
+ ansys/fluent/core/docs/.gitignore,sha256=ez7QK8c9wGt9uQbPl6qR3sKy6yHy2SvFyqdh31u8Fo8,10
46
+ ansys/fluent/core/examples/__init__.py,sha256=Umpy8-WcLFES08kiG_i9V9ILw85Q1KzedIJQd9aFBjw,1281
47
+ ansys/fluent/core/examples/downloads.py,sha256=lS4lpitG6KAfeuW9Fnymv2xCNTOWV9REOdnf77lxUY0,7750
48
+ ansys/fluent/core/filereader/__init__.py,sha256=iU3iD1C8euFedGFX4o1-NVuoI7OKhEgjmbXR1tqjv0o,1153
49
+ ansys/fluent/core/filereader/case_file.py,sha256=L0_zrT8tqS87tgLdebT2qMH-XZGGMmj-8JH4kHSIzWg,22800
50
+ ansys/fluent/core/filereader/casereader.py,sha256=51Bg832ber2vq5_TR2O6BewKar9kzhUVvYIXchtJbGo,1477
51
+ ansys/fluent/core/filereader/data_file.py,sha256=pKxgiqGQGSfFCCvUa9uShBQbCuxB05b7E0Q86B5CkH8,8265
52
+ ansys/fluent/core/filereader/lispy.py,sha256=oTtcdh8XveutpBcCK5N7zi8OHHRg9QhJ0Nn1NVguUC4,17455
53
+ ansys/fluent/core/generated/fluent_version_222.py,sha256=g38e3ctUL71_k29qiHAvApjzm4CjL37i2gCSgNEcpjg,158
54
+ ansys/fluent/core/generated/fluent_version_231.py,sha256=KEimazbeoKgKAxljiOwth1WpPK0Df99MTOEbd3Ze80s,167
55
+ ansys/fluent/core/generated/fluent_version_232.py,sha256=tA4sMzKfssaeUwlM6WSk0qAVI0PG9jmWHxyy9Q2r_GM,167
56
+ ansys/fluent/core/generated/fluent_version_241.py,sha256=R60bDiS2y_VYuI49NMPWTYgSaNDJsoESO163fY_KTJ0,167
57
+ ansys/fluent/core/generated/fluent_version_242.py,sha256=098i_ge1V5f_MZxu9hIjNAF_nYL5RTEzsGNkrgVIn0A,167
58
+ ansys/fluent/core/generated/fluent_version_251.py,sha256=HB2VZqVDg8DbP2kDE1v2rCxCgUrXwnWdiLGaTOdNnF0,167
59
+ ansys/fluent/core/generated/fluent_version_252.py,sha256=-xtjGQx3IvKFqZtNXwrcDyl3U2icsFF1TNYbr-Snk_M,151
60
+ ansys/fluent/core/generated/api_tree/api_objects.json,sha256=Tx_LnY4BMmaUk2XtFX0bH3WRHpNGkErLMGjwU21DWKo,13430849
61
+ ansys/fluent/core/generated/datamodel_222/PMFileManagement.py,sha256=LhCYSB_swkVZ8iPqGus-miHD65LqZB_x3C6y0B_Bl34,7270
62
+ ansys/fluent/core/generated/datamodel_222/PartManagement.py,sha256=Lvq9BtPFQK_26m0K-pHIeN2QaMr_8xu2pGGW-07avPA,40605
63
+ ansys/fluent/core/generated/datamodel_222/meshing.py,sha256=w815twyOdeNBQjuyWGCWektjM4oDaWq2MBoSiZXiYoI,49964
64
+ ansys/fluent/core/generated/datamodel_222/preferences.py,sha256=NSmhNl73VQXJudnare4_P8QJiqo8aEzhIxTwwBOpFEk,101981
65
+ ansys/fluent/core/generated/datamodel_222/workflow.py,sha256=65IPWNxC3k7jOydKBjgCsrO292r8ZOYljyFQdWpiIj0,11520
66
+ ansys/fluent/core/generated/datamodel_231/PMFileManagement.py,sha256=8Aez3-iYwJ5x-3650RuVymVJiFx9ggbsWy1XtGQXzcE,7864
67
+ ansys/fluent/core/generated/datamodel_231/PartManagement.py,sha256=flIDjX5eRtqMEZ3yyV9Eo_XOKf6Ankzg7t5hXcabFGQ,73731
68
+ ansys/fluent/core/generated/datamodel_231/flicing.py,sha256=hjw6LJfkeF59zZi5y7UD4brMPm0HsXZeBkDICb4B1Xg,321412
69
+ ansys/fluent/core/generated/datamodel_231/meshing.py,sha256=DiG5r7xQt4IUNjlvikPdtKAywwB8MvOHd8Qhz1m2ZzA,53397
70
+ ansys/fluent/core/generated/datamodel_231/preferences.py,sha256=qstO-zI4llC-ehOk5R2jCg2AY_KGReSwcFgcfdUORcE,102296
71
+ ansys/fluent/core/generated/datamodel_231/solverworkflow.py,sha256=1L8sSTowCKi9j-vso36ZdTDspqba9JsHTcuAgOEkTD8,7910
72
+ ansys/fluent/core/generated/datamodel_231/workflow.py,sha256=WyW0b84Z_nRhCMz7YJw17BUrQhaS6-NZmU7k77yEsQU,11861
73
+ ansys/fluent/core/generated/datamodel_232/PMFileManagement.py,sha256=8Aez3-iYwJ5x-3650RuVymVJiFx9ggbsWy1XtGQXzcE,7864
74
+ ansys/fluent/core/generated/datamodel_232/PartManagement.py,sha256=flIDjX5eRtqMEZ3yyV9Eo_XOKf6Ankzg7t5hXcabFGQ,73731
75
+ ansys/fluent/core/generated/datamodel_232/flicing.py,sha256=selqFL5p9SR1bDzeesZZzK3nPAwhc5Po1dWYFuuOBsE,321445
76
+ ansys/fluent/core/generated/datamodel_232/meshing.py,sha256=98EooQocCIFLSahjUXq6CygPR98cwLzg1LplCB_KCkE,56529
77
+ ansys/fluent/core/generated/datamodel_232/preferences.py,sha256=mgtAXWgmiquNFXHUUUdf37fgrgLbkaMFzh2FLujd8aQ,105782
78
+ ansys/fluent/core/generated/datamodel_232/solverworkflow.py,sha256=NhNfnHKQlAoKE2yp2Th8oZn6B5jnnD2xxv8LD7hxZps,14407
79
+ ansys/fluent/core/generated/datamodel_232/workflow.py,sha256=WyW0b84Z_nRhCMz7YJw17BUrQhaS6-NZmU7k77yEsQU,11861
80
+ ansys/fluent/core/generated/datamodel_241/PMFileManagement.py,sha256=8Aez3-iYwJ5x-3650RuVymVJiFx9ggbsWy1XtGQXzcE,7864
81
+ ansys/fluent/core/generated/datamodel_241/PartManagement.py,sha256=RIkc8f8-H9Ktbr3IW8JFAq_bStDumP84H0xhHg0FOpI,74703
82
+ ansys/fluent/core/generated/datamodel_241/flicing.py,sha256=selqFL5p9SR1bDzeesZZzK3nPAwhc5Po1dWYFuuOBsE,321445
83
+ ansys/fluent/core/generated/datamodel_241/meshing.py,sha256=C-QF2Irk92R2GmQV9aFfhM4xUK8Ho5XI_4o3j_Tv758,62016
84
+ ansys/fluent/core/generated/datamodel_241/preferences.py,sha256=Pl0KiPzgnV4oOYzDarkuYojTA3C97Wv82dhehbqCb7c,107723
85
+ ansys/fluent/core/generated/datamodel_241/solverworkflow.py,sha256=NhNfnHKQlAoKE2yp2Th8oZn6B5jnnD2xxv8LD7hxZps,14407
86
+ ansys/fluent/core/generated/datamodel_241/workflow.py,sha256=FApZiS08QtpAEj9We-xHfbArPhq2Wl6uoh0vnkyAmJk,11950
87
+ ansys/fluent/core/generated/datamodel_242/MeshingUtilities.py,sha256=UIRaEdmX7qSRxWkJyFyfhoEvvZqjDPph7ASklDh9Qos,107748
88
+ ansys/fluent/core/generated/datamodel_242/PMFileManagement.py,sha256=KH3_g8Y0l1PIBQUqFPUROjWmRGS2FCVDagjgqJyTGVs,9410
89
+ ansys/fluent/core/generated/datamodel_242/PartManagement.py,sha256=k4m7jbOvm77MJDDitTu1JMVf6MAdTDTgX61nUxcvfXY,74823
90
+ ansys/fluent/core/generated/datamodel_242/flicing.py,sha256=I3QlCsXVpEWBYmP9X452jpf4OZwlBXGnEj8m7Y0y9eE,367224
91
+ ansys/fluent/core/generated/datamodel_242/meshing.py,sha256=606VeZhJSUktnsGF31Xs3U1qa38sDIeG2EuZP4yt890,64663
92
+ ansys/fluent/core/generated/datamodel_242/preferences.py,sha256=g4ZGyiNMPl40y3HPjk3U5SIbmKGMfimEh6WpQEpzt6Y,111964
93
+ ansys/fluent/core/generated/datamodel_242/solverworkflow.py,sha256=NhNfnHKQlAoKE2yp2Th8oZn6B5jnnD2xxv8LD7hxZps,14407
94
+ ansys/fluent/core/generated/datamodel_242/workflow.py,sha256=ub1c_RR95cBVwAu6LhKpQBG-xtrn7ed04xuabdWT00E,12892
95
+ ansys/fluent/core/generated/datamodel_251/MeshingUtilities.py,sha256=xXaIzWxJgnTZT5UKMmw3Pf0lHNXATVXguVzlPmV2po8,139507
96
+ ansys/fluent/core/generated/datamodel_251/PMFileManagement.py,sha256=KH3_g8Y0l1PIBQUqFPUROjWmRGS2FCVDagjgqJyTGVs,9410
97
+ ansys/fluent/core/generated/datamodel_251/PartManagement.py,sha256=V9sVd5hk7UyoSv5jZV_Sr6mzbCplnXnDscJ0H0oESpI,75723
98
+ ansys/fluent/core/generated/datamodel_251/flicing.py,sha256=I3QlCsXVpEWBYmP9X452jpf4OZwlBXGnEj8m7Y0y9eE,367224
99
+ ansys/fluent/core/generated/datamodel_251/meshing.py,sha256=4DYvfr0bQxo5AfiNyt_30EPeH_Sao2IFn7zXExlHgpY,74012
100
+ ansys/fluent/core/generated/datamodel_251/preferences.py,sha256=m8ZDrXZDqR995mfwlljai9pVJ-TQkX7s7fvwU_rtsZc,115407
101
+ ansys/fluent/core/generated/datamodel_251/solverworkflow.py,sha256=NhNfnHKQlAoKE2yp2Th8oZn6B5jnnD2xxv8LD7hxZps,14407
102
+ ansys/fluent/core/generated/datamodel_251/workflow.py,sha256=j5_RWZ6r87LzpMiSFVDh-zBZFN8OpjRG-4obfvGsxI8,12935
103
+ ansys/fluent/core/generated/datamodel_252/MeshingUtilities.py,sha256=xXaIzWxJgnTZT5UKMmw3Pf0lHNXATVXguVzlPmV2po8,139507
104
+ ansys/fluent/core/generated/datamodel_252/PMFileManagement.py,sha256=KH3_g8Y0l1PIBQUqFPUROjWmRGS2FCVDagjgqJyTGVs,9410
105
+ ansys/fluent/core/generated/datamodel_252/PartManagement.py,sha256=V9sVd5hk7UyoSv5jZV_Sr6mzbCplnXnDscJ0H0oESpI,75723
106
+ ansys/fluent/core/generated/datamodel_252/flicing.py,sha256=I3QlCsXVpEWBYmP9X452jpf4OZwlBXGnEj8m7Y0y9eE,367224
107
+ ansys/fluent/core/generated/datamodel_252/meshing.py,sha256=Wi9OM36jtUHx7cR3OKTUx3SgLiuwqnmeA09TwKX4XrQ,75389
108
+ ansys/fluent/core/generated/datamodel_252/preferences.py,sha256=mnHJMd9gyoEoC6SRZU4ORflahe0yLhsxSDW6qU63EBg,116355
109
+ ansys/fluent/core/generated/datamodel_252/solverworkflow.py,sha256=NhNfnHKQlAoKE2yp2Th8oZn6B5jnnD2xxv8LD7hxZps,14407
110
+ ansys/fluent/core/generated/datamodel_252/workflow.py,sha256=j5_RWZ6r87LzpMiSFVDh-zBZFN8OpjRG-4obfvGsxI8,12935
111
+ ansys/fluent/core/generated/meshing/tui_222.py,sha256=-N3_qz1sEzDFIXwYEwZu3IQStw2AbUYdVO5EhlnYRBs,596960
112
+ ansys/fluent/core/generated/meshing/tui_231.py,sha256=9Bc9p0rDlE0dGXqtlt4Rc-G092tIW03f_BS6dtL_esQ,564248
113
+ ansys/fluent/core/generated/meshing/tui_232.py,sha256=nVG3OvGE0iEz_qW6968LA5wW75V5RG-CJoS_l-tWoYY,593820
114
+ ansys/fluent/core/generated/meshing/tui_241.py,sha256=TXZY6uTqj8C9N6403dIse9lWTZHQoFdZbd6id1rn5fw,609442
115
+ ansys/fluent/core/generated/meshing/tui_242.py,sha256=PW76uDMeQjBExAbHKLaCdReqdimzeaVgupn36eZ8RsM,616621
116
+ ansys/fluent/core/generated/meshing/tui_251.py,sha256=H01sTWY8oPlGg0os-t0I9DXprNrSWMhxVXH8G_cVsJo,624478
117
+ ansys/fluent/core/generated/meshing/tui_252.py,sha256=lMjnbK-humfIe_Vk94f9N7l2eMpSqvcEh5ajP8p7cP0,548122
118
+ ansys/fluent/core/generated/solver/settings_222.py,sha256=3q-qOPMrhxficQE-FgDYlpkYs8B03QU9OxoIoAILd94,958147
119
+ ansys/fluent/core/generated/solver/settings_222.pyi,sha256=TvY82dWiMxOX0IUFjH3DL07QySGcqGD2ywToqzav1Xg,558777
120
+ ansys/fluent/core/generated/solver/settings_231.py,sha256=o-ktM-jICOLGogEIgRcZ0VDuLYF-43F5UyvsOxFBI0o,1386114
121
+ ansys/fluent/core/generated/solver/settings_231.pyi,sha256=GOKoHMMeQeGtspXgXeav4Bs6-RIVdRPArtMQxI-W-24,766483
122
+ ansys/fluent/core/generated/solver/settings_232.py,sha256=dnymJSo-_z-dAtZ4x8nxGhbx2DzOKFZM1UIWfrVkLMI,1608439
123
+ ansys/fluent/core/generated/solver/settings_232.pyi,sha256=OsrWQBKCZlNmqabqfx1aV6WS-bSjuD1N-sALYNlbN5Y,925725
124
+ ansys/fluent/core/generated/solver/settings_241.py,sha256=dQ149WHS7kjgM0jYlij2AdV8udGsFISaFVyZyJ_sBhI,1916230
125
+ ansys/fluent/core/generated/solver/settings_241.pyi,sha256=UpwBh3eTfOKZnHMxfJY-nY0OSfNLtNre2XG5bpWEn8U,1218878
126
+ ansys/fluent/core/generated/solver/settings_242.py,sha256=cFeh-46tdUHq3vj6jVHTWaPezBGcxBq2Y3zvhxlKnpg,2292038
127
+ ansys/fluent/core/generated/solver/settings_242.pyi,sha256=zStyvKTSKEIR8jYZMscaFr-BrnztRJYJ8iXIlmWzpjc,1512496
128
+ ansys/fluent/core/generated/solver/settings_251.py,sha256=1bwW_GF0tJ-1aQTP_BRXwbYxE1jVsEPUjf_CeQEb91Q,2599240
129
+ ansys/fluent/core/generated/solver/settings_251.pyi,sha256=DTE9QFcTxFlrMBoLAPHesxsHPWwgPS-sbT-DYapouVQ,1722515
130
+ ansys/fluent/core/generated/solver/settings_252.py,sha256=_ubns4hgWzattnaKvrgmb9Jd4jPfUL7cwamKYRLRAD4,2786730
131
+ ansys/fluent/core/generated/solver/settings_252.pyi,sha256=s6n59WbDWT3vIdspeh_jPxJeb0yi-lXlX4mP5Kqr1YM,1875065
132
+ ansys/fluent/core/generated/solver/settings_builtin.py,sha256=4IWfVaV7SQs-yrvD9plYYPlDnnyrJyi-gQ0Sfcw5u1A,54375
133
+ ansys/fluent/core/generated/solver/settings_builtin.pyi,sha256=r_a-OMU4lEIX-4q6IDK7llzs1ezC7pvCDSSQ77jdG5A,83441
134
+ ansys/fluent/core/generated/solver/tui_222.py,sha256=YrWs6To25qtAGTjLIxK2yg9um9rOsiJKmCPcZrHxI0o,2785708
135
+ ansys/fluent/core/generated/solver/tui_231.py,sha256=adUuOnyCSUxePpzK-PdUQe3w77MTrLZpipI8IPBwqWs,2770957
136
+ ansys/fluent/core/generated/solver/tui_232.py,sha256=g-wYWRFEUCo8lf-JxOG3GhBqB_iBcvNS-EuFi-jB5IQ,1816651
137
+ ansys/fluent/core/generated/solver/tui_241.py,sha256=2c2NW4k2dP3dY5d--MJNJ082jp0ixlK9flshd3EaYqg,2009332
138
+ ansys/fluent/core/generated/solver/tui_242.py,sha256=e3DOfh-Tl6DFaotqBlrJLebOA9Uz5prxAqMKICPU76g,2085786
139
+ ansys/fluent/core/generated/solver/tui_251.py,sha256=vZsxD1mMqdFZDGLF6epEOJgNPO7XsUT1J_jyRIu3Gds,2159906
140
+ ansys/fluent/core/generated/solver/tui_252.py,sha256=z5izw2MTn46-UXkfD0eOqNVxiabyVpGzeAMK_Nhf9O4,2171777
141
+ ansys/fluent/core/launcher/__init__.py,sha256=9hMY9T1Xu0Pi8XBqEld4LpgcS7gpwUxzEW8U-_NElt0,1610
142
+ ansys/fluent/core/launcher/container_launcher.py,sha256=nhOF5LxB14G5lJAncOJ2u-9x6VnpN7ibQ_kJCcNck20,10147
143
+ ansys/fluent/core/launcher/error_handler.py,sha256=Nktj5KhHK9mk7IPo-tUyMqh94Q3pxGkxfnMhaEtgqw8,3977
144
+ ansys/fluent/core/launcher/fluent_container.py,sha256=NiItmQXBdGUmZm6XNlnLGDKsufszqgEF6rxhaURHe0Q,18215
145
+ ansys/fluent/core/launcher/fluent_launcher_options.json,sha256=QFuWt_s8wRKVqHd3s_GAVn-m6nRBF7i5cNOWICX0g1Y,805
146
+ ansys/fluent/core/launcher/launcher.py,sha256=E_oIAPJyY5ixfcoVSOzudOdASimuEZdi1QhPLSinaTg,19443
147
+ ansys/fluent/core/launcher/launcher_utils.py,sha256=qBjdHge6bqvxPFSR8YEWTS89AOwWVoXm6-zKZJvNcpc,5726
148
+ ansys/fluent/core/launcher/pim_launcher.py,sha256=CDuF1YA-TpSy_NBNxUWKlDi_aqcMjZa0JF5bGE3X1W4,11918
149
+ ansys/fluent/core/launcher/process_launch_string.py,sha256=F1W_KbRNjP7DNr0ec024zM7Si_yQWJG8gsRkM5uJiDA,7367
150
+ ansys/fluent/core/launcher/pyfluent_enums.py,sha256=aBCWNWKwY0f4jQW0flLaeHtIcB2cm-qZ929T1_LsriE,10683
151
+ ansys/fluent/core/launcher/server_info.py,sha256=I4JGJSZ4y4wt8SzhKK63XoFnRRXlag5CaLhOVqPsiog,4822
152
+ ansys/fluent/core/launcher/slurm_launcher.py,sha256=gbI_V6M1VjfXFmIZYs8VOeYAPlSxSixeDLrW5Fa1-ao,20391
153
+ ansys/fluent/core/launcher/standalone_launcher.py,sha256=IJYcShAQ7Vi_laaI8Mbi3ue9Csbex6ueDwLDr05hb1I,14994
154
+ ansys/fluent/core/launcher/watchdog.py,sha256=z_VDwgXsbt7vpmlpuGs8MLmAnrwxH6rfvQMLGtKLaWU,7081
155
+ ansys/fluent/core/launcher/watchdog_exec,sha256=FkODof1TWvOerNqIMdqmBQRc0kIawkNC240w3qpUhbI,6201
156
+ ansys/fluent/core/meshing/meshing_workflow.py,sha256=EVWoXL82vjQiBNFUsyJE5dgwBz5ofOtdaaUrCov8yuA,10776
157
+ ansys/fluent/core/post_objects/__init__.py,sha256=iU3iD1C8euFedGFX4o1-NVuoI7OKhEgjmbXR1tqjv0o,1153
158
+ ansys/fluent/core/post_objects/check_in_notebook.py,sha256=URmaR9e69HO8EjM5qKBqtqqPKqPnxOYyraYJe58uw4g,1519
159
+ ansys/fluent/core/post_objects/meta.py,sha256=h7r_uRrEh0_Dngha_AzJekWiMt9MD5j0DmwYeGC5jkM,32865
160
+ ansys/fluent/core/post_objects/post_helper.py,sha256=fab0hSu-EwcN0NuFPWACuhr20337RrDutQWjyOv_ClA,7520
161
+ ansys/fluent/core/post_objects/post_object_definitions.py,sha256=WzSPCDpveV-q00JvZTa3MvPkN6IEmRmIrrx5wryXwr4,22020
162
+ ansys/fluent/core/post_objects/post_objects_container.py,sha256=PXixSdXHUG4VZlmMyRYXshLzq1_tqEFD6ywVcJUhV-Y,8942
163
+ ansys/fluent/core/post_objects/singleton_meta.py,sha256=cM8t6yu33HpQoSW8DcFbQvKG5wYoHu8nLDt-FeaRQcE,1667
164
+ ansys/fluent/core/post_objects/timing_decorator.py,sha256=DIvHmX0Cd-TJZ9L9K1KURHkMHwO79keokOhhBLZoTHs,1481
165
+ ansys/fluent/core/scheduler/__init__.py,sha256=eEvhpFl25fYFGigLkpYoL0frh7wdzez_oCoXniKxgFM,3170
166
+ ansys/fluent/core/scheduler/load_machines.py,sha256=A1o2WS5Rb32eWOYJUxaRKF3cbrV8sXr_c0z8dOodMdg,19270
167
+ ansys/fluent/core/scheduler/machine_list.py,sha256=H4dqE7VvpE1YYPSabXJ4MwQHGVPbmK8ICMpCzzWgniA,6779
168
+ ansys/fluent/core/services/__init__.py,sha256=5GBJYx3oxzurt9jaXGmUHCeVKddpFxJZ_pj4RRUnsOg,3166
169
+ ansys/fluent/core/services/api_upgrade.py,sha256=ebesQI1X9418qFBRV8wpYV59btVyrFJ0hjfJcBjmdo8,2830
170
+ ansys/fluent/core/services/app_utilities.py,sha256=OStE35HzCpGG3RB17Ln_Tuuyp5RM1zoFfU08oM-gYVk,18623
171
+ ansys/fluent/core/services/batch_ops.py,sha256=NmTqERVZ5quMInEFM-DofPwrWOYRprz93GjePBR-gjQ,8606
172
+ ansys/fluent/core/services/datamodel_se.py,sha256=75h8PV25skrioA4vMMtHRHW4Hzl1e9LOm-UhLowMkWY,79244
173
+ ansys/fluent/core/services/datamodel_tui.py,sha256=ltq3XXa6m3wRQ2Q29c_531oqDR9nTtr6ZOoj1xb0dSQ,15301
174
+ ansys/fluent/core/services/deprecated_field_data.py,sha256=r63SsDd30IcqZddZ4aRu8FzZhKvuRNkhWwMv0IIzGi4,25991
175
+ ansys/fluent/core/services/events.py,sha256=mWDilZ3LCNYJw4bhCNTHikgmtfd3x_ZQq-mOX9mYOnw,1746
176
+ ansys/fluent/core/services/field_data.py,sha256=hufttqEdV9QhaFsGHC4kDKa1wZ_QBlcDhSLEcer18gw,55024
177
+ ansys/fluent/core/services/health_check.py,sha256=aQw6xJsZ4p6SCgaH7Ge4afe2-b_6u_ovjQAumWybgyM,4805
178
+ ansys/fluent/core/services/interceptors.py,sha256=K-MVJLllnKSlg5ElLTHHkH08_09PpIZfsxiTK40JgPg,9285
179
+ ansys/fluent/core/services/monitor.py,sha256=ZlriWk61CtLi1Br7CABqYf27ueg9czI5P7NzITh21Vk,2846
180
+ ansys/fluent/core/services/reduction.py,sha256=zadBLP6Tv8bjQ35rwtDorurPOhKWgHSx4mzVCUi7mKs,19054
181
+ ansys/fluent/core/services/scheme_eval.py,sha256=RXV03zS92mGHu2YhIzU015X2NHtAuegROgPI1yq3abM,13038
182
+ ansys/fluent/core/services/settings.py,sha256=rO9hPlBFnc_I-bZyZoj4K-F8UlLjqiBSrW4uEEOjhSY,14519
183
+ ansys/fluent/core/services/solution_variables.py,sha256=Y67YeugPwkXuTTFqdv9fxTlc7A1gqwEgnTsZr_Eqbpc,28143
184
+ ansys/fluent/core/services/streaming.py,sha256=Vc3GpBnTHzWGAM8W4cxkAbgEjNp0L9AmqiiucEufh4Y,3587
185
+ ansys/fluent/core/services/transcript.py,sha256=AQAtJt6OFDHwkxOTYXoZuVK5RucBH09qGe9S5_ja7eo,1754
186
+ ansys/fluent/core/solver/__init__.py,sha256=ZasBiwk-6qye3jeNE0zKBXdOQYW-ZyR8wAApC-OhzSg,1389
187
+ ansys/fluent/core/solver/error_message.py,sha256=VBUdZXfH6lb0SKLiq-fVB5Nv10IXaaScZuKakC2tZyo,2910
188
+ ansys/fluent/core/solver/flobject.py,sha256=_YH-isOSPLGEzcFnHaIg-x9yrLzLBkgofkkG1g85494,73005
189
+ ansys/fluent/core/solver/flunits.py,sha256=RSMq_8dPxRTmLCUk5V0K9vmIXkVfYoYy42VNAsVAr-k,10505
190
+ ansys/fluent/core/solver/settings_builtin_bases.py,sha256=G8fa-2zN1p1GGKleVWRrnq7IFyVp26n4WbdzecdFubA,5551
191
+ ansys/fluent/core/solver/settings_builtin_data.py,sha256=571yvaoDFvXna4ccX11wq2uvQiDPlpKJShJXteLMjfE,44068
192
+ ansys/fluent/core/solver/settings_external.py,sha256=J_8OKEjeVl_OMJQdR2kaV0Kw_nof6jLSQEa39c7qMlI,1534
193
+ ansys/fluent/core/solver/function/__init__.py,sha256=tlI8fONX52W60cypVft8MX5oPUMKGsJIS3f0fN25FjI,1199
194
+ ansys/fluent/core/solver/function/reduction.py,sha256=8k54cG9BJHp6dtNQ_0GeGOoGkK88yE605pkOLzdXNII,16717
195
+ ansys/fluent/core/streaming_services/__init__.py,sha256=iU3iD1C8euFedGFX4o1-NVuoI7OKhEgjmbXR1tqjv0o,1153
196
+ ansys/fluent/core/streaming_services/datamodel_event_streaming.py,sha256=uRxQz07kUEHyjE5LXro70srxvAF8Fd4OJzbkCKXDopo,4893
197
+ ansys/fluent/core/streaming_services/datamodel_streaming.py,sha256=Nz9fQApJnxvHlbS8iZIVtx8E0WncMinuyRg0ckMr0NE,3361
198
+ ansys/fluent/core/streaming_services/events_streaming.py,sha256=UFAKed87QzPg0jiXvf_gbl2q-QaxK-MXDyDknShdqOA,19560
199
+ ansys/fluent/core/streaming_services/field_data_streaming.py,sha256=5EVg-towefKOWB2959lzPatB3pka-nml9ZWQ8kVxtFo,2648
200
+ ansys/fluent/core/streaming_services/monitor_streaming.py,sha256=1qC13h_nzMSAEdxgpZpHf1nXpApKp7Rfpb5EJfFTBgY,8250
201
+ ansys/fluent/core/streaming_services/streaming.py,sha256=QxlqsKHRF7V8TtLhakSTOVQlOcVsFFmn-IVINgolqlM,4352
202
+ ansys/fluent/core/streaming_services/transcript_streaming.py,sha256=u9AzqnHIZAmm5jt-M0SAViZaKDaCSvOXs8uEjQ0MzP4,4759
203
+ ansys/fluent/core/utils/__init__.py,sha256=YrYSt5sBXuAs7uxOL-3_L1I_h7ZMU_B9a8m_NjAhx3Y,2257
204
+ ansys/fluent/core/utils/data_transfer.py,sha256=r2vdIQSrq3HAzb82nyP4DgRpzxhOsdzwE0ophuMI5TI,7594
205
+ ansys/fluent/core/utils/deprecate.py,sha256=ILHgzJvXEAllyoi0r6q2JTE6eGHgyCmh8Ispc7IrO2M,4048
206
+ ansys/fluent/core/utils/dictionary_operations.py,sha256=cYy8RuSB2z72roD6dwLgTbhe2b8VNuJ2vDbMypq271I,1827
207
+ ansys/fluent/core/utils/dump_session_data.py,sha256=CqlJN_w_9NLPXdNEDqL09GGW1LFoz4Vy7ymKqDJ3ark,6885
208
+ ansys/fluent/core/utils/event_loop.py,sha256=3fxwG3xjhOmVctR10sUbJjDO0IjRvJLWpVoX4gcAglU,1737
209
+ ansys/fluent/core/utils/execution.py,sha256=tXkTJ-2va1bU3MyxQIICALgpUFoJOApg4T6jdT66tUw,6680
210
+ ansys/fluent/core/utils/file_transfer_service.py,sha256=aXoU4SDAGlCVGkDMufNi2COS0CSbA-r-twlkAuBGCOk,22016
211
+ ansys/fluent/core/utils/fix_doc.py,sha256=2FcRtBKzTnz3YBS-4698kvmbstlYTTPdrdTO1aKLq5k,2733
212
+ ansys/fluent/core/utils/fldoc.py,sha256=q0qmq_RDfxUqP5EuSnE3yRNgyEavsOdGYBaIrZ0iTq8,2270
213
+ ansys/fluent/core/utils/fluent_version.py,sha256=NGa9olfPj0ZSJE25fooVZbUKHiWbXPu5_Y518FhNYG4,5334
214
+ ansys/fluent/core/utils/networking.py,sha256=hrZi4WgUSKGwV3iJBAK3tOaS4XLs4Nfs63fOwWvwM6I,4428
215
+ ansys/fluent/core/utils/setup_for_fluent.py,sha256=kgRIB40Fs0tx6Nup5LGhVIu63lX9CYzGx6TkgmJfZBw,2031
216
+ ansys_fluent_core-0.29.0.dist-info/LICENSE,sha256=5w5etzTlBx3bnQfaa3IXMnV4n9cHCJn4bD5XbiUfCbY,1097
217
+ ansys_fluent_core-0.29.0.dist-info/WHEEL,sha256=CpUCUxeHQbRN5UGRQHYRJorO5Af-Qy_fHMctcQ8DSGI,82
218
+ ansys_fluent_core-0.29.0.dist-info/METADATA,sha256=dbuYaAGSmyWHrSpEeWaKzXJP2tggGpMWy7DhNkR-2U0,9483
219
+ ansys_fluent_core-0.29.0.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: poetry-core 1.9.1
2
+ Generator: flit 3.10.1
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
@@ -1,155 +0,0 @@
1
- PyFluent
2
- ========
3
- |pyansys| |python| |pypi| |GH-CI| |codecov| |MIT| |black| |pre-commit|
4
-
5
- .. |pyansys| image:: https://img.shields.io/badge/Py-Ansys-ffc107.svg?logo=data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAIAAACQkWg2AAABDklEQVQ4jWNgoDfg5mD8vE7q/3bpVyskbW0sMRUwofHD7Dh5OBkZGBgW7/3W2tZpa2tLQEOyOzeEsfumlK2tbVpaGj4N6jIs1lpsDAwMJ278sveMY2BgCA0NFRISwqkhyQ1q/Nyd3zg4OBgYGNjZ2ePi4rB5loGBhZnhxTLJ/9ulv26Q4uVk1NXV/f///////69du4Zdg78lx//t0v+3S88rFISInD59GqIH2esIJ8G9O2/XVwhjzpw5EAam1xkkBJn/bJX+v1365hxxuCAfH9+3b9/+////48cPuNehNsS7cDEzMTAwMMzb+Q2u4dOnT2vWrMHu9ZtzxP9vl/69RVpCkBlZ3N7enoDXBwEAAA+YYitOilMVAAAAAElFTkSuQmCC
6
- :target: https://docs.pyansys.com/
7
- :alt: PyAnsys
8
-
9
- .. |python| image:: https://img.shields.io/pypi/pyversions/ansys-fluent-core?logo=pypi
10
- :target: https://pypi.org/project/ansys-fluent-core/
11
- :alt: Python
12
-
13
- .. |pypi| image:: https://img.shields.io/pypi/v/ansys-fluent-core.svg?logo=python&logoColor=white
14
- :target: https://pypi.org/project/ansys-fluent-core
15
- :alt: PyPI
16
-
17
- .. |GH-CI| image:: https://github.com/ansys/pyfluent/actions/workflows/ci.yml/badge.svg
18
- :target: https://github.com/ansys/pyfluent/actions/workflows/ci.yml
19
- :alt: GH-CI
20
-
21
- .. |codecov| image:: https://codecov.io/gh/ansys/pyfluent/branch/main/graph/badge.svg
22
- :target: https://codecov.io/gh/ansys/pyfluent
23
-
24
- .. |MIT| image:: https://img.shields.io/badge/License-MIT-yellow.svg
25
- :target: https://opensource.org/licenses/MIT
26
- :alt: MIT
27
-
28
- .. |black| image:: https://img.shields.io/badge/code%20style-black-000000.svg?style=flat
29
- :target: https://github.com/psf/black
30
- :alt: Black
31
-
32
- .. |pre-commit| image:: https://results.pre-commit.ci/badge/github/ansys/pyfluent/main.svg
33
- :target: https://results.pre-commit.ci/latest/github/ansys/pyfluent/main
34
- :alt: pre-commit.ci status
35
-
36
- Overview
37
- --------
38
- PyFluent provides Pythonic access to Ansys Fluent. Its features enable the seamless use of
39
- Fluent within the Python ecosystem and broad access to native Fluent features, including the
40
- ability to:
41
-
42
- - Launch Fluent using a local Ansys installation
43
- - Use Fluent's TUI (text user interface) commands for both meshing and solver features
44
- - Use Fluent's built-in postprocessing capabilities
45
-
46
- Documentation and issues
47
- ------------------------
48
- Documentation for the latest stable release of PyFluent is hosted at
49
- `PyFluent documentation <https://fluent.docs.pyansys.com/version/stable/>`_.
50
-
51
- In the upper right corner of the documentation's title bar, there is an option for switching from
52
- viewing the documentation for the latest stable release to viewing the documentation for the
53
- development version or previously released versions.
54
-
55
- You can also `view <https://cheatsheets.docs.pyansys.com/pyfluent_cheat_sheet.png>`_ or
56
- `download <https://cheatsheets.docs.pyansys.com/pyfluent_cheat_sheet.pdf>`_ the
57
- PyFluent cheat sheet. This one-page reference provides syntax rules and commands
58
- for using PyFluent.
59
-
60
- On the `PyFluent Issues <https://github.com/ansys/pyfluent/issues>`_ page, you can create
61
- issues to report bugs and request new features. On the `PyFluent Discussions
62
- <https://github.com/ansys/pyfluent/discussions>`_ page or the `Discussions <https://discuss.ansys.com/>`_
63
- page on the Ansys Developer portal, you can post questions, share ideas, and get community feedback.
64
-
65
- To reach the project support team, email `pyansys.core@ansys.com <pyansys.core@ansys.com>`_.
66
-
67
- Installation
68
- ------------
69
- The ``ansys-fluent-core`` package supports Python 3.9 through Python
70
- 3.13 on Windows and Linux.
71
-
72
- Install the latest release from `PyPI
73
- <https://pypi.org/project/ansys-fluent-core/>`_ with:
74
-
75
- .. code:: console
76
-
77
- pip install ansys-fluent-core
78
-
79
- For developers
80
- --------------
81
- If you plan on doing local *development* of PyFluent with Git, install
82
- the latest release with:
83
-
84
- .. code:: console
85
-
86
- git clone https://github.com/ansys/pyfluent.git
87
- cd pyfluent
88
- pip install pip -U
89
- pip install -e .
90
- python codegen/allapigen.py # Generates the API files
91
-
92
- Dependencies
93
- ------------
94
- You must have a licensed copy of Ansys Fluent installed locally. PyFluent
95
- supports Fluent 2022 R2 and later. The Windows installation of Ansys Fluent automatically
96
- sets the required environment variables so that PyFluent can find the Ansys Fluent
97
- installation. Using Fluent 2023 R2 (or 23.2) installed in the default directory as an
98
- example, the installer automatically sets the ``AWP_ROOT232`` environment variable to point
99
- to ``C:\Program Files\ANSYS Inc\v232``.
100
-
101
- On Linux, the required environment variable is not set automatically, and can be set for the
102
- current user in the current shell session, using Fluent 2023 R2 in the default installation
103
- directory as an example, before running PyFluent, with:
104
-
105
- .. code:: console
106
-
107
- export AWP_ROOT232=/usr/ansys_inc/v232
108
-
109
- For this setting to persist between different shell sessions for the current user, the same
110
- export command can instead be added to the user's ``~/.profile`` file.
111
-
112
- Getting started
113
- ---------------
114
-
115
- Launching Fluent
116
- ~~~~~~~~~~~~~~~~
117
- To launch Fluent from Python, use the ``launch_fluent`` function:
118
-
119
- .. code:: python
120
-
121
- import ansys.fluent.core as pyfluent
122
- solver_session = pyfluent.launch_fluent(mode="solver")
123
- solver_session.health_check.is_serving
124
-
125
- Basic usage
126
- ~~~~~~~~~~~
127
- You can use the ``solver_session.tui`` interface to run all Fluent TUI commands:
128
-
129
- .. code:: python
130
-
131
- solver_session.tui.file.read_case('elbow.cas.h5')
132
- solver_session.tui.define.models.unsteady_2nd_order("yes")
133
- solver_session.tui.solve.initialize.initialize_flow()
134
- solver_session.tui.solve.dual_time_iterate(2, 3)
135
-
136
- You can also install and use these PyFluent libraries:
137
-
138
- - `PyFluent Parametric <https://parametric.fluent.docs.pyansys.com/>`_, which provides
139
- access to Fluent's parametric workflows.
140
- - `PyFluent Visualization <https://visualization.fluent.docs.pyansys.com/>`_, which
141
- provides postprocessing and visualization capabilities using the `pyvista <https://docs.pyvista.org/>`_
142
- and `matplotlib <https://matplotlib.org/>`_ packages.
143
-
144
- License and acknowledgments
145
- ---------------------------
146
- PyFluent is licensed under the MIT license.
147
-
148
- PyFluent makes no commercial claim over Ansys whatsoever. This library
149
- extends the functionality of Ansys Fluent by adding a Python interface
150
- to Fluent without changing the core behavior or license of the original
151
- software. The use of the interactive Fluent control of PyFluent requires a
152
- legally licensed local copy of Fluent.
153
-
154
- For more information on Fluent, see the `Ansys Fluent <https://www.ansys.com/products/fluids/ansys-fluent>`_
155
- page on the Ansys website.