Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 12 additions & 5 deletions doc/source/_static/dpf_operators.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions src/ansys/dpf/core/operator_specification.py
Original file line number Diff line number Diff line change
Expand Up @@ -347,9 +347,9 @@ def description(self) -> str:
Examples
--------
>>> from ansys.dpf import core as dpf
>>> operator = dpf.operators.math.scale_by_field()
>>> operator = dpf.operators.math.scale()
>>> operator.specification.description
"Scales a field (in 0) by a scalar field (in 1). If one field's ..."
'Scales a field by a constant factor. This factor can be a scalar ...'
"""
if self._internal_obj is not None:
return self._api.operator_specification_get_description(self)
Expand Down
2 changes: 2 additions & 0 deletions src/ansys/dpf/core/operators/averaging/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
from .elemental_to_elemental_nodal import elemental_to_elemental_nodal
from .elemental_to_elemental_nodal_fc import elemental_to_elemental_nodal_fc
from .elemental_to_nodal import elemental_to_nodal
from .elemental_to_nodal_fc import elemental_to_nodal_fc
from .extend_to_mid_nodes import extend_to_mid_nodes
from .extend_to_mid_nodes_fc import extend_to_mid_nodes_fc
from .force_summation import force_summation
Expand All @@ -20,5 +21,6 @@
from .nodal_to_elemental import nodal_to_elemental
from .nodal_to_elemental_fc import nodal_to_elemental_fc
from .to_elemental_fc import to_elemental_fc
from .to_elemental_nodal_fc import to_elemental_nodal_fc
from .to_nodal import to_nodal
from .to_nodal_fc import to_nodal_fc
Loading
Loading