how to get wd in run_modal() only whirling freqency , not axial and torsional's #1140
Answered
by
jguarato
Pierre-zhu
asked this question in
Q&A
-
all already 6dof in last ross , |
Beta Was this translation helpful? Give feedback.
Answered by
jguarato
Jan 27, 2025
Replies: 1 comment 5 replies
-
You can filter frequencies by the mode type attribute ("Lateral", "Axial", "Torsional"), for example: whirling_frequency = np.array([
modal.wd[i] for i, shape in enumerate(modal.shapes) if shape.mode_type == "Lateral"
]) |
Beta Was this translation helpful? Give feedback.
5 replies
Answer selected by
Pierre-zhu
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can filter frequencies by the mode type attribute ("Lateral", "Axial", "Torsional"), for example: