Replies: 1 comment 3 replies
-
|
Hi @wigging ! ...
fig_plotly = results.shapes[i].plot_2d(orientation='y')
x = fig_plotly.data[0]['x']
y = fig_plotly.data[0]['y']
# normalize y values
iymax = np.argmax(abs(y))
y = y / y[iymax]
... |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
This example is for a solid steel shaft with an undamped bearing at each end of the shaft. Notice that for the modal analysis, there is no rotation speed so
rotor.run_modal(speed=0).Running the example gives the following mode shapes for backward rotation:

And running the example gives the following mode shapes for forward rotation:

I think modes 0, 2, and 4 represent the 1st, 2nd, and 3rd mode shapes for backward rotation. And modes 1, 3, and 5 are the 1st, 2nd, and 3rd mode shapes for forward rotation. Is that correct?
If my understanding is correct, then why are the 2nd mode shapes (mode 2 and mode 3) not the same? I would expect them to be the same since there is no shaft rotation. Or am I plotting the wrong data?
Beta Was this translation helpful? Give feedback.
All reactions