Page 1 of 1

ResultsOutput output interval

Posted: 17 Apr 2024, 13:37
by RubenNavas
Hello,
I'm simulating the transient flow over an airfoil by using ElmerGUI. One of the goals is to compute the velocity and pressure values and store them into a human-readable file (.vtu for example). To do so, I'm using the ResultsOutput solver. However, I'm getting the resuts written each time-step, which is not afforbadble in terms of memory. Is there any way of getting the results each 100 temporal iterations (for example)?

The ResultsOutput .sif part:

Code: Select all

Solver 2
  Equation = Result Output
Vtu Time Collection = Logical True
  Save Nodal Fields = True
  Procedure = "ResultOutputSolve" "ResultOutputSolver"
  Output File Name = Fields/case
  Binary Output = False
  Output Format = Vtu
  Exec Solver = Always
End
Thanks for the help.

Re: ResultsOutput output interval

Posted: 17 Apr 2024, 15:03
by hielau
Yes it is possible. I think this should work

Simulation section set

Code: Select all

Output Intervals = 100
in your solver section set

Code: Select all

Exec Solver = After saving
-Lauri