Multiple time steps grouping

Hi all,
I am relatively new to paraview, I am sorry if it is a stupid question.
I have multiple vtu files from one transient simulation for time period of 10 sec in the steps of 0.1 seconds. When I am loading those multiple files to paraview they are grouped in datasets each 1 second period. When I am trying to play the simulation in paraview, it plays for the first second and then the picture freezes on last vtu file of the first second, while time continues to run. I have tried to use filters - “group datasets”, but while it is not freezing now, the files are played in some random order.
Please help!

Alina

Capture1

Hi @alina6

The simplest way to fix this is to change your numbering system.

instead of:

files-000.0.ext
files-000.1.ext
...
files-000.9.ext
files-001.0.ext

you may want to use:

files-0000.ext
files-0001.ext
...
files-0009.ext
files-0010.ext

If you want to keep the correct time values, then you may want to use a .series files like this:

https://gitlab.kitware.com/paraview/paraview/blob/v5.5.0/Documentation/release/ParaView-5.5.0.md#json-based-new-meta-file-format-for-series-added

Hth

Thank you Mathieu for your reply. I’ve tried changing the numbering system, tried different configurations, but unfortunately it had not worked.

IMG-20230124-WA0013

Regarding .series files, I will have to input manually series of about 100 vtu files (10 groups at least, 10 files each of 0.1 seconds)? May be there is another way?

Thank you in advance,
Alina

If you want to keep the correct time values, then you may want to use a .series files like this:

https://gitlab.kitware.com/paraview/paraview/blob/v5.5.0/Documentation/release/ParaView-5.5.0.md#json-based-new-meta-file-format-for-series-added

Hth

Hello Mathieu. What reader should I choose for opening .vtu.series I have created?
There is no vtkFileSeriesReader in the readers list.
Also, it is not quite clear to me, where can I find readers description, in order to add the extension.series extension to the extension list of the reader.

Thank you,
Alina
image

please share a few of your files, I will give you an example.

Please find them attached:
F1.0.vtu (407.4 KB)
F2.0.vtu (407.4 KB)
F3.0.vtu (407.4 KB)
F4.0.vtu (407.4 KB)
plate2.vtu.series (462 Bytes)

Thank you very much,
Alina

here is a corrected version
plate2.vtu.series (228 Bytes)

1 Like

Hallelujah! It is working!
I only now understand that the number of files opened in paraview should exactly match the number of files in series file.
Thank you very much for your help!

2 Likes

Hello, I have a similar issue in which I can’t get to use the *.series files properly.
I have a series of *.vti files ordered like
vtk2_00000000.vti
vtk2_00000001.vti

vtk2_00000033.vti

I would like to be able to map the index of the file to a real time value and for that I use a times.vti.series file (attached).
times.vti.series (1.9 KB)
However, when I load the *.vti files I can’t get to see the actual “real time”, but only the index. The times.vti.series is in the same directory as the *.vti files.

Similarly, if I load the times.vti.series, paraview does not seem to properly understand they refer to the same set, and instead appends more time steps, so that I have 68 time steps in paraview.

you can notice that paraview is understanding the mapping according to the times.vti.series file (time=132 as in the file), but is ‘doubling’ the number of steps so now I have 68 instead of 34.

Can you please provide any suggestions if I am having any error in the way how I deal with series files?

Thank you very much for your help

open only the .series file

1 Like

Thank you very much. I was thinking that the .series file was just a mapping to be added.
You fixed the issue.