Skip to content

Commit

Permalink
Update generated code for DPF 251_daily on master (#1837)
Browse files Browse the repository at this point in the history
* update generated code

* Update failing docstring

Signed-off-by: paul.profizi <[email protected]>

* Update list of hidden operators to build

Signed-off-by: paul.profizi <[email protected]>

* update generated code (#1838)

Co-authored-by: PProfizi <[email protected]>

* Fix docstring in operator_specification.py

Signed-off-by: paul.profizi <[email protected]>

* Fix docstring in operator_specification.py

Signed-off-by: paul.profizi <[email protected]>

---------

Signed-off-by: paul.profizi <[email protected]>
Co-authored-by: rlagha <[email protected]>
Co-authored-by: paul.profizi <[email protected]>
Co-authored-by: PProfizi <[email protected]>
  • Loading branch information
4 people authored Oct 28, 2024
1 parent 5c3eb1c commit bdda2ee
Show file tree
Hide file tree
Showing 25 changed files with 1,720 additions and 52 deletions.
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

0 comments on commit bdda2ee

Please sign in to comment.