Skip to main content

Data Processing Framework - Python Core

Project description

DPF - Ansys Data Processing Framework

PyAnsys Python pypi freq-PyDPF-Core GH-CI docs MIT pypidl cov codacy

Ansys Data Processing Framework (DPF) provides numerical simulation users and engineers with a toolbox for accessing and transforming simulation data. With DPF, you can perform complex preprocessing or postprocessing of large amounts of simulation data within a simulation workflow.

DPF is an independent, physics-agnostic tool that you can plug into many apps for both data input and data output, including visualization and result plots. It can access data from solver result files and other neutral formats, such as CSV, HDF5, and VTK files.

The latest version of DPF supports Ansys solver results files for:

  • Mechanical APDL (.rst, .mode, .rfrq, .rdsp, .rth)
  • LS-DYNA (.d3plot, .binout)
  • Fluent (.cas/dat.h5, .flprj)
  • CFX (.cas/dat.cff, .flprj, .res)

For more information on file support, see the main page in the PyDPF-Core documentation.

Using the many DPF operators that are available, you can manipulate and transform this data. You can also chain operators together to create simple or complex data-processing workflows that you can reuse for repeated or future evaluations.

The data in DPF is defined based on physics-agnostic mathematical quantities described in self-sufficient entities called fields. This allows DPF to be a modular and easy-to-use tool with a large range of capabilities.

DPF flow

The ansys.dpf.core package provides a Python interface to DPF, enabling rapid postprocessing of a variety of Ansys file formats and physics solutions without ever leaving the Python environment.

Documentation and issues

Documentation for the latest stable release of PyDPF-Core is hosted at PyDPF-Core documentation.

In the upper right corner of the documentation's title bar, there is an option for switching from viewing the documentation for the latest stable release to viewing the documentation for the development version or previously released versions.

You can also view or download the PyDPF-Core cheat sheet. This one-page reference provides syntax rules and commands for using PyDPF-Core.

On the PyDPF-Core Issues page, you can create issues to report bugs and request new features. On the PyDPF-Core Discussions page or the Discussions page on the Ansys Developer portal, you can post questions, share ideas, and get community feedback.

To reach the project support team, email pyansys.core@ansys.com.

Installation

PyDPF-Core requires DPF to be available. You can either have a compatible Ansys version installed or install the standalone ansys-dpf-server server package. For more information, see Getting Started with DPF Server in the PyDPF-Core documentation.

For the compatibility between PyDPF-Core and Ansys, see Compatibility in the PyDPF-Core documentation.

To use PyDPF-Core with the ansys-dpf-server server package or with Ansys 2022 R2 or later, install the latest version with this command:

   pip install ansys-dpf-core

PyDPF-Core plotting capabilities require PyVista <https://pyvista.org/>_ to be installed. To install PyDPF-Core with its optional plotting functionalities, use this command:

   pip install ansys-dpf-core[graphics]

For more information on PyDPF-Core plotting capabilities, see Plot in the PyDPF-Core documentation.

To use PyDPF-Core with Ansys 2022 R1, install the latest compatible version with this command:

   pip install ansys-dpf-core<0.10.0

To use PyDPF-Core with Ansys 2021 R2, install the latest compatible version with this command:

   pip install ansys-grpc-dpf<0.4.0; pip install ansys-dpf-core<0.10.0

To use PyDPF-Core with Ansys 2021 R1, install the latest compatible version with this command:

   pip install ansys-grpc-dpf<0.3.0; pip install ansys-dpf-core<0.3.0

Brief demo

Provided you have DPF available, a DPF server automatically starts once you start using PyDPF-Core.

To open a result file and explore what's inside, use this code:

>>> from ansys.dpf import core as dpf
>>> from ansys.dpf.core import examples
>>> model = dpf.Model(examples.find_simple_bar())
>>> print(model)

    DPF Model
    ------------------------------
    Static analysis
    Unit system: Metric (m, kg, N, s, V, A)
    Physics Type: Mechanical
    Available results:
         -  displacement: Nodal Displacement
         -  element_nodal_forces: ElementalNodal Element nodal Forces
         -  elemental_volume: Elemental Volume
         -  stiffness_matrix_energy: Elemental Energy-stiffness matrix
         -  artificial_hourglass_energy: Elemental Hourglass Energy
         -  thermal_dissipation_energy: Elemental thermal dissipation energy
         -  kinetic_energy: Elemental Kinetic Energy
         -  co_energy: Elemental co-energy
         -  incremental_energy: Elemental incremental energy
         -  structural_temperature: ElementalNodal Temperature
    ------------------------------
    DPF  Meshed Region: 
      3751 nodes 
      3000 elements 
      Unit: m 
      With solid (3D) elements
    ------------------------------
    DPF  Time/Freq Support: 
      Number of sets: 1 
    Cumulative     Time (s)       LoadStep       Substep         
    1              1.000000       1              1               

Read a result with this command:

>>> result = model.results.displacement.eval()

Then, start connecting operators with this code:

>>> from ansys.dpf.core import operators as ops
>>> norm = ops.math.norm(model.results.displacement())

Starting the service

The ansys.dpf.core library automatically starts a local instance of the DPF service in the background and connects to it. If you need to connect to an existing remote or local DPF instance, use the connect_to_server method:

>>> from ansys.dpf import core as dpf
>>> dpf.connect_to_server(ip='10.0.0.22', port=50054)

Once connected, this connection remains for the duration of the module. It closes when you exit Python or connect to a different server.

License and acknowledgments

PyDPF-Core is licensed under the MIT license. For more information, see the LICENSE file.

PyDPF-Core makes no commercial claim over Ansys whatsoever. This library extends the functionality of Ansys DPF by adding a Python interface to DPF without changing the core behavior or license of the original software.

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

ansys_dpf_core-0.14.1-py3-none-win_amd64.whl (7.7 MB view details)

Uploaded Python 3Windows x86-64

ansys_dpf_core-0.14.1-py3-none-manylinux_2_17_x86_64.whl (13.5 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ x86-64

ansys_dpf_core-0.14.1-py3-none-manylinux1_x86_64.whl (13.5 MB view details)

Uploaded Python 3

ansys_dpf_core-0.14.1-py3-none-any.whl (2.6 MB view details)

Uploaded Python 3

File details

Details for the file ansys_dpf_core-0.14.1-py3-none-win_amd64.whl.

File metadata

File hashes

Hashes for ansys_dpf_core-0.14.1-py3-none-win_amd64.whl
Algorithm Hash digest
SHA256 4b58efab6b508e417aa482f06be3670fcce5e416ecde1c8667fe977de53e3d09
MD5 4559dd3d24f0c68d6ee3dfe02eed912b
BLAKE2b-256 89a4b50dd898bad9d20a494555add6dc8ae41761975016e14d929262e4f0d386

See more details on using hashes here.

File details

Details for the file ansys_dpf_core-0.14.1-py3-none-manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for ansys_dpf_core-0.14.1-py3-none-manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 965aba04f3971de3228cd3dea1dd814b4084adb070790ace6da0523ff9a04d91
MD5 953d67533bc519a9beb87d205a3f3985
BLAKE2b-256 a24f086d508ff2a01adcaedf8aa826a514283596a1e46dc7f7cd3e37a075d108

See more details on using hashes here.

File details

Details for the file ansys_dpf_core-0.14.1-py3-none-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for ansys_dpf_core-0.14.1-py3-none-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 0e8614acd69f91ea7ff200d0d151364c7698e7250c38be06c98f7bbfc7e2dbae
MD5 2412002dc2fd703f17a8a559ceddecb6
BLAKE2b-256 6c2e349ee1fe6052767f4fedc2d59546984ec77a115704840ca754977dc97409

See more details on using hashes here.

File details

Details for the file ansys_dpf_core-0.14.1-py3-none-any.whl.

File metadata

File hashes

Hashes for ansys_dpf_core-0.14.1-py3-none-any.whl
Algorithm Hash digest
SHA256 be188b8a476bc7cd3129ec13c028e996483803d4a15ad3d7e65b4f613c73f840
MD5 ab2e6e13815b9e295b55e4bc4e6e52bc
BLAKE2b-256 76662f3e71f59f527c2d2491b60252caca7ac3b749f0ff1438e5703b267fd375

See more details on using hashes here.

Supported by

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