Skip to content

Commit bdda2ee

Browse files
pyansys-ci-botrlaghaPProfizi
authored
Update generated code for DPF 251_daily on master (#1837)
* 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]>
1 parent 5c3eb1c commit bdda2ee

25 files changed

+1720
-52
lines changed

doc/source/_static/dpf_operators.html

Lines changed: 12 additions & 5 deletions
Large diffs are not rendered by default.

src/ansys/dpf/core/operator_specification.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -347,9 +347,9 @@ def description(self) -> str:
347347
Examples
348348
--------
349349
>>> from ansys.dpf import core as dpf
350-
>>> operator = dpf.operators.math.scale_by_field()
350+
>>> operator = dpf.operators.math.scale()
351351
>>> operator.specification.description
352-
"Scales a field (in 0) by a scalar field (in 1). If one field's ..."
352+
'Scales a field by a constant factor. This factor can be a scalar ...'
353353
"""
354354
if self._internal_obj is not None:
355355
return self._api.operator_specification_get_description(self)

src/ansys/dpf/core/operators/averaging/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
from .elemental_to_elemental_nodal import elemental_to_elemental_nodal
1111
from .elemental_to_elemental_nodal_fc import elemental_to_elemental_nodal_fc
1212
from .elemental_to_nodal import elemental_to_nodal
13+
from .elemental_to_nodal_fc import elemental_to_nodal_fc
1314
from .extend_to_mid_nodes import extend_to_mid_nodes
1415
from .extend_to_mid_nodes_fc import extend_to_mid_nodes_fc
1516
from .force_summation import force_summation
@@ -20,5 +21,6 @@
2021
from .nodal_to_elemental import nodal_to_elemental
2122
from .nodal_to_elemental_fc import nodal_to_elemental_fc
2223
from .to_elemental_fc import to_elemental_fc
24+
from .to_elemental_nodal_fc import to_elemental_nodal_fc
2325
from .to_nodal import to_nodal
2426
from .to_nodal_fc import to_nodal_fc

0 commit comments

Comments
 (0)