Hi, I have several checkpoints and in each one of them, I have info.xml and couple of fld files, since I run in parallel. I create my vtu files along this line: for j in {0000000..0000003}; do for i in {0..12}; do FieldConvert ../Cyl.xml Cyl_$i.chk/P$j.fld Cyl_$i.chk/P$j.vtu; done done The problem is to create a movie of unsteady results, I need to have all the file in one place. I also tried this: for i in {0..12}; do FieldConvert ../Cyl.xml Cyl_$i.chk/Info.xml Cyl_$i.vtu; done but the output has only the mesh result and not pressure, velocity and etc. Can you please tell what is the easiest way to post-process multiple fld file to make a movie easily? ----------------------------------------------------------- Shervin Sammak Research Assistant Professor Center for Research Computing University of Pittsburgh 4420 Bayard St Pittsburgh, PA 15213 E-mail: shervin.sammak@pitt.edu ~ You chase quality and quantity will chase you.
Hi Shervin, You should be able to pass a checkpoint directory directly to FieldConvert rather than having to reference the individual files within the directory. The second example in your e-mail should work if you specify the Cyl_$i.chk directory rather than Cyl_$i.chk/Info.xml file, e.g.: for i in {0..12}; do FieldConvert ../Cyl.xml Cyl_$i.chk Cyl_$i.vtu; done Cheers, Jeremy On 23 Oct 2017, at 19:10, Shervin Sammak <shervin.sammak@gmail.com> wrote:
Hi,
I have several checkpoints and in each one of them, I have info.xml and couple of fld files, since I run in parallel. I create my vtu files along this line:
for j in {0000000..0000003}; do for i in {0..12}; do FieldConvert ../Cyl.xml Cyl_$i.chk/P$j.fld Cyl_$i.chk/P$j.vtu; done done
The problem is to create a movie of unsteady results, I need to have all the file in one place. I also tried this:
for i in {0..12}; do FieldConvert ../Cyl.xml Cyl_$i.chk/Info.xml Cyl_$i.vtu; done
but the output has only the mesh result and not pressure, velocity and etc.
Can you please tell what is the easiest way to post-process multiple fld file to make a movie easily? ----------------------------------------------------------- Shervin Sammak Research Assistant Professor Center for Research Computing University of Pittsburgh 4420 Bayard St Pittsburgh, PA 15213 E-mail: shervin.sammak@pitt.edu
~ You chase quality and quantity will chase you.
_______________________________________________ Nektar-users mailing list Nektar-users@imperial.ac.uk https://mailman.ic.ac.uk/mailman/listinfo/nektar-users
participants (2)
- 
                
                Jeremy Cohen
- 
                
                Shervin Sammak