aanimating results
aanimating results
(OP)
Is it possbile to animate a series of stress plots from a series of results files. I have 15 result files and I want to know if I can animate them.
INTELLIGENT WORK FORUMS
FOR ENGINEERING PROFESSIONALS Come Join Us!Are you an
Engineering professional? Join Eng-Tips Forums!
*Eng-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail. Posting GuidelinesJobs |
|
RE: aanimating results
------------
See FAQ569-1083 for details on how to make best use of Eng-Tips.com
RE: aanimating results
RE: aanimating results
I suppose you have 15 Results files from deferent simulations whith deferent jobnames for the SAME model. You could write a macro:
! Read the first model data
FINISH
/CLEAR,START
/FILNAM, jobname1
RESUME
/POST1
! start animation
/SEG, DELE
/SEG,MULTI,,0.5
/post1
FILE, jobname1, rst
SET,LAST
PLNSOL,S,EQV
FILE, jobname2, rst
SET,LAST
PLNSOL,S,EQV
.
.
.
FILE, jobname15
SET,LAST
PLNSOL,S,EQV
/SEG,OFF,,1
ANIM,15
That should work...
RE: aanimating results
I will try this
thanks
james