Hello all,
I am performing harmonic vibration analysis and I want to animate my response. I am wondering whether there are any ways to animate the harmonic response by considering both magnitude and phase. Currently, I am doing this:
# Here I have my harmonic vibration solver
resharm = DYNA_VIBRA(...)
# Then I will doe these steps
disp = CREA_CHAMP(NOM_CHAM='DEPL',
OPERATION='EXTR',
RESULTAT=resharm,
TYPE_CHAM='NOEU_DEPL_C')
mag = CREA_CHAMP(CHAM_GD=disp,
OPERATION='C2R',
PARTIE='MODULE',
TYPE_CHAM='NOEU_DEPL_R')
reslin = CREA_RESU(AFFE=_F(CHAM_GD=mag,
FREQ=(frequency, )),
NOM_CHAM='DEPL',
OPERATION='AFFE',
TYPE_RESU='DYNA_HARMO')
# Here I export the results into a rmed file
IMPR_RESU(RESU=_F(PARTIE='REEL',
RESULTAT=reslin),
UNITE=80)
I can open my rmed file and create an animation from it using the animate mode of Aster Workspace in Salome. Here, I should either use the magnitude or the phase and not both of them at the same time for my animation. However, in reality, the physical response of the system is a combination of both and if we want to have a real animation from the response of the system, we should consider both magnitude and phase difference at the same time.
Any ideas on how to get an animation that shows both magnitude and phase?