Skip to content
Snippets Groups Projects
Commit 6cab0fb1 authored by Dmitri Naumov's avatar Dmitri Naumov
Browse files

[PL] Output; Non-modifying fixed output times alg.

The previous implementation would miss a fixed output time
if the time step was repeated.
parent c8795df6
No related branches found
No related tags found
No related merge requests found
...@@ -55,8 +55,6 @@ std::unique_ptr<Output> createOutput( ...@@ -55,8 +55,6 @@ std::unique_ptr<Output> createOutput(
// Construction of output times // Construction of output times
std::vector<Output::PairRepeatEachSteps> repeats_each_steps; std::vector<Output::PairRepeatEachSteps> repeats_each_steps;
std::vector<double> fixed_output_times;
//! \ogs_file_param{prj__time_loop__output__timesteps} //! \ogs_file_param{prj__time_loop__output__timesteps}
if (auto const timesteps = config.getConfigSubtreeOptional("timesteps")) if (auto const timesteps = config.getConfigSubtreeOptional("timesteps"))
{ {
...@@ -133,6 +131,7 @@ std::unique_ptr<Output> createOutput( ...@@ -133,6 +131,7 @@ std::unique_ptr<Output> createOutput(
} }
} }
std::vector<double> fixed_output_times;
auto fixed_output_times_ptr = auto fixed_output_times_ptr =
//! \ogs_file_param{prj__time_loop__output__fixed_output_times} //! \ogs_file_param{prj__time_loop__output__fixed_output_times}
config.getConfigParameterOptional<std::vector<double>>( config.getConfigParameterOptional<std::vector<double>>(
...@@ -140,8 +139,8 @@ std::unique_ptr<Output> createOutput( ...@@ -140,8 +139,8 @@ std::unique_ptr<Output> createOutput(
if (fixed_output_times_ptr) if (fixed_output_times_ptr)
{ {
fixed_output_times = std::move(*fixed_output_times_ptr); fixed_output_times = std::move(*fixed_output_times_ptr);
// Remove possible duplicated elements and sort in descending order. // Remove possible duplicated elements and sort.
BaseLib::makeVectorUnique(fixed_output_times, std::greater<>()); BaseLib::makeVectorUnique(fixed_output_times);
} }
bool const output_iteration_results = bool const output_iteration_results =
......
...@@ -85,11 +85,19 @@ bool Output::shallDoOutput(int timestep, double const t) ...@@ -85,11 +85,19 @@ bool Output::shallDoOutput(int timestep, double const t)
return make_output; return make_output;
} }
const double specific_time = _fixed_output_times.back(); auto const fixed_output_time = std::lower_bound(
cbegin(_fixed_output_times), cend(_fixed_output_times), t);
if (fixed_output_time == cend(_fixed_output_times))
{
return make_output;
}
DBUG(
"Fixed time output; Found {} in list of output times for current time "
"{}.",
*fixed_output_time, t);
const double zero_threshold = std::numeric_limits<double>::min(); const double zero_threshold = std::numeric_limits<double>::min();
if (std::fabs(specific_time - t) < zero_threshold) if (std::fabs(*fixed_output_time - t) < zero_threshold)
{ {
_fixed_output_times.pop_back();
make_output = true; make_output = true;
} }
...@@ -117,6 +125,8 @@ Output::Output(std::string output_directory, std::string output_file_prefix, ...@@ -117,6 +125,8 @@ Output::Output(std::string output_directory, std::string output_file_prefix,
_mesh_names_for_output(mesh_names_for_output), _mesh_names_for_output(mesh_names_for_output),
_meshes(meshes) _meshes(meshes)
{ {
assert(
std::is_sorted(cbegin(_fixed_output_times), cend(_fixed_output_times)));
} }
void Output::addProcess(ProcessLib::Process const& process, void Output::addProcess(ProcessLib::Process const& process,
......
...@@ -104,7 +104,7 @@ private: ...@@ -104,7 +104,7 @@ private:
std::vector<PairRepeatEachSteps> _repeats_each_steps; std::vector<PairRepeatEachSteps> _repeats_each_steps;
//! Given times that steps have to reach. //! Given times that steps have to reach.
std::vector<double> _fixed_output_times; std::vector<double> const _fixed_output_times;
std::multimap<Process const*, MeshLib::IO::PVDFile> _process_to_pvd_file; std::multimap<Process const*, MeshLib::IO::PVDFile> _process_to_pvd_file;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment