Hi Berk, <br><br>I am trying out your suggestion of merging arrays :<br><br>input0 = self.GetInputDataObject(0,0)<br>input1 = self.GetInputDataObject(0,1)<br>output = self.GetOutputDataObject(0)<br>output.GetPointData().AddArray(input0.GetPointData().GetArray(&quot;pressure1&quot;))<br>
output.GetPointData().AddArray(input1.GetPointData().GetArray(&quot;pressure2&quot;))<br><br>but I get the following error message :<br><br>&nbsp; File &quot;&lt;string&gt;&quot;, line 2, in &lt;module&gt;<br>&nbsp; File &quot;&lt;string&gt;&quot;, line 4, in RequestData<br>
AttributeError: GetPointData<br><br>I also tried just using the programmable filter on one source and with the following code, and&nbsp; I get the same error :<br><br>input0=self.GetInputDataObject(0,0)<br>input0.GetPointData()<br>
<br>I am using version 3.4.0<br>