Skip to content

Commit

Permalink
Fix retro with 2025.1.pre0 for test_averaging_per_nodal
Browse files Browse the repository at this point in the history
  • Loading branch information
PProfizi committed Oct 21, 2024
1 parent 523c102 commit 2fb44c1
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions tests/test_simulation.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
SERVERS_VERSION_GREATER_THAN_OR_EQUAL_TO_7_1,
SERVERS_VERSION_GREATER_THAN_OR_EQUAL_TO_8_0,
SERVERS_VERSION_GREATER_THAN_OR_EQUAL_TO_9_0,
SERVERS_VERSION_GREATER_THAN_OR_EQUAL_TO_9_1,
ReferenceCsvFiles,
)

Expand Down Expand Up @@ -3825,6 +3826,12 @@ def test_averaging_per_body_nodal(
ref_data = get_ref_per_body_results_mechanical(ref_files[result], mesh)

def get_expected_label_space_by_mat_id(mat_id: int):
# mapdl_element_type_id is not part of the label space before DPF 9.1
if not SERVERS_VERSION_GREATER_THAN_OR_EQUAL_TO_9_1:
return {
elemental_properties.material: mat_id,
"time": 1,
}
return {
elemental_properties.material: mat_id,
"mapdl_element_type_id": mat_id,
Expand Down

0 comments on commit 2fb44c1

Please sign in to comment.