-
Notifications
You must be signed in to change notification settings - Fork 945
Closed
Description
Describe the bug
Maybe "it's not a bug, it's a feature", but:
I can for example select a field for output
SCREEN_OUTPUT= INNER_ITER
or use the group,
SCREEN_OUTPUT= ITER
which is equivalent to choosing the fields INNER_ITER, OUTER_ITER, TIME_ITER
But for HISTORY_OUTPUT, I can only choose the group. This leads to a lot of data in the history file if I want to know what happens at a number of markers. So I would like to do this:
HISTORY_OUTPUT= (INNER_ITER, SURFACE_MASSFLOW)
to get 2 columns in my history file. Instead I have to do this:
HISTORY_OUTPUT= (ITER, SURFACE_MASSFLOW)
which leads to a lot of columns. Is there a reason that only groups are allowed or can this limitation be lifted safely?
Reactions are currently unavailable