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)
179 for (
auto const& mesh : meshes)
181 for (
auto [name, property] : mesh.get().getProperties())
183 property->is_for_output =
true;
189 for (
auto const& mesh : meshes)
191 for (
auto [name, property] : mesh.get().getProperties())
194 if (name ==
"OGS_VERSION")
196 property->is_for_output =
true;
200 property->is_for_output =
205 _output_format->outputMeshes(timestep, t, iteration, converged, meshes,
210 std::string
const& submesh_output_name,
Process const& process,
212 std::vector<GlobalVector*>
const& xs)
const
216 DBUG(
"Found {:d} nodes for output at mesh '{:s}'.",
217 submesh.getNumberOfNodes(), submesh.getName());
219 bool const output_secondary_variables =
false;
224 auto const process_output_data =
228 output_secondary_variables,
231 auto const& bulk_mesh = process.
getMesh();
232 auto const& property_names =
240 auto is_residuum_field = [](std::string
const& name) ->
bool
242 using namespace std::literals::string_view_literals;
243 static constexpr std::string_view endings[] = {
244 "FlowRate"sv,
"heat_flux"sv,
"MaterialForces"sv,
"NodalForces"sv,
245 "NodalForcesJump"sv};
246 auto ends_with = [&](std::string_view
const& ending)
247 {
return name.ends_with(ending); };
248 return std::find_if(std::begin(endings), std::end(endings),
249 ends_with) != std::end(endings);
252 for (
auto const& name : property_names)
255 {name, MeshLib::MeshItemType::Node}))
262 if (bulk_mesh.getDimension() == submesh.getDimension())
267 if (is_residuum_field(name))
284 const int process_id,
288 bool const converged,
289 std::vector<GlobalVector*>
const& xs)
const
294 bool const output_secondary_variables =
true;
295 auto const process_output_data =
300 output_secondary_variables,
308 std::vector<std::reference_wrapper<const MeshLib::Mesh>> output_meshes;
314 output_meshes.emplace_back(process.
getMesh());
319 auto const& submesh =
321 output_meshes.emplace_back(submesh);
325 outputMeshes(timestep, t(), iteration, converged, std::move(output_meshes));
327 INFO(
"[time] Output of timestep {:d} took {:g} s.", timestep,
332 const int process_id,
336 bool const converged,
337 std::vector<GlobalVector*>
const& xs)
const
341 doOutputAlways(process, process_id, timestep, t, iteration, converged,
353 const int process_id,
357 bool const converged,
358 std::vector<GlobalVector*>
const& xs)
const
362 doOutputAlways(process, process_id, timestep, t, iteration, converged,
372 Process const& process,
const int process_id,
int const timestep,
373 const NumLib::Time& t,
int const iteration,
bool const converged,
374 std::vector<GlobalVector*>
const& xs)
const
384 bool const output_secondary_variable =
true;
385 auto const process_output_data =
396 std::string
const output_file_name =
_output_format->constructFilename(
397 process.
getMesh().
getName(), timestep, t(), iteration, converged);
399 std::string
const output_file_path =
402 DBUG(
"output iteration results to {:s}", output_file_path);
412 DBUG(
"non-linear iterations can only written in Vtk/VTU format.");
414 INFO(
"[time] Output took {:g} s.", time_output.
elapsed());
424 auto construct_filename = ranges::views::transform(
425 [&](
auto const& output_name) {
431 ranges::to<std::vector>;
435 std::vector<Output>
const& outputs)
437 std::vector<double> fixed_times;
438 for (
auto const& output : outputs)
440 auto const& output_fixed_times = output.getFixedOutputTimes();
441 fixed_times.insert(fixed_times.end(), output_fixed_times.begin(),
442 output_fixed_times.end());
450 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, 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.