ExaDG
All Classes Namespaces Functions Variables Typedefs
print_functions.h
1/* ______________________________________________________________________
2 *
3 * ExaDG - High-Order Discontinuous Galerkin for the Exa-Scale
4 *
5 * Copyright (C) 2021 by the ExaDG authors
6 *
7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program. If not, see <https://www.gnu.org/licenses/>.
19 * ______________________________________________________________________
20 */
21
22#ifndef INCLUDE_FUNCTIONALITIES_PRINTFUNCTIONS_H_
23#define INCLUDE_FUNCTIONALITIES_PRINTFUNCTIONS_H_
24
25// C/C++
26#include <iomanip>
27#include <iostream>
28
29// deal.II
30#include <deal.II/base/conditional_ostream.h>
31#include <deal.II/base/mpi.h>
32
33// ExaDG
34#include <exadg/utilities/enum_utilities.h>
35
36namespace ExaDG
37{
38template<typename ParameterType>
39void
40print_parameter(dealii::ConditionalOStream const & pcout,
41 std::string const name,
42 ParameterType const value);
43
44void
45print_name(dealii::ConditionalOStream const & pcout, std::string const name);
46
47template<typename ParameterType>
48void
49print_value(dealii::ConditionalOStream const & pcout, ParameterType const value);
50
51template<>
52void
53print_value(dealii::ConditionalOStream const & pcout, bool const value);
54
55template<>
56void
57print_value(dealii::ConditionalOStream const & pcout, double const value);
58
59// print a parameter (which has a name and a value)
60template<typename ParameterType>
61void
62print_parameter(dealii::ConditionalOStream const & pcout,
63 std::string const name,
64 ParameterType const value)
65{
66 print_name(pcout, name);
67 print_value(pcout, value);
68}
69
70// print name and insert spaces so that the output is aligned
71// needs inline because this function has no template
72inline void
73print_name(dealii::ConditionalOStream const & pcout, std::string const name)
74{
75 unsigned int const max_length_name = 45;
76
77 pcout << " " /* 2 */ << name /* name.length*/ << ":" /* 1 */;
78 int const remaining_spaces = max_length_name - 2 - 1 - name.length();
79
80 for(int i = 0; i < remaining_spaces; ++i)
81 pcout << " " /* 1 */;
82}
83
84// print value for general parameter data type
85template<typename ParameterType>
86void
87print_value(dealii::ConditionalOStream const & pcout, ParameterType const value)
88{
90 pcout << Utilities::enum_to_string(value) << std::endl;
91 else
92 pcout << value << std::endl;
93}
94
95// specialization of template function for parameters of type bool
96template<>
97inline void
98print_value(dealii::ConditionalOStream const & pcout, bool const value)
99{
100 std::string value_string = "default";
101 value_string = (value == true) ? "true" : "false";
102 print_value(pcout, value_string);
103}
104
105// specialization of template function for parameters of type double
106template<>
107inline void
108print_value(dealii::ConditionalOStream const & pcout, double const value)
109{
110 pcout << std::scientific << std::setprecision(4) << value << std::endl;
111}
112
113inline std::string
114print_horizontal_line()
115{
116 return "________________________________________________________________________________";
117}
118
119inline void
120print_write_output_time(double const time,
121 unsigned int const counter,
122 bool const unsteady,
123 MPI_Comm const & mpi_comm)
124{
125 dealii::ConditionalOStream pcout(std::cout,
126 dealii::Utilities::MPI::this_mpi_process(mpi_comm) == 0);
127 if(unsteady)
128 {
129 pcout << std::endl
130 << "OUTPUT << Write data at time t = " << std::scientific << std::setprecision(4) << time
131 << std::endl;
132 }
133 else
134 {
135 pcout << std::endl
136 << "OUTPUT << Write " << (counter == 0 ? "initial" : "solution") << " data" << std::endl;
137 }
138}
139
140} // namespace ExaDG
141
142#endif /* INCLUDE_FUNCTIONALITIES_PRINTFUNCTIONS_H_ */
constexpr bool is_enum()
Checks if given type is an enum or enum class.
Definition enum_utilities.h:42
std::string enum_to_string(EnumType const enum_type)
Converts and enum to a string, returning the string.
Definition enum_utilities.h:69
Definition driver.cpp:33