File tree Expand file tree Collapse file tree 2 files changed +24
-4
lines changed
doc/source/user_guide/tutorials/import_data Expand file tree Collapse file tree 2 files changed +24
-4
lines changed Original file line number Diff line number Diff line change 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+
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments