Skip to content

Commit c44e836

Browse files
committed
merge with main; bump to v0.51.11
2 parents 8170b6c + 5d688f7 commit c44e836

File tree

3 files changed

+76
-68
lines changed

3 files changed

+76
-68
lines changed

ansys/mapdl/reader/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"""
99

1010
# major, minor, patch
11-
version_info = 0, 51, 10
11+
version_info = 0, 51, 11
1212

1313
# Nice string for the version
1414
__version__ = '.'.join(map(str, version_info))

ansys/mapdl/reader/cyclic_reader.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1722,7 +1722,7 @@ def _gen_full_rotor(self):
17221722
sector_id = np.empty(grid.n_points)
17231723
sector_id[:] = i
17241724
sector.point_data['sector_id'] = sector_id
1725-
sector.rotate_z(rang * i)
1725+
sector.rotate_z(rang * i, inplace=True)
17261726
vtkappend.AddInputData(sector)
17271727

17281728
vtkappend.Update()

0 commit comments

Comments
 (0)