Python - Slice Face two separate data sets

Hi All,

I have a thin surface with different values on the front and back face (front and back are just arbitrary names given for ease). We’d like to be able to separate the front face data and the back face data into two separate data sets to be used for interpolation. Generally speaking we want to be able to interpolate from one thin surface to another thin surface and preserve the different values on each side of the source.

Thoughts?

Thanks,

Corey

Generally speaking, this is not supported. ParaView doesn’t have concept of different fields for front and back. However, if you’re simply talking about rendering the results, you can do something as follows:
create independent pipelines for each of the front and back faces and then when you finally display them, you can change Backface Representation on the Display Properties to be Cull Backface for the front-face representation and Cull Frontface for the backface representation.

Here’s an state.pvsm (725.6 KB) that shows that with a Sphere. I created two different spheres and each using two different datasets providing scalars.

here’s another state file state-2.pvsm (1006.7 KB) , showing the effect more clearly.