Skip to content

Commit 570322f

Browse files
updates the images ref path
1 parent 115d64e commit 570322f

File tree

3 files changed

+16
-16
lines changed

3 files changed

+16
-16
lines changed

doc/source/user_guide/concepts/concepts.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ Concept summary
6767
---------------
6868
This image summarizes the preceding concepts:
6969

70-
.. image:: ../images/drawings/field-breakdown.png
70+
.. image:: ../../images/drawings/field-breakdown.png
7171

7272

7373
Operators
@@ -79,7 +79,7 @@ You use :ref:`ref_dpf_operators_reference` to create, transform, and stream the
7979
- The input and output pins, like those in an integrated circuit in electronics,
8080
submit data to the operator and output the computed result from the operator.
8181

82-
.. image:: ../images/drawings/OperatorPins.png
82+
.. image:: ../../images/drawings/OperatorPins.png
8383

8484
Workflows
8585
---------
@@ -90,10 +90,10 @@ to operators, which computes requested outputs.
9090
Think of a workflow as a black box in which some operators are chained,
9191
computing the information for which the workflow is made:
9292

93-
.. image:: ../images/drawings/Workflow1.png
93+
.. image:: ../../images/drawings/Workflow1.png
9494

9595
The following image shows operators that have been chained together to create a
9696
total deformation workflow. You can use this workflow in any simulation
9797
workflow with any data sources as inputs.
9898

99-
.. image:: ../images/drawings/Workflow2.png
99+
.. image:: ../../images/drawings/Workflow2.png

doc/source/user_guide/concepts/stepbystep.rst

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -53,11 +53,11 @@ Define fields
5353
A **field** is a container of simulation data. In numerical simulations,
5454
result data is defined by values associated with entities:
5555

56-
.. image:: ../images/drawings/values-entities.png
56+
.. image:: ../../images/drawings/values-entities.png
5757

5858
Therefore, a field of data might look something like this:
5959

60-
.. image:: ../images/drawings/field.png
60+
.. image:: ../../images/drawings/field.png
6161

6262
This code shows how to define a field from scratch:
6363

@@ -83,7 +83,7 @@ be a set of mesh IDs, geometric entity IDs, time domain, or frequency domain.
8383

8484
You specify the set of entities by defining a range of IDs:
8585

86-
.. image:: ../images/drawings/scoping-eg.png
86+
.. image:: ../../images/drawings/scoping-eg.png
8787

8888
You must define a scoping prior to its use in the transformation data workflow.
8989

@@ -109,13 +109,13 @@ A **field container** holds a set of fields. It is used mainly for
109109
transient, harmonic, modal, or multi-step analyses. This image
110110
explains its structure:
111111

112-
.. image:: ../images/drawings/field-con-overview.png
112+
.. image:: ../../images/drawings/field-con-overview.png
113113

114114
A field container is a vector of fields. Fields are ordered with labels
115115
and IDs. Most commonly, a field container is scoped on the time label,
116116
and the IDs are the time or frequency sets:
117117

118-
.. image:: ../images/drawings/field-con.png
118+
.. image:: ../../images/drawings/field-con.png
119119

120120
You can define a field container in multiple ways:
121121

@@ -162,14 +162,14 @@ An operator takes input from a field, field container, or scoping using
162162
an input pin. Based on what it is designed to do, the operator computes
163163
an output that it passes to a field or field container using an output pin.
164164

165-
.. image:: ../images/drawings/circuit.png
165+
.. image:: ../../images/drawings/circuit.png
166166

167167
Comprehensive information on operators is available in :ref:`ref_dpf_operators_reference`.
168168
In the **Available Operators** area for either the **Entry** or **Premium** operators,
169169
you can either type a keyword in the **Search** option
170170
or browse by operator categories:
171171

172-
.. image:: ../images/drawings/help-operators.png
172+
.. image:: ../../images/drawings/help-operators.png
173173

174174
The page for each operator describes how the operator transforms data,
175175
indicates input and output data, and provides usage examples.
@@ -185,7 +185,7 @@ Defining an operator consists of three steps:
185185
This image shows how the page for an operator provides a usage example for each available
186186
language (IronPython, CPython, and C++).
187187

188-
.. image:: ../images/drawings/operator-def.png
188+
.. image:: ../../images/drawings/operator-def.png
189189

190190
This code shows how to define an operator from a model:
191191

@@ -210,7 +210,7 @@ the input to another operator.
210210
This image shows how you would get the norm of a resulting vector from the
211211
dot product of two vectors:
212212

213-
.. image:: ../images/drawings/connect-operators.png
213+
.. image:: ../../images/drawings/connect-operators.png
214214

215215
This code shows how to define a generic workflow that computes the minimum
216216
of displacement by chaining the ``U`` and ``min_max_fc`` operators:

doc/source/user_guide/concepts/waysofusing.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ enabled using the DPF Server application.
2929
These capabilities can be accessed through client APIs, as shown here:
3030

3131

32-
.. image:: ../images/drawings/apis_2.png
32+
.. image:: ../../images/drawings/apis_2.png
3333

3434

3535
1. DPF server application can be accessed using Ansys Inc product, or DPF Server package (see :ref:`ref_dpf_server`) available on the Customer portal.
@@ -71,12 +71,12 @@ files. You can use it to generate TH-plots, screenshots, and animations or
7171
to create custom result plots using the `numpy <https://numpy.org/>`_
7272
and `matplotlib <https://matplotlib.org/>`_ packages.
7373

74-
.. image:: ../images/drawings/dpf-reports.png
74+
.. image:: ../../images/drawings/dpf-reports.png
7575

7676
Mechanical
7777
~~~~~~~~~~
7878
**DPF in Mechanical** uses IronPython and is accessible with the **ACT Console**.
7979
Use it to perform custom postprocessing and visualization of results directly
8080
within the Mechanical application.
8181

82-
.. image:: ../images/drawings/dpf-mech.png
82+
.. image:: ../../images/drawings/dpf-mech.png

0 commit comments

Comments
 (0)