A python wrapper for Ansys Fluent parametric workflows
Project description
Overview
PyFluent-Parametric provides Pythonic access to Ansys Fluent’s parametric workflows.
Documentation and issues
For comprehensive information on PyFluent-Parametric, see the latest release documentation.
On the PyFluent-Parametric Issues, you can create issues to submit questions, report bugs, and request new features. To reach the project support team, email pyansys.core@ansys.com.
Installation
The ansys-fluent-parametric package currently supports Python 3.9 through Python 3.11 on Windows and Linux.
Install the latest release from PyPI with:
pip install ansys-fluent-parametric
Alternatively, install the latest from GitHub with:
pip install git+https://github.com/ansys/pyfluent-parametric.git
If you plan on doing local development of PyFluent with Git, install with:
git clone https://github.com/ansys/pyfluent-parametric.git
cd pyfluent-parametric
pip install pip -U
pip install -e .
Dependencies
You must have a locally-installed, licensed copy of Ansys to run Fluent. The first supported version is 2022 R2.
Getting started
Basic usage
The following code assumes that a PyFluent session has already been created and a Fluent case with input parameters has been set up. For a full example, see Defining Parametric Workflows in the PyFluent-Parametric documentation.
import ansys.fluent.core as pyfluent
from ansys.fluent.parametric import ParametricStudy
solver_session = pyfluent.launch_fluent(mode="solver")
study = ParametricStudy(solver_session.parametric_studies)
input_parameters_update = study.design_points["Base DP"].input_parameters
input_parameters_update["inlet1_vel"] = 0.5
study.design_points["Base DP"].input_parameters = input_parameters_update
study.update_current_design_point()
print(study.design_points["Base DP"].output_parameters)
License and acknowledgments
PyFluent-Parametric is licensed under the MIT license.
PyFluent-Parametric makes no commercial claim over Ansys whatsoever. This library extends the functionality of Fluent by adding a Python interface to Fluent without changing the core behavior or license of the original software. The use of the interactive Fluent control of PyFluent-Parametric requires a legally licensed local copy of Fluent.
For more information, see the Ansys Fluent <https://www.ansys.com/products/fluids/ansys-fluent> page on the Ansys website.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file ansys_fluent_parametric-0.10.0.tar.gz
.
File metadata
- Download URL: ansys_fluent_parametric-0.10.0.tar.gz
- Upload date:
- Size: 14.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.9.19
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 40402bc3aea1159d75117746f0593915a242f420c006fbaa9647e53bb6988bae |
|
MD5 | 2ebf8f4e35e27bbbebb4b63d28456361 |
|
BLAKE2b-256 | bf19e42c11f76cc4dd36383356ad921144169851bda783c7766e554d3c0eefb2 |
File details
Details for the file ansys_fluent_parametric-0.10.0-py3-none-any.whl
.
File metadata
- Download URL: ansys_fluent_parametric-0.10.0-py3-none-any.whl
- Upload date:
- Size: 13.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.9.19
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c90988799a760f85a42b2d37a6564af1bb2c30efdacf35b4556effc7f64d7f48 |
|
MD5 | 9da6b9a046543de8a3eef223187270c3 |
|
BLAKE2b-256 | 117f4d72d6849dd5205128d3b9d38828fd16707dd3818a54b434b7fe51c1163c |