Plotting plot_mode_3d #997
Replies: 2 comments 2 replies
-
In rotating equipment the critical frequencies change with speed. import ross as rs
import numpy as np
rotor = rs.rotor_example()
speed = np.linspace(0, 400, 101)
camp = rotor.run_campbell(speed)
camp.plot() You can see that the first forward critical speed is at 96.30 rad/s. Now you can run a modal analysis at this speed and then plot the mode shape for that critical speed: modal = rotor.run_modal(speed=96.30)
modal.plot_mode_3d(1) |
Beta Was this translation helpful? Give feedback.
-
Hi Raphael, I'm a beginner for Rotor dynamics. Can you please help me to understand the campbell plot? What is the meaning of Forward, Mixed and Backward in campbell legend? |
Beta Was this translation helpful? Give feedback.
-
Hi,
Can you please help me to get the code to plot critical speed using plot_mode_3d. I have done it for modal analysis, but not able to figure out for critical speed.
Beta Was this translation helpful? Give feedback.
All reactions