Skip to content

Commit 28844ff

Browse files
committed
Update the documentation on operators
1 parent 96c2e95 commit 28844ff

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

doc/source/user_guide/operators.rst

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,16 +56,19 @@ The library of DPF operators is large and includes file readers and mathematical
5656
geometrical, and logical transformations. For more information on this library,
5757
which is progressively enhanced, see :ref:`ref_dpf_operators_reference`.
5858

59+
Despite the large number of operators proposed by the standard DPF installation, you may want to
60+
create your own operators and ship them as DPF plugins.
61+
See the tutorials section on custom operators and plugins to learn more.
5962

60-
Create operators
61-
~~~~~~~~~~~~~~~~
62-
Each operator is of type :py:mod:`Operator <ansys.dpf.core.dpf_operator>`. You can create an instance
63+
Instantiate operators
64+
~~~~~~~~~~~~~~~~~~~~~
65+
Each operator is of type :py:mod:`Operator <ansys.dpf.core.dpf_operator>`. You can instantiate an operator
6366
in Python with any of the derived classes available in the
6467
:py:mod:`ansys.dpf.core.operators` package or directly with the :py:mod:`Operator <ansys.dpf.core.dpf_operator>`
6568
class using the internal name string that indicates the operator type.
6669
For more information, see :ref:`ref_dpf_operators_reference`.
6770

68-
This example shows how to create the displacement operator:
71+
This example shows how to instantiate the displacement operator:
6972

7073
.. code-block:: python
7174

0 commit comments

Comments
 (0)