We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8170b6c + 5d688f7 commit c44e836Copy full SHA for c44e836
ansys/mapdl/reader/_version.py
@@ -8,7 +8,7 @@
8
"""
9
10
# major, minor, patch
11
-version_info = 0, 51, 10
+version_info = 0, 51, 11
12
13
# Nice string for the version
14
__version__ = '.'.join(map(str, version_info))
ansys/mapdl/reader/cyclic_reader.py
@@ -1722,7 +1722,7 @@ def _gen_full_rotor(self):
1722
sector_id = np.empty(grid.n_points)
1723
sector_id[:] = i
1724
sector.point_data['sector_id'] = sector_id
1725
- sector.rotate_z(rang * i)
+ sector.rotate_z(rang * i, inplace=True)
1726
vtkappend.AddInputData(sector)
1727
1728
vtkappend.Update()
0 commit comments