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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ jobs:
wheelhouse: false
standalone_suffix: ${{needs.pick_server_suffix.outputs.suffix}}
test_any: ${{ matrix.test-any }}
DOCSTRING: ${{ !matrix.test-any }}
DOCSTRING: ${{ matrix.test-any == 'false' }}
secrets: inherit

docker_tests:
Expand Down
1 change: 1 addition & 0 deletions src/ansys/dpf/core/field.py
Original file line number Diff line number Diff line change
Expand Up @@ -543,6 +543,7 @@ def plot(
>>> fields_container = disp.outputs.fields_container()
>>> field = fields_container[0]
>>> mesh.plot(field)
(None, <pyvista.plotting.plotter.Plotter ...>)

Parameters
----------
Expand Down
1 change: 1 addition & 0 deletions src/ansys/dpf/core/meshed_region.py
Original file line number Diff line number Diff line change
Expand Up @@ -586,6 +586,7 @@ def plot(
>>> disp = model.results.displacement()
>>> field = disp.outputs.fields_container()[0]
>>> model.metadata.meshed_region.plot(field)
(None, <pyvista.plotting.plotter.Plotter ...>)

"""
if field_or_fields_container is not None:
Expand Down
1 change: 1 addition & 0 deletions src/ansys/dpf/core/meshes_container.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ def plot(self, fields_container=None, deform_by=None, scale_factor=1.0, **kwargs
... )
>>> disp_fc = disp_op.outputs.fields_container()
>>> meshes_cont.plot(disp_fc)
(None, <pyvista.plotting.plotter.Plotter ...>)

"""
# DPF defaults
Expand Down
1 change: 1 addition & 0 deletions src/ansys/dpf/core/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -254,6 +254,7 @@ def plot(self, color="w", show_edges=True, **kwargs):
>>> transient = examples.download_transient_result()
>>> model = Model(transient)
>>> model.plot()
(None, <pyvista.plotting.plotter.Plotter ...>)

"""
from ansys.dpf.core.plotter import DpfPlotter
Expand Down
Loading