Hi,
My software can generate the opendx native format file with a large
number (typically in the order of a 100) field objects, with each object
representing the positions of particles at a single timestep during
a thermalization process.
If I manually append a series at the end of this file with all these
objects as members, it works well, but the problem is I don't want to do
this manual stuff.
Is there another way to let some module check out the number of field objects
in the input dx file and group that into a series or something like this?
Found the solution by myself.
The import module allows "!command args" in the input file field,
which will execute command with its args. The command must output
the proper format.
My solution is to put "!myscript datafile" in the import file field.
The script reads the original datafile, extracts the number of defined
objects. In the output, the script appends the corresponding series.
This works fine.
Regards,
Rob.