Hello
I've noticed that since I've updated MOOSE from about June, the default exodus file output no longer captures node values for AuxVariables that I am computing. I've been looking through the literature online and the ./apt-opt --dump function and can't seem to locate how to turn this back on. I'm using the following AuxVariables and AuxKernels blocks
[AuxVariables]
[./stress_xx]
order = CONSTANT
family = MONOMIAL
[../]
[]
[AuxKernels]
[./stress_xx]
type = RankTwoAux
rank_two_tensor = stress
variable = stress_xx
index_i = 0
index_j = 0
[../]
[]
and the Outputs block
[Outputs]
[./Exodus]
type = Exodus
file_base = out
output_nodal_variables = 1
output_elemental_variables = 1
output_initial = 0
[../]
[./console]
type = Console
perf_log = true
linear_residuals = true
[../]
[]
Surely its a quick fix, but I've tried quite a few things to no avail.
Thanks
John