OGS
ProcessLib::OutputDataSpecification Struct Referencefinal

Detailed Description

Holds information about which variables to write to output files.

Definition at line 38 of file OutputDataSpecification.h.

#include <OutputDataSpecification.h>

Public Member Functions

 OutputDataSpecification (std::set< std::string > &&output_variables_, std::vector< double > &&fixed_output_times_, std::vector< PairRepeatEachSteps > &&repeats_each_steps_, bool const output_residuals_)
 
bool isOutputStep (int timestep, NumLib::Time const &time) const
 

Public Attributes

std::set< std::string > output_variables
 All variables that shall be output.
 
std::vector< double > fixed_output_times
 Given times that steps have to reach.
 
std::vector< PairRepeatEachStepsrepeats_each_steps
 Describes after which timesteps to write output.
 
bool output_residuals
 Tells if also to output extrapolation residuals.
 

Constructor & Destructor Documentation

◆ OutputDataSpecification()

ProcessLib::OutputDataSpecification::OutputDataSpecification ( std::set< std::string > && output_variables_,
std::vector< double > && fixed_output_times_,
std::vector< PairRepeatEachSteps > && repeats_each_steps_,
bool const output_residuals_ )

Definition at line 18 of file OutputDataSpecification.cpp.

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_)
27{
28 if (!std::is_sorted(cbegin(fixed_output_times), cend(fixed_output_times)))
29 {
31 "Vector of fixed output time steps passed to the "
32 "OutputDataSpecification constructor must be sorted");
33 }
34 // check the repeats_each_steps pairs
35 for (auto const& pair : repeats_each_steps)
36 {
37 if (pair.each_steps == 0)
38 {
40 "Step in pair of <repeats><steps> is zero but has to be "
41 "greater than zero.");
42 }
43 }
44 if (repeats_each_steps.empty())
45 {
46 repeats_each_steps.emplace_back(1, std::numeric_limits<int>::max());
47 }
48}
#define OGS_FATAL(...)
Definition Error.h:26
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.

References fixed_output_times, OGS_FATAL, and repeats_each_steps.

Member Function Documentation

◆ isOutputStep()

bool ProcessLib::OutputDataSpecification::isOutputStep ( int timestep,
NumLib::Time const & time ) const

Determines if there should be output at the given timestep or time.

Definition at line 50 of file OutputDataSpecification.cpp.

52{
53 auto isFixedOutputStep = [this](NumLib::Time const time) -> bool
54 {
55 return std::any_of(cbegin(fixed_output_times), cend(fixed_output_times),
56 [&](auto fixed_output_time)
57 { return NumLib::Time(fixed_output_time) == time; });
58 };
59
60 auto isPairRepeatsEachTimeStepOutput = [this](int timestep) -> bool
61 {
62 int each_steps = 1;
63
64 for (auto const& pair : repeats_each_steps)
65 {
66 each_steps = pair.each_steps;
67
68 if (timestep > pair.repeat * each_steps)
69 {
70 timestep -= pair.repeat * each_steps;
71 }
72 else
73 {
74 break;
75 }
76 }
77
78 return timestep % each_steps == 0;
79 };
80
81 return isFixedOutputStep(time) || isPairRepeatsEachTimeStepOutput(timestep);
82}

References fixed_output_times, and repeats_each_steps.

Referenced by ProcessLib::Output::isOutputStep().

Member Data Documentation

◆ fixed_output_times

std::vector<double> ProcessLib::OutputDataSpecification::fixed_output_times

Given times that steps have to reach.

Definition at line 50 of file OutputDataSpecification.h.

Referenced by OutputDataSpecification(), ProcessLib::Output::getFixedOutputTimes(), isOutputStep(), and ProcessLib::operator<<().

◆ output_residuals

bool ProcessLib::OutputDataSpecification::output_residuals

Tells if also to output extrapolation residuals.

Definition at line 56 of file OutputDataSpecification.h.

Referenced by ProcessLib::addProcessDataToMesh(), and ProcessLib::operator<<().

◆ output_variables

std::set<std::string> ProcessLib::OutputDataSpecification::output_variables

All variables that shall be output.

Definition at line 47 of file OutputDataSpecification.h.

Referenced by ProcessLib::addProcessDataToMesh(), ProcessLib::operator<<(), and ProcessLib::Output::outputMeshes().

◆ repeats_each_steps

std::vector<PairRepeatEachSteps> ProcessLib::OutputDataSpecification::repeats_each_steps

Describes after which timesteps to write output.

Definition at line 53 of file OutputDataSpecification.h.

Referenced by OutputDataSpecification(), isOutputStep(), and ProcessLib::operator<<().


The documentation for this struct was generated from the following files: