@@ -53,11 +53,11 @@ Define fields
5353A **field ** is a container of simulation data. In numerical simulations,
5454result data is defined by values associated with entities:
5555
56- .. image :: ../images/drawings/values-entities.png
56+ .. image :: ../../ images/drawings/values-entities.png
5757
5858Therefore, a field of data might look something like this:
5959
60- .. image :: ../images/drawings/field.png
60+ .. image :: ../../ images/drawings/field.png
6161
6262This 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
8484You 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
8888You 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
109109transient, harmonic, modal, or multi-step analyses. This image
110110explains its structure:
111111
112- .. image :: ../images/drawings/field-con-overview.png
112+ .. image :: ../../ images/drawings/field-con-overview.png
113113
114114A field container is a vector of fields. Fields are ordered with labels
115115and IDs. Most commonly, a field container is scoped on the time label,
116116and the IDs are the time or frequency sets:
117117
118- .. image :: ../images/drawings/field-con.png
118+ .. image :: ../../ images/drawings/field-con.png
119119
120120You 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
162162an input pin. Based on what it is designed to do, the operator computes
163163an 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
167167Comprehensive information on operators is available in :ref: `ref_dpf_operators_reference `.
168168In the **Available Operators ** area for either the **Entry ** or **Premium ** operators,
169169you can either type a keyword in the **Search ** option
170170or browse by operator categories:
171171
172- .. image :: ../images/drawings/help-operators.png
172+ .. image :: ../../ images/drawings/help-operators.png
173173
174174The page for each operator describes how the operator transforms data,
175175indicates input and output data, and provides usage examples.
@@ -185,7 +185,7 @@ Defining an operator consists of three steps:
185185This image shows how the page for an operator provides a usage example for each available
186186language (IronPython, CPython, and C++).
187187
188- .. image :: ../images/drawings/operator-def.png
188+ .. image :: ../../ images/drawings/operator-def.png
189189
190190This code shows how to define an operator from a model:
191191
@@ -210,7 +210,7 @@ the input to another operator.
210210This image shows how you would get the norm of a resulting vector from the
211211dot product of two vectors:
212212
213- .. image :: ../images/drawings/connect-operators.png
213+ .. image :: ../../ images/drawings/connect-operators.png
214214
215215This code shows how to define a generic workflow that computes the minimum
216216of displacement by chaining the ``U `` and ``min_max_fc `` operators:
0 commit comments