Skip to content

Commit 098d3e1

Browse files
updates
1 parent d198f45 commit 098d3e1

File tree

2 files changed

+24
-4
lines changed

2 files changed

+24
-4
lines changed
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,23 @@
11
.. _ref_tutorials_extract_and_explore_results_data:
22

3+
====================
4+
Explore results data
5+
====================
6+
7+
.. |Field| replace:: :class:`Field<ansys.dpf.core.field.Field>`
8+
.. |Examples| replace:: :mod:`Examples<ansys.dpf.core.examples>`
9+
10+
This tutorial shows how to extract and explore results data from a result file.
11+
12+
When you extract a result from a result file DPF stores it in a |Field|.
13+
This |Field| will then contain the data of the result associated with it.
14+
15+
When DPF-Core returns the |Field| object, what Python actually has is a client-side
16+
representation of the |Field|, not the entirety of the |Field| itself. This means
17+
that all the data of the field is stored within the DPF service. This is important
18+
because when building your workflows, the most efficient way of interacting with result data
19+
is to minimize the exchange of data between Python and DPF, either by using operators
20+
or by accessing exclusively the data that is needed.
21+
22+
23+

doc/source/user_guide/tutorials/import_data/index.rst

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,16 +42,15 @@ From result files
4242
:link-type: ref
4343
:text-align: center
4444

45-
This tutorial shows how to import a result file in DPF
45+
This tutorial shows how to import a result file in DPF.
4646

4747
.. grid-item-card:: Extract and explore results metadata
4848
:link: ref_tutorials_extract_and_explore_results_metadata
4949
:link-type: ref
5050
:text-align: center
5151

52-
This tutorial shows how to extract and explore results metadata (unit,
53-
location, the scoping, the shape of the data stored ... ) extracted
54-
from a result file.
52+
This tutorial shows how to extract and explore results metadata (analysis type,
53+
physics type, unit system ... ) from a result file.
5554

5655
.. grid-item-card:: Extract and explore results data
5756
:link: ref_tutorials_extract_and_explore_results_data

0 commit comments

Comments
 (0)