Skip to content

Commit 0ed5c61

Browse files
authored
Merge branch 'master' into dependabot/pip/requirements/ansys-sphinx-theme-autoapi--1.2.3
2 parents d88be41 + c133af5 commit 0ed5c61

File tree

787 files changed

+800
-787
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

787 files changed

+800
-787
lines changed

doc/source/conf.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,8 @@ def reset_servers(gallery_conf, fname, when):
231231
},
232232
"static_search": {
233233
"threshold": 0.5,
234-
"min_chars_for_search": 2,
234+
"limit": 10,
235+
"minMatchCharLength": 2,
235236
"ignoreLocation": True,
236237
},
237238
"ansys_sphinx_theme_autoapi": {

src/ansys/dpf/core/animator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
"""
2424
Animator
25-
========
25+
2626
This module contains the DPF animator class.
2727
2828
Contains classes used to animate results based on workflows using PyVista.

src/ansys/dpf/core/any.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
.. _ref_any:
2525
2626
Any
27-
====================
27+
2828
"""
2929

3030
import traceback

src/ansys/dpf/core/available_result.py

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
"""
2424
AvailableResult
25-
===============
25+
2626
"""
2727

2828
from typing import List
@@ -313,6 +313,18 @@ def qualifier_combinations(self) -> List[dict]:
313313
"TF": {"location": "ElementalNodal", "scripting_name": "heat_flux"},
314314
"UTOT": {"location": "Nodal", "scripting_name": "raw_displacement"},
315315
"RFTOT": {"location": "Nodal", "scripting_name": "raw_reaction_force"},
316+
"ECT_STAT": {"location": "ElementalNodal", "scripting_name": "contact_status"},
317+
"ECT_PRES": {"location": "ElementalNodal", "scripting_name": "contact_pressure"},
318+
"ECT_PENE": {"location": "ElementalNodal", "scripting_name": "contact_penetration"},
319+
"ECT_SLIDE": {"location": "ElementalNodal", "scripting_name": "contact_sliding_distance"},
320+
"ECT_GAP": {"location": "ElementalNodal", "scripting_name": "contact_gap_distance"},
321+
"ECT_SFRIC": {"location": "ElementalNodal", "scripting_name": "contact_friction_stress"},
322+
"ECT_STOT": {"location": "ElementalNodal", "scripting_name": "contact_total_stress"},
323+
"ECT_FRES": {
324+
"location": "ElementalNodal",
325+
"scripting_name": "contact_fluid_penetration_pressure",
326+
},
327+
"ECT_FLUX": {"location": "ElementalNodal", "scripting_name": "contact_surface_heat_flux"},
316328
}
317329

318330

src/ansys/dpf/core/collection.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
# -*- coding: utf-8 -*-
2424
"""
2525
Collection
26-
===============
26+
2727
"""
2828

2929
from __future__ import annotations

src/ansys/dpf/core/collection_base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
"""
2424
CollectionBase
25-
==============
25+
2626
Contains classes associated with the DPF collection.
2727
2828
"""

src/ansys/dpf/core/common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
"""
2424
Common
25-
======
25+
2626
2727
.. autoclass:: locations
2828
:members:

src/ansys/dpf/core/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
"""
2424
Operator Configuration
25-
======================
25+
2626
"""
2727

2828
import functools

src/ansys/dpf/core/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
"""
2424
Core
25-
====
25+
2626
"""
2727

2828
import os

src/ansys/dpf/core/custom_container_base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
"""
2424
CustomContainerBase
25-
===================
25+
2626
This module contains the `CustomContainerBase` class, which serves as a base
2727
for creating wrappers around `GenericDataContainer` objects.
2828

0 commit comments

Comments
 (0)