Skip to main content

A Python wrapper for Ansys System Coupling.

Project description

pyansys GH-CI MIT black

Overview

PySystemCoupling provides Pythonic access to Ansys System Coupling. Although this Ansys product exposes its own Python-based scripting and command line interface, it is embedded and based on a specific version of Python. In contrast, PySystemCoupling enables seamless use of System Coupling within the Python ecosystem, providing additional capabilities, including:

  • Ability to launch System Coupling using a local Ansys installation

  • Access to APIs to set up and solve coupled analyses

  • Full access to the System Coupling data model via a convenient and Pythonic interface

Installation

Install PySystemCoupling with this command:

pip install ansys-systemcoupling-core

Alternatively, clone and install PySystemCoupling in development mode with this code:

git clone https://github.com/pyansys/pysystem-coupling.git
cd pysystem-coupling
python -m pip install --upgrade pip
pip install -e .
pip install .[classesgen]
python scripts\generate_datamodel.py

Documentation and Issues

For more information, see the Documentation page.

Use the PySystemCoupling Issues page to post bug reports, questions and feature requests.

Usage

It is assumed that an Ansys installation is available and that this installation includes System Coupling and the participant products needed for the coupled analysis.

The System Coupling installation is found by examining the following environment variables in this order:

  • SYSC_ROOT

  • AWP_ROOT

  • AWP_ROOT231

If a variable is set but does not refer to a valid installation, PySystemCoupling fail at that point, rather than attempting to use the next variable.

In a standard user installation, the expectation is that only AWP_ROOT231 is set.

The System Coupling API is exposed to PySystemCoupling in two forms:

  • A documented interface based on concrete Python classes, following Pythonic conventions

  • A dynamic interface, undocumented in PySystemCoupling, that replicates the native System Coupling API

Both forms are strongly related to each other. A key difference in the Pythonic API is that naming is adjusted, in a generally predictable manner, to follow Python conventions. If you are already familiar with System Coupling, adjusting to this form, which is the recommended API, should be easy. However, if you are transitioning existing scripts, the native System Coupling API is made available as a convenience.

This example shows how to set up and solve an oscillating plate example in the Pythonic API. It uses Ansys Fluent as the CFD solver.

import ansys.systemcoupling.core as pysystemcoupling

syc = pysystemcoupling.launch()
setup = syc.setup
setup.add_participant(input_file="mapdl.scp")
setup.add_participant(input_file="fluent.scp")

## Create interfaces and data transfers by specifying participant regions

interface_name = "interface-1"
interface = setup.coupling_interface.create(interface_name)
interface.side["One"].coupling_participant = "MAPDL-1"
interface.side["One"].region_list = ["FSIN_1"]
interface.side["Two"].coupling_participant = "FLUENT-2"
interface.side["Two"].region_list = ["wall_deforming"]

# Use commands to add data transfers
force_transfer_name = setup.add_data_transfer(
    interface=interface_name,
    target_side="One",
    side_one_variable="FORC",
    side_two_variable="force",
)

disp_transfer_name = setup.add_data_transfer(
    interface=interface_name,
    target_side="Two",
    side_one_variable="INCD",
    side_two_variable="displacement",
)

# Change analysis duration and step size
setup.solution_control.time_step_size = "0.1 [s]"
setup.solution_control.end_time = "1.0 [s]"

# Set output control settings
setup.output_control.option = "StepInterval"
setup.output_control.output_frequency = 2

# Start streaming standard output from server
syc.start_output()

# Solve
solution = syc.solution
solution.solve()

The Pythonic API partitions commands via three high-level root attributes of the Session class: setup, solution, and case. The preceding example uses both the setup and solution attributes.

  • The setup attribute is the largest part of the API. It is where you find all commands related to populating the settings that define a coupled analysis. This attribute also provides direct access to the hierarchical data model.

  • The solution attribute is home to commands related to solving an analysis and examining the solution.

  • The case attribute, which is not used in the preceding example, provides all commands related to case file management and persistence.

While the preceding example uses the pysystemcoupling.launch() method to start the System Coupling server, alternatively, the server can be started in advance by calling command line arguments -m cosimgui --grpcport=<host:port> and pysystemcoupling.connect(host, port).

This next example shows how to set up the same analysis using the native System Coupling API. While the code here is less complete than the code shown previously, it should sufficiently illustrate the differences and connections between the two API forms.

import ansys.systemcoupling.core as pysystemcoupling

syc = pysystemcoupling.launch()
native_api = syc._native_api

native_api.AddParticipant(InputFile="mapdl.scp")
native_api.AddParticipant(InputFile="fluent.scp")

interface = native_api.CouplingInterface["interface-1"]
interface.Side["One"].CouplingParticipant = "MAPDL-1"
...

native_api.SolutionControl.TimeStepSize = "0.1 [s]"
...
syc.start_output()
native_api.Solve()

License

PySystemCoupling is licensed under the MIT license.

The ansys-systemcoupling-core package makes no commercial claim over Ansys whatsoever. It extends the functionality of Ansys System Coupling by adding a Python interface to the System Coupling service without changing the core behavior or license of the original software. Interactively controlling System Coupling via PySystemCoupling requires a local copy of System Coupling and licenses for all Ansys products involved in your coupled analysis.

To get a copy of Ansys, visit Ansys.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ansys-systemcoupling-core-0.1.2.tar.gz (78.6 kB view details)

Uploaded Source

Built Distribution

ansys_systemcoupling_core-0.1.2-py3-none-any.whl (126.1 kB view details)

Uploaded Python 3

File details

Details for the file ansys-systemcoupling-core-0.1.2.tar.gz.

File metadata

File hashes

Hashes for ansys-systemcoupling-core-0.1.2.tar.gz
Algorithm Hash digest
SHA256 85cd933de25409d0d0190eae32b0d2b8576a4252c26479103c602e7dc9963355
MD5 4c82eb45426fd16c163ed77d87189ff9
BLAKE2b-256 32de0c18d00d239bed5558eb32ef73d28f9b0042d6c352a8be9169824736e14d

See more details on using hashes here.

File details

Details for the file ansys_systemcoupling_core-0.1.2-py3-none-any.whl.

File metadata

File hashes

Hashes for ansys_systemcoupling_core-0.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 16cb3051e7463d4545a96786c19bd756d1acaa1aba10c7910e03e328f3f28157
MD5 fc911646911a2a8fcd583174c3cbeb84
BLAKE2b-256 0ed76c9df61cf28aa764ba6f082cbc5b6424653421ec366064211fe8ff800880

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page