# Renderviews in pvbatch 5.12.1 errors

**URL:** https://discourse.paraview.org/t/renderviews-in-pvbatch-5-12-1-errors/15204
**Category:** ParaView Support
**Created:** [August 10, 2024, 9:17pm UTC](https://discourse.paraview.org/t/renderviews-in-pvbatch-5-12-1-errors/15204 "2024-08-10T21:17:48Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![nadeem](https://discourse.paraview.org/user_avatar/discourse.paraview.org/nadeem/32/6444_2.png) [@nadeem](https://discourse.paraview.org/u/nadeem)
#### Post date: [August 10, 2024, 9:17pm UTC](https://discourse.paraview.org/t/renderviews-in-pvbatch-5-12-1-errors/15204/1 "2024-08-10T21:17:48Z")

</div>

Hello, I am running the latest release 5.12.1 and have immediately run into problems. (I run a pvbatch job on ntasks=10 nodes.)

The task: Run in pvbath mode and extract slices of the velocity field (a turbulent mixing layer) at regular time intervals from T=0 to T=20. My slice.py file is:

```python
from paraview.simple import *
paraview.simple._DisableFirstRenderCameraReset()
renderView1 = GetActiveViewOrCreate('RenderView')
Delete(renderView1)
del renderView1
LoadState('/lustre/scratch/nadmalik/sml_2048_R001/state1.pvsm')
renderView1 = GetActiveViewOrCreate('RenderView')
SaveAnimation('/lustre/scratch/nadmalik/sml_2048_R001/U1.jpg')

```

However, I get error messages, see below. But the strange thing is that output is produced in the form of 10 images U1.0000.jpg – U1.0009.jpg – but they are identical! I presume that each must be the last time snapshot at T=20.

Can anyone help out here please. Thanks.

Here are the error messages in my log file:

```shell
^[[0m^[[31m( 6.483s) [pvbatch.0]vtkSIProxyDefinitionMan:517 ERR| vtkSIProxyDefinitionManager (0x1f790c0): No proxy that matches: group=annotations and proxy=PolarGridActor were found.^[[0m
^[[0m^[[31m( 6.483s) [pvbatch.0]vtkSMDeserializerXML.cx:41 ERR| vtkSMStateLoader (0x3f9ad00): Could not create a proxy of group: annotations type: PolarGridActor^[[0m
^[[0m^[[31m( 6.486s) [pvbatch.0]vtkSIProxyDefinitionMan:517 ERR| vtkSIProxyDefinitionManager (0x1f790c0): No proxy that matches: group=annotations and proxy=PolarGridActor were found.^[[0m
^[[0m^[[31m( 6.486s) [pvbatch.0]vtkSMDeserializerXML.cx:41 ERR| vtkSMStateLoader (0x3f9ad00): Could not create a proxy of group: annotations type: PolarGridActor^[[0m

```

-nadeem

---

<div class="post-metadata">

### Author: ![mwestphal](https://discourse.paraview.org/user_avatar/discourse.paraview.org/mwestphal/32/17_2.png) [@mwestphal](https://discourse.paraview.org/u/mwestphal)
#### Post date: [August 12, 2024, 11:29am UTC](https://discourse.paraview.org/t/renderviews-in-pvbatch-5-12-1-errors/15204/2 "2024-08-12T11:29:23Z")

</div>

PolarGridActor is a recent addition, not yet released, how did you generate the state file ?

In any case, it should work with 5.13.0-RC1 or with the latest nightly.
