Hi,<br><br>I have a filter than creates secondary flow variables for post processing. They have names such as "absolute temperature". There is a problem with the Python parser where it will take the "abs" from absolute and interpret it as the math function. Is there a way around this?<br>
<br>Here are steps to reproduce this:<br><br><div style="margin-left: 40px;">from paraview.simple import *<br>cone = Cone()<br>calc = Calculator(cone)<br>calc.Function = "17"<br>calc.ResultArrayName = "absolute"<br>
calc2 = Calculator(calc)<br>calc2.Function = "(absolute) - 15"<br>calc2.UpdatePipeline()<br></div><br>The only solution I can think of is to rename the scalars that are output from the filter. Does anyone have any other ideas? (In future might it be worth allowing the user to put values in {}'s or something?)<br>
<br>Regards,<br>Paul<br>