Sum a user specified list of input nodalArrays, where each component can be scaled by a scalar factor and store the ouput in a single user-specifed nodalArray. All input and output data structures must have the same number of components.
The linearCombiner accepts the following parameters, in addition to those required by Updater:
in
(string vector, required)out
(string vector, required)coeffs
(float vector, required)The following code block copies input nodalArray qnew to output nodalArray q:
<Updater copier>
kind = linCombinerUpdater
onGrid = domain
in = [qnew]
out = [q]
coeffs = [1.0]
</Updater>