Page 1 of 1

VTU output with parts separated

Posted: 16 Dec 2019, 20:43
by raback
Hi All,

For some time there has been a feature available that writes different parts of the results into different VTU files. I have found it rather useful myself so I thought that it could be that for others too.

If you have ResultOutputSolver as a solver module just add:

Code: Select all

Solver 2 ! or whatever index you have
  ...
  Vtu Part Collection = Logical True
  ..
Note that if you define VTU output just in Simulation section you can use namespace to pass stuff to the module, for example

Code: Select all

Simulation
  ...
  Post File = case.vtu
  vtu: Vtu Part Collection = Logical True
  vtu: Save Boundaries Only = Logical True
  ...
-Peter