Skip to content

Commit 984a926

Browse files
authored
fix time freq support issue related to rpms print (#23)
1 parent 05dba50 commit 984a926

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ansys/dpf/core/time_freq_support.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ def __str__(self):
8282
line = [cum_index, frequency, loadstep+1, substep]
8383
txt += '{:^12} {:^16.3} {:^12} {:^12}'.format(*line)
8484
if rpms is not None:
85-
txt += '{:^12.3}'.format(rpm[loadstep-1])
85+
txt += '{:^12.3}'.format(rpm[0])
8686
if harmonic_indices is not None:
8787
txt += '{:^18}'.format(int(abs(hi[substep-1])))
8888
txt += '\n'

0 commit comments

Comments
 (0)