Ansys Learning Forum › Forums › Discuss Simulation › Preprocessing › GET imaginary part of the nodal displacements in a modal analysis with APDL › Reply To: GET imaginary part of the nodal displacements in a modal analysis with APDL
are you doing a damped modal analysis? If you have a complex solution then the results file will have 2 sets of results for each natural freuqency - the real part and imaginary part. You can use the SET command to look at either one. So for example you can use the below to get the UX value at node 5 for real part of mode 1 and imaginary part of mode 1. Once you have the real and imaginary values you can calculate phase angle or amplitude.
/post1
set,1,1Â Â Â Â Â Â ! load real part of mode 1 solution
real5=ux(5)
set,1,1,,1Â ! load imaginary part of solution
imag5=ux(5)
Â