9#include <range/v3/algorithm/transform.hpp>
10#include <range/v3/range/conversion.hpp>
27 std::string
const& property_name)
29 if (bulk_mesh == sub_mesh)
35 std::string_view(property_name)))
39 auto const& bulk_mesh_property =
41 std::string_view(property_name));
44 std::string_view mesh_item_type_string =
45 [mesh_item_type, &property_name]() -> std::string_view
47 switch (mesh_item_type)
57 "Property '{}' is assigned to edges. But mappings from the "
58 "bulk edges to submesh edges isn't implemented. Mesh item "
59 "type 'Edge' is not supported, only 'Node' and 'Cell' are "
60 "implemented at the moment.",
66 "Property '{}' is assigned to faces. But mappings from the "
67 "bulk faces to submesh faces isn't implemented. Mesh item "
68 "type 'Face' is not supported, only 'Node' and 'Cell' are "
69 "implemented at the moment.",
75 "Property '{}' is assigned to integration points. But "
76 "mappings from the bulk integration points to submesh "
77 "integration points isn't implemented. Mesh item type "
78 "'IntegrationPoint' is not supported, only 'Node' and "
79 "'Cell' are implemented at the moment.",
85 static_cast<int>(mesh_item_type));
90 if (mesh_item_type_string.empty())
95 mesh_item_type_string, mesh_item_type, 1))
98 "The property {} is required for output on the mesh {}, but it "
100 mesh_item_type_string, sub_mesh.
getName());
104 auto const& bulk_ids =
106 mesh_item_type_string);
108 auto const number_of_components =
111 sub_mesh, property_name, mesh_item_type, number_of_components);
113 for (std::size_t sub_mesh_node_id = 0;
114 sub_mesh_node_id < bulk_ids.getNumberOfTuples();
117 auto const& bulk_id = bulk_ids[sub_mesh_node_id];
118 for (std::remove_cv_t<
decltype(number_of_components)> c = 0;
119 c < number_of_components;
122 sub_mesh_property.getComponent(sub_mesh_node_id, c) =
123 bulk_mesh_property.getComponent(bulk_id, c);
130 auto const is_last_process =
141 bool const output_nonlinear_iteration_results,
143 std::vector<std::string>&& mesh_names_for_output,
144 std::vector<std::unique_ptr<MeshLib::Mesh>>
const& meshes)
163 std::string
const& property_name,
171 const int timestep,
const double t,
const int iteration,
172 bool const converged,
173 std::vector<std::reference_wrapper<const MeshLib::Mesh>>
const& meshes)
178 if (output_variable_names.empty())
181 for (
auto const& mesh : meshes)
183 for (
auto [name, property] : mesh.get().getProperties())
185 output_variable_names.insert(name);
191 for (
auto const& mesh : meshes)
193 for (
auto [name, property] : mesh.get().getProperties())
196 if (name ==
"OGS_VERSION")
198 output_variable_names.insert(name);
204 _output_format->outputMeshes(timestep, t, iteration, converged, meshes,
205 output_variable_names);
209 std::string
const& submesh_output_name,
Process const& process,
211 std::vector<GlobalVector*>
const& xs)
const
215 DBUG(
"Found {:d} nodes for output at mesh '{:s}'.",
216 submesh.getNumberOfNodes(), submesh.getName());
218 bool const output_secondary_variables =
false;
223 auto const process_output_data =
227 output_secondary_variables,
230 auto const& bulk_mesh = process.
getMesh();
231 auto const& property_names =
239 auto is_residuum_field = [](std::string
const& name) ->
bool
241 using namespace std::literals::string_view_literals;
242 static constexpr std::string_view endings[] = {
243 "FlowRate"sv,
"heat_flux"sv,
"MaterialForces"sv,
"NodalForces"sv,
244 "NodalForcesJump"sv};
245 auto ends_with = [&](std::string_view
const& ending)
246 {
return name.ends_with(ending); };
247 return std::find_if(std::begin(endings), std::end(endings),
248 ends_with) != std::end(endings);
251 for (
auto const& name : property_names)
254 {name, MeshLib::MeshItemType::Node}))
261 if (bulk_mesh.getDimension() == submesh.getDimension())
266 if (is_residuum_field(name))
283 const int process_id,
287 bool const converged,
288 std::vector<GlobalVector*>
const& xs)
const
293 bool const output_secondary_variables =
true;
294 auto const process_output_data =
299 output_secondary_variables,
307 std::vector<std::reference_wrapper<const MeshLib::Mesh>> output_meshes;
313 output_meshes.emplace_back(process.
getMesh());
318 auto const& submesh =
320 output_meshes.emplace_back(submesh);
324 outputMeshes(timestep, t(), iteration, converged, std::move(output_meshes));
326 INFO(
"[time] Output of timestep {:d} took {:g} s.", timestep,
331 const int process_id,
335 bool const converged,
336 std::vector<GlobalVector*>
const& xs)
const
340 doOutputAlways(process, process_id, timestep, t, iteration, converged,
352 const int process_id,
356 bool const converged,
357 std::vector<GlobalVector*>
const& xs)
const
361 doOutputAlways(process, process_id, timestep, t, iteration, converged,
371 Process const& process,
const int process_id,
int const timestep,
372 const NumLib::Time& t,
int const iteration,
bool const converged,
373 std::vector<GlobalVector*>
const& xs)
const
383 bool const output_secondary_variable =
true;
384 auto const process_output_data =
395 std::string
const output_file_name =
_output_format->constructFilename(
396 process.
getMesh().
getName(), timestep, t(), iteration, converged);
398 std::string
const output_file_path =
401 DBUG(
"output iteration results to {:s}", output_file_path);
406 output_file_path, process.
getMesh(),
413 DBUG(
"non-linear iterations can only written in Vtk/VTU format.");
415 INFO(
"[time] Output took {:g} s.", time_output.
elapsed());
425 auto construct_filename = ranges::views::transform(
426 [&](
auto const& output_name)
433 ranges::to<std::vector>;
437 std::vector<Output>
const& outputs)
439 std::vector<double> fixed_times;
440 for (
auto const& output : outputs)
442 auto const& output_fixed_times = output.getFixedOutputTimes();
443 fixed_times.insert(fixed_times.end(), output_fixed_times.begin(),
444 output_fixed_times.end());
452 os <<
"Output::_output_data_specification:\t"
void INFO(fmt::format_string< Args... > fmt, Args &&... args)
void DBUG(fmt::format_string< Args... > fmt, Args &&... args)
void WARN(fmt::format_string< Args... > fmt, Args &&... args)
double elapsed() const
Get the elapsed time in seconds.
void start()
Start the timer.
Properties & getProperties()
const std::string getName() const
Get name of the mesh.
std::vector< std::string > getPropertyVectorNames() const
bool existsPropertyVector(std::string_view name) const
PropertyVector< T > const * getPropertyVector(std::string_view name) const
MeshItemType getMeshItemType() const
int getNumberOfGlobalComponents() const
std::set< std::pair< std::string, MeshLib::MeshItemType > > _do_not_project_from_bulk_mesh_to_submeshes
std::reference_wrapper< std::vector< std::unique_ptr< MeshLib::Mesh > > const > _meshes
void doOutputAlways(Process const &process, const int process_id, int const timestep, const NumLib::Time &t, int const iteration, bool const converged, std::vector< GlobalVector * > const &xs) const
void doOutput(Process const &process, const int process_id, int const timestep, const NumLib::Time &t, int const iteration, bool const converged, std::vector< GlobalVector * > const &xs) const
void doOutputNonlinearIteration(Process const &process, const int process_id, int const timestep, const NumLib::Time &t, const int iteration, bool const converged, std::vector< GlobalVector * > const &xs) const
std::vector< std::string > _mesh_names_for_output
void doOutputLastTimestep(Process const &process, const int process_id, int const timestep, const NumLib::Time &t, int const iteration, bool const converged, std::vector< GlobalVector * > const &xs) const
void outputMeshes(int const timestep, const double t, int const iteration, bool const converged, std::vector< std::reference_wrapper< const MeshLib::Mesh > > const &meshes) const
void doNotProjectFromBulkMeshToSubmeshes(std::string const &property_name, MeshLib::MeshItemType const mesh_item_type)
OutputDataSpecification _output_data_specification
std::vector< std::reference_wrapper< Process const > > _output_processes
MeshLib::Mesh const & prepareSubmesh(std::string const &submesh_output_name, Process const &process, const int process_id, NumLib::Time const &t, std::vector< GlobalVector * > const &xs) const
Output(std::unique_ptr< OutputFormat > &&output_format, bool const output_nonlinear_iteration_results, OutputDataSpecification &&output_data_specification, std::vector< std::string > &&mesh_names_for_output, std::vector< std::unique_ptr< MeshLib::Mesh > > const &meshes)
bool isOutputProcess(int const process_id, Process const &process) const
std::unique_ptr< OutputFormat > _output_format
void addProcess(ProcessLib::Process const &process)
TODO doc. Opens a PVD file for each process.
bool _output_nonlinear_iteration_results
std::vector< std::string > getFileNamesForOutput() const
bool isOutputStep(int const timestep, NumLib::Time const &t) const
Tells if output will be written at the specified timestep/time.
MeshLib::Mesh & getMesh() const
virtual bool isMonolithicSchemeUsed() const
std::string joinPaths(std::string const &pathA, std::string const &pathB)
void makeVectorUnique(std::vector< T > &v)
void CoProcess(MeshLib::Mesh const &mesh, double const time, unsigned int const timeStep, bool const lastTimeStep, std::string output_directory)
PropertyVector< T > * getOrCreateMeshProperty(Mesh &mesh, std::string const &property_name, MeshItemType const item_type, int const number_of_components)
Mesh & findMeshByName(std::vector< std::unique_ptr< Mesh > > const &meshes, std::string_view const name)
constexpr std::string_view getBulkIDString(MeshItemType mesh_item_type)
void addProcessDataToMesh(NumLib::Time const &t, std::vector< GlobalVector * > const &xs, int const process_id, ProcessOutputData const &process_output_data, bool const output_secondary_variables, OutputDataSpecification const &process_output)
ProcessOutputData createProcessOutputData(Process const &process, std::size_t const n_processes, MeshLib::Mesh &output_mesh)
Extracts data necessary for output from the given process.
std::ostream & operator<<(std::ostream &os, Output const &output)
void outputMeshVtk(std::string const &file_name, MeshLib::Mesh const &mesh, std::set< std::string > const &output_variables, bool const compress_output, int const data_mode)
std::vector< double > calculateUniqueFixedTimesForAllOutputs(std::vector< Output > const &outputs)
void addBulkMeshPropertyToSubMesh(MeshLib::Mesh const &bulk_mesh, MeshLib::Mesh &sub_mesh, std::string const &property_name)
Holds information about which variables to write to output files.