Skip to content

Commit 9f3b19c

Browse files
committed
Merge branch 'master' into mnale/min_version_doc_meshinfo
2 parents 0d0f0af + 5b091f5 commit 9f3b19c

File tree

3 files changed

+39
-10
lines changed

3 files changed

+39
-10
lines changed

docs/source/getting_started/index.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ Getting started
66

77
The Data Processing Framework (DPF) provides numerical simulation users and engineers with a toolbox
88
for accessing and transforming simulation data. DPF can access data from Ansys solver
9-
result (RST) files as well as from several neutral file formats, including CSV, HDF5, and VTK.
9+
result files as well as from several neutral (see :ref:`ref_main_index`).
10+
1011
This **workflow-based** framework allows you to perform complex preprocessing and
1112
postprocessing operations on large amounts of simulation data.
1213

docs/source/index.rst

Lines changed: 35 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
.. _ref_main_index:
2+
13
==========
24
PyDPF-Core
35
==========
@@ -9,8 +11,39 @@ large amounts of simulation data within a simulation workflow.
911

1012
DPF is an independent, physics-agnostic tool that you can plug into many
1113
apps for both data input and data output, including visualization and
12-
result plots. It can access data from solver result files and other neutral
13-
formats, such as CSV, HDF5, and VTK files.
14+
result plots. The following table shows an exhaustive list of supported
15+
apps by DPF and their related format:
16+
17+
.. table:: Truth table for "not"
18+
:widths: auto
19+
:align: center
20+
21+
+--------------------+------------------------+----------------------------------+----------------------------------+
22+
| **Solver** | **File format** | **Server version** | **DPF examples** |
23+
+====================+========================+==================================+==================================+
24+
| || .rst, .mode || **1.0** and later | :ref:`ref_basic_example` |
25+
| MAPDL || .rfrq, .rdsp || (*Ansys 2021 R1*) | |
26+
+--------------------+------------------------+----------------------------------+----------------------------------+
27+
| LS DYNA | .d3plot, .binout || **4.0** and later | :ref:`lsdyna_operators` |
28+
| | || (*Ansys 2022 R2*) | |
29+
+--------------------+------------------------+----------------------------------+----------------------------------+
30+
| || *CFF restart files* || | :ref:`ref_fluids_model` |
31+
| || .cas/dat.h5 || +----------------------------------+
32+
| | || **7.0** and later | :ref:`ref_fluids_mesh` |
33+
| Fluent +------------------------+| (*Ansys 2024 R1 pre0*) +----------------------------------+
34+
| || *Project files* | | :ref:`ref_fluids_results` |
35+
| || .flprj | | |
36+
+--------------------+------------------------+----------------------------------+----------------------------------+
37+
| || *CFF files* || | :ref:`ref_fluids_model` |
38+
| || .cas/dat.cff || +----------------------------------+
39+
| | || **7.0** and later | :ref:`ref_fluids_mesh` |
40+
| CFX +------------------------+| (*Ansys 2024 R1 pre0*) +----------------------------------+
41+
| || *Project files* | | :ref:`ref_fluids_results` |
42+
| || .flprj | | |
43+
+--------------------+------------------------+----------------------------------+----------------------------------+
44+
45+
Visualisation is ensured by VTK and leverage of `PyVista tools
46+
<https://docs.pyvista.org>`_.
1447

1548
Using the many DPF operators that are available, you can manipulate and
1649
transform this data. You can also chain operators together to create simple
@@ -29,7 +62,6 @@ The ``ansys.dpf.core`` package provides a Python interface to DPF, enabling
2962
rapid postprocessing of a variety of Ansys file formats and physics solutions
3063
without ever leaving the Python environment.
3164

32-
3365
Brief demo
3466
~~~~~~~~~~
3567
Here is how you open a result file generated by MAPDL (or another ANSYS solver)

docs/source/user_guide/operators.rst

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -307,12 +307,8 @@ DPF provides three main types of operators:
307307
Operators for importing or reading data
308308
***************************************
309309

310-
These operators provide for reading data from solver files or from standard file types:
311-
312-
- For MAPDL, supported solver file formats include RST, MODE, RFRQ, and RDSP.
313-
- For LS DYNA, D3PLOT files are supported.
314-
- For Fluent and CFX, CAS.H5, DAT.H5, RES, and FLPRJ files are supported.
315-
- For Abaqus, ODB files are supported.
310+
These operators provide for reading data from solver files or from standard file types
311+
such as .RST (MAPDL), .D3Plot (LS DYNA), .CAS.H5/.DAT.H5 (Fluent) or .CAS.CFF/.DAT.CFF (CFX).
316312

317313
To read these files, different readers are implemented as plugins.
318314
Plugins can be loaded on demand in any DPF scripting language with "load library" methods.

0 commit comments

Comments
 (0)