Question #689234 on Yade changed:
https://answers.launchpad.net/yade/+question/689234

    Status: Open => Answered

Jan Stránský proposed the following answer:
> Is it possible that instead of calling the function, I can make a list
of data of relative velocity that is recognized in Paraview

I am not sure i I got it correctly, but you can e.g. create a dict with 
(id1,id2) keys and read from it in exportInteractions, something like (not 
tested):
###
interactionsInfo = {}
for i in O.interactions:
   ... # some computations
   interactionsInfo[(i.id1,i.id2)] = someData
...
vtk.exportInteractions(what=dict(something="interactionsInfo[(i.id1,i.id2)]"))
# probably interactionsInfo would need the same builtin trick
###

cheers
Jan

-- 
You received this question notification because your team yade-users is
an answer contact for Yade.

_______________________________________________
Mailing list: https://launchpad.net/~yade-users
Post to     : [email protected]
Unsubscribe : https://launchpad.net/~yade-users
More help   : https://help.launchpad.net/ListHelp

Reply via email to