Script to automatically export .vrml

Hello everyone,
I need to export an isosuperface for every time (I have 1000 different time) so I think a Python script to do automatically (I’ve never used python).
What I do is:

  1. I open .xyz file and I load .q files
  2. I create a contour with a value range 3,5e-5
  3. I choose a time (0 to 1000)
  4. Export scene and choose .vrml file type
  5. To the end I reneme my new .vrml file with the time choose at the 3 point
    (for exemple: If I have choose 20 seconds, I reneme my .vrml file with 20)

My problem is that I have 1000 seconds and for each of them, I have to export the isosurface in .vrml.
I know it’s not very complicated, but it’s a very long process.

Please, Can you help me?

Trace steps [2,3,4] (Tools->Start Trace->Ok). This will output a python script which you could repeat in a for loop or something. You’ll need some level of python expertise from here on. :slight_smile:

Find more info here. Steps 1, 5 can be done from python itself.

Hello,
Thanks for your answer. I’ve just a doubt: how can i implement the 5th step on a python script inside a for cycle?
Thanks

Hmm, the trace might contain a variable for time. Find it and and set file name in the section of code that exports each time step.

You’ll have to edit the trace once it’s generated to suit your needs.

Thank you so much for your help, I did it!