19 std::set<std::string>&& output_variables_,
20 std::vector<double>&& fixed_output_times_,
21 std::vector<PairRepeatEachSteps>&& repeats_each_steps_,
22 bool const output_residuals_)
23 : output_variables(std::move(output_variables_)),
24 fixed_output_times(std::move(fixed_output_times_)),
25 repeats_each_steps(std::move(repeats_each_steps_)),
26 output_residuals(output_residuals_)
31 "Vector of fixed output time steps passed to the "
32 "OutputDataSpecification constructor must be sorted");
37 if (pair.each_steps == 0)
40 "Step in pair of <repeats><steps> is zero but has to be "
41 "greater than zero.");
46 repeats_each_steps.emplace_back(1, std::numeric_limits<int>::max());
53 auto isFixedOutputStep = [
this](
NumLib::Time const time) ->
bool
56 [&](
auto fixed_output_time)
60 auto isPairRepeatsEachTimeStepOutput = [
this](
int timestep) ->
bool
66 each_steps = pair.each_steps;
68 if (timestep > pair.repeat * each_steps)
70 timestep -= pair.repeat * each_steps;
78 return timestep % each_steps == 0;
81 return isFixedOutputStep(time) || isPairRepeatsEachTimeStepOutput(timestep);
93 os <<
"OuputDataSpecification" << std::endl;
94 os <<
"\toutput_variables: ";
96 std::ostream_iterator<std::string>(os,
" "));
98 os <<
"\tfixed_output_times: ";
100 std::ostream_iterator<double>(os,
" "));
102 os <<
"\trepeats_each_steps: ";
104 std::ostream_iterator<PairRepeatEachSteps>(os,
" "));
std::ostream & operator<<(std::ostream &os, Output const &output)
Holds information about which variables to write to output files.
bool isOutputStep(int timestep, NumLib::Time const &time) const
std::vector< PairRepeatEachSteps > repeats_each_steps
Describes after which timesteps to write output.
std::vector< double > fixed_output_times
Given times that steps have to reach.
bool output_residuals
Tells if also to output extrapolation residuals.
std::set< std::string > output_variables
All variables that shall be output.
OutputDataSpecification(std::set< std::string > &&output_variables_, std::vector< double > &&fixed_output_times_, std::vector< PairRepeatEachSteps > &&repeats_each_steps_, bool const output_residuals_)
const int repeat
Apply each_steps repeat times.
const int each_steps
Do output every each_steps timestep.