General:


Preprocess:


Postprocess:


Customization:

For 'Nodes' it returns a list with 2 objarrays: one for the NodeIDs and another for the xyzxyzxyz coordinates.
For 'Elements' it returns a list with the element type, an objarray with the element id's, an objarray for all the connectivities (i.e. for a triangle an objarray with node1-node2-node3-node1-node2-node3), and an objarray for the material id of the elements.

Example:
set obj [ objarray new intarray -values { 5 6 7 8}]
-> 5 6 7 8
puts [ binary encode base64 [ objarray get_binary $obj]]
-> BQAAAAYAAAAHAAAACAAAAA==
set obj2 [ objarray new intarray -binary [ objarray get_binary $obj]]
-> 5 6 7 8
set obj3 [ objarray new chararray -binary [ objarray get_binary $obj]]
-> 5 0 0 0 6 0 0 0 7 0 0 0 8 0 0 0