@@ -59,9 +59,9 @@ which is progressively enhanced, see :ref:`ref_dpf_operators_reference`.
5959
6060Create operators
6161~~~~~~~~~~~~~~~~
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
6363in 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> `
6565class using the internal name string that indicates the operator type.
6666For more information, see :ref: `ref_dpf_operators_reference `.
6767
@@ -123,8 +123,8 @@ results, you must provide paths for the result files.
123123
124124You can create data sources in two ways:
125125
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.
128128
129129
130130Because 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
154154 op.inputs.data_sources(data_src)
155155
156156 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> `
158158can be connected to work on a spatial subset. A ``time_scoping `` of a list of integers
159159can also be connected to work on a temporal subset:
160160
@@ -441,5 +441,5 @@ Python client is not on the same machine as the server:
441441 API reference
442442~~~~~~~~~~~~~
443443For 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