@@ -59,9 +59,9 @@ which is progressively enhanced, see :ref:`ref_dpf_operators_reference`.
59
59
60
60
Create operators
61
61
~~~~~~~~~~~~~~~~
62
- Each operator is of type :ref: ` ref_operator `. You can create an instance
62
+ Each operator is of type :py:mod: ` Operator <ansys.dpf.core.dpf_operator> `. You can create an instance
63
63
in Python with any of the derived classes available in the
64
- :ref: `ansys.dpf.core.operators package ` or directly with the :ref: ` ref_operator `
64
+ :py:mod: `ansys.dpf.core.operators ` package or directly with the :py:mod: ` Operator <ansys.dpf.core.dpf_operator> `
65
65
class using the internal name string that indicates the operator type.
66
66
For more information, see :ref: `ref_dpf_operators_reference `.
67
67
@@ -123,8 +123,8 @@ results, you must provide paths for the result files.
123
123
124
124
You can create data sources in two ways:
125
125
126
- - Use the :ref: ` ref_model ` class.
127
- - Use the :ref: ` ref_data_sources ` class.
126
+ - Use the :py:mod: ` Model <ansys.dpf.core.model> ` class.
127
+ - Use the :py:mod: ` Data Sources <ansys.dpf.core.data_sources> ` class.
128
128
129
129
130
130
Because several other examples use the ``Model `` class, this example uses the
@@ -154,7 +154,7 @@ This code demonstrates how to connect the data source to the displacement operat
154
154
op.inputs.data_sources(data_src)
155
155
156
156
You can connect other optional inputs to the displacement operator.
157
- The output from printing the operator shows that a ``mesh_scoping `` of type :ref: ` ref_scoping `
157
+ The output from printing the operator shows that a ``mesh_scoping `` of type :py:mod: ` Scoping <ansys.dpf.core.scoping> `
158
158
can be connected to work on a spatial subset. A ``time_scoping `` of a list of integers
159
159
can also be connected to work on a temporal subset:
160
160
@@ -441,5 +441,5 @@ Python client is not on the same machine as the server:
441
441
API reference
442
442
~~~~~~~~~~~~~
443
443
For a list of all operators in DPF, see :ref: `ref_dpf_operators_reference `
444
- or the package :ref: `ansys.dpf.core.operators package `. For more information about the
445
- class itself, see :ref: ` ref_operator `.
444
+ or the package :py:mod: `ansys.dpf.core.operators `. For more information about the
445
+ class itself, see :py:mod: ` Operator <ansys.dpf.core.dpf_operator> `.
0 commit comments