I have a user that needs to create a new array, with each cell in the array 
holding the maximum value of each cell over all time.  I have heard this called 
a cumulative maximum for all cells.  The then wants to paint his 3d object with 
this new array.  For instance, if you have a variable array (maybe von mises 
stress), three cells and four timesteps, as follows:


Three cells:
0.0     0.0     0.0    (Timestep 0)
1.0     0.0     0.0    (Timestep 1)
2.0     1.0     0.0    (Timestep 2)
1.0     3.0     1.0    (Timestep 3)

Results, to be used to paint the object in a 3d view:
2.0     3.0     1.0    (Result)


Does anyone know how to do this?  My user feels comfortable with Python and the 
Programmable filter/ Python Calculator.

Thanks,

Alan

_______________________________________________
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/mailman/listinfo/paraview

Reply via email to