Reloaded Files don't show in the view

Is there something I need to do after “Reload files” to update the view? The view never updates automatically as I would expect. The only way I found to get Paraview to show the changed contents is to switch to a different frame and back. This is annoying and also doesn’t work for a single file as there are no other frames to switch to. It helps to change some other setting or apply a new filter and hit “Apply”, but that’s also annoying.

Happens for any vtu/vtk files, I’m using Paraview 5.10.

Please update to ParaView 6.0

Doesn’t help sadly.

bit more specific what I would like to do:

  1. Load a vtk/vtu/pvtu file
    1a) optional, apply filters.
  2. Display contents of the file in the render view
  3. Change contents of the file, usually just point/cell data, but sometimes mesh as well
  4. Reload Files, e.g. in the context menu in the pipeline browser or with F5 hotkey
  5. Render view should update automatically to display the changed contents.

5 doesn’t happen automatically, and I don’t know of any reliable way to update the view manually.

I’m unable to reproduce with my own data, please share your data.

I seem to have misunderstood the “Find New Files” option. When you reload for the first time, you get asked “Reload Files” or “Find New Files”. I assumed that “Find new files” means load the existing ones AND any new files where as “Reload Files” only loads the existing files.

I would like to see a solution such as this: https://gitlab.kitware.com/paraview/paraview/-/issues/22344 or maybe a third button to do both options. I render simulation output, the output overwrites existing files but may also be a longer or shorter time series.

In the meantime, I think it should be possible to write a macro that uses the reload API: https://www.kitware.com/refreshingreloading-files-in-paraview/

Thanks and sorry for the misunderstanding.

Just if anyone finds this, I now have three macros:

from paraview.simple import *
ReloadFiles()
from paraview.simple import *
ExtendFilesSeries()
from paraview.simple import *
ExtendFilesSeries()
ReloadFiles()

set to shortcuts ctrl+F5, alt+f5 and ctrl+alt+f5 so I always have access to all options.