Skip to content

Commit

Permalink
Add contact result properties (#1961)
Browse files Browse the repository at this point in the history
* Add contact result properties
  • Loading branch information
janvonrickenbach authored Dec 17, 2024
1 parent 2d59625 commit 4fcf544
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/ansys/dpf/core/available_result.py
Original file line number Diff line number Diff line change
Expand Up @@ -313,6 +313,18 @@ def qualifier_combinations(self) -> List[dict]:
"TF": {"location": "ElementalNodal", "scripting_name": "heat_flux"},
"UTOT": {"location": "Nodal", "scripting_name": "raw_displacement"},
"RFTOT": {"location": "Nodal", "scripting_name": "raw_reaction_force"},
"ECT_STAT": {"location": "ElementalNodal", "scripting_name": "contact_status"},
"ECT_PRES": {"location": "ElementalNodal", "scripting_name": "contact_pressure"},
"ECT_PENE": {"location": "ElementalNodal", "scripting_name": "contact_penetration"},
"ECT_SLIDE": {"location": "ElementalNodal", "scripting_name": "contact_sliding_distance"},
"ECT_GAP": {"location": "ElementalNodal", "scripting_name": "contact_gap_distance"},
"ECT_SFRIC": {"location": "ElementalNodal", "scripting_name": "contact_friction_stress"},
"ECT_STOT": {"location": "ElementalNodal", "scripting_name": "contact_total_stress"},
"ECT_FRES": {
"location": "ElementalNodal",
"scripting_name": "contact_fluid_penetration_pressure",
},
"ECT_FLUX": {"location": "ElementalNodal", "scripting_name": "contact_surface_heat_flux"},
}


Expand Down

0 comments on commit 4fcf544

Please sign in to comment.