1504 * cell->get_dof_indices(dof_indices);
1505 * std::transform(dof_indices.begin(),
1506 * dof_indices.end(),
1507 * dof_indices.begin(),
1509 * return partitioner->global_to_local(index);
1514 *
for (
const auto dof : dof_indices)
1515 * dsp.add_entries(dof, dof_indices.
begin(), dof_indices.
end());
1518 * sparsity_pattern.copy_from(dsp);
1520 * lumped_mass_matrix.reinit(sparsity_pattern);
1521 * norm_matrix.reinit(sparsity_pattern);
1522 *
for (
auto &matrix : cij_matrix)
1524 *
for (
auto &matrix : nij_matrix)
1532 * Next, we have to
assemble various matrices. We define a number of
1533 * helper
functions and data structures in an anonymous
namespace.
1543 * <code>CopyData</code>
class that will be used to
assemble the
1544 * offline data matrices
using WorkStream. It acts as a container: it
1545 * is just a
struct where
WorkStream stores the local cell
1546 * contributions. Note that it also contains a
class member
1547 * <code>local_boundary_normal_map</code> used to store the local
1548 * contributions required to compute the normals at the boundary.
1554 *
template <
int dim>
1557 *
bool is_artificial;
1558 * std::vector<types::global_dof_index> local_dof_indices;
1559 *
typename OfflineData<dim>::BoundaryNormalMap local_boundary_normal_map;
1561 * std::array<FullMatrix<double>, dim> cell_cij_matrix;
1566 * Next we introduce a number of helper
functions that are all
1567 * concerned about reading and writing
matrix and vector entries. They
1568 * are mainly motivated by providing slightly more efficient code and
1569 * <a href=
"https://en.wikipedia.org/wiki/Syntactic_sugar"> syntactic
1570 * sugar</a>
for otherwise somewhat tedious code.
1574 * The
first function we introduce, <code>get_entry()</code>, will be
1575 * used to read the
value stored at the entry pointed by a
1577 * function works around a small deficiency in the
SparseMatrix
1579 * operations of the sparse
matrix stored in CRS format. As such the
1580 * iterator already knows the global
index of the corresponding
matrix
1582 * to the lack of an
interface in the
SparseMatrix for accessing the
1584 * have to create a temporary
SparseMatrix iterator. We simply hide
1585 *
this in the <code>get_entry()</code> function.
1591 *
template <
typename IteratorType>
1596 * &matrix, it->global_index());
1597 *
return matrix_iterator->value();
1602 * The <code>set_entry()</code> helper is the inverse operation of
1603 * <code>get_value()</code>: Given an iterator and a
value, it sets the
1604 * entry pointed to by the iterator in the
matrix.
1610 *
template <
typename IteratorType>
1613 *
const IteratorType &it,
1617 * it->global_index());
1618 * matrix_iterator->value() =
value;
1623 * <code>gather_get_entry()</code>: we note that @f$\mathbf{c}_{ij} \in
1624 * \mathbb{R}^
d@f$. If @f$d=2@f$ then @f$\mathbf{c}_{ij} =
1625 * [\mathbf{c}_{ij}^1,\mathbf{c}_{ij}^2]^\top@f$. Which basically implies
1626 * that we need one
matrix per space dimension to store the
1627 * @f$\mathbf{c}_{ij}@f$ vectors. Similar observation follows
for the
1628 *
matrix @f$\mathbf{n}_{ij}@f$. The purpose of
1629 * <code>gather_get_entry()</code> is to retrieve those entries and store
1636 *
template <std::
size_t k,
typename IteratorType>
1639 *
const IteratorType it)
1642 *
for (
unsigned int j = 0; j < k; ++j)
1643 * result[j] = get_entry(c_ij[j], it);
1650 * signature, having three input arguments, will be used to retrieve
1651 * the individual components <code>(i,
l)</code> of a
matrix. The
1652 * functionality of <code>gather_get_entry()</code> and
1653 * <code>
gather()</code> is very much the same, but their context is
1654 * different: the function <code>
gather()</code> does not rely on an
1655 * iterator (that actually knows the
value pointed to) but rather on the
1656 * indices <code>(i,
l)</code> of the entry in order to retrieve its
1657 * actual
value. We should expect <code>
gather()</code> to be slightly
1658 * more expensive than <code>gather_get_entry()</code>. The use of
1659 * <code>
gather()</code> will be limited to the task of computing the
1660 * algebraic viscosity @f$d_{ij}@f$ in the particular case that when
1661 * both @f$i@f$ and @f$j@f$ lie at the boundary.
1665 * @note The reader should be aware that accessing an arbitrary
1666 * <code>(i,
l)</code> entry of a
matrix (say for instance Trilinos or
PETSc
1667 * matrices) is in
general unacceptably expensive. Here is where we might
1668 * want to keep an eye on complexity: we want this operation to have
1669 *
constant complexity, which is the case of the current implementation
1670 * using deal.II matrices.
1676 * template <
std::size_t k>
1679 * const unsigned
int i,
1680 * const unsigned
int j)
1683 *
for (
unsigned int l = 0;
l < k; ++
l)
1684 * result[l] = n_ij[l](i, j);
1691 * signature having two input arguments will be used to
gather the
1692 * state at a node <code>i</code> and return it as a
1693 * <code>
Tensor<1,n_solution_variables></code> for our convenience.
1699 * template <
std::size_t k>
1702 * const unsigned
int i)
1705 *
for (
unsigned int j = 0; j < k; ++j)
1706 * result[j] = U[j].local_element(i);
1712 * <code>
scatter()</code>:
this function has three input arguments, the
1713 *
first one is meant to be a
"global object" (say a locally owned or
1714 * locally relevant vector), the
second argument which could be a
1716 * which represents a index of the global
object. This function will be
1717 * primarily used to write the updated nodal values, stored as
1724 * template <std::size_t k, int k2>
1728 *
const unsigned int i)
1730 *
static_assert(k == k2,
1731 *
"The dimensions of the input arguments must agree");
1732 *
for (
unsigned int j = 0; j < k; ++j)
1733 * U[j].local_element(i) = tensor[j];
1739 * We are now in a position to
assemble all matrices stored in
1740 * <code>OfflineData</code>: the lumped mass entries @f$m_i@f$, the
1741 * vector-valued matrices @f$\mathbf{c}_{ij}@f$ and @f$\mathbf{n}_{ij} =
1742 * \frac{\mathbf{c}_{ij}}{|\mathbf{c}_{ij}|}@f$, and the boundary normals
1743 * @f$\boldsymbol{\nu}_i@f$.
1747 * In order to exploit thread parallelization we use the
WorkStream approach
1748 * detailed in the @ref threads
"Parallel computing with multiple processors"
1749 * accessing shared memory. As customary
this requires
1751 * - Scratch data (i.e. input info required to carry out computations): in
1752 * this case it is <code>scratch_data</code>.
1753 * - The worker: in our case this is the <code>local_assemble_system()</code>
1755 * actually computes the local (i.
e. current cell) contributions from the
1757 * - A
copy data: a struct that contains all the local assembly
1758 * contributions, in this case <code>CopyData<dim>()</code>.
1759 * - A
copy data routine: in this case it is
1760 * <code>copy_local_to_global()</code> in charge of actually copying these
1761 * local contributions into the global objects (matrices and/or vectors)
1765 * Most of the following lines are spent in the definition of the worker
1766 * <code>local_assemble_system()</code> and the
copy data routine
1767 * <code>copy_local_to_global()</code>. There is not much to say about the
1768 *
WorkStream framework since the vast majority of ideas are reasonably
1769 * well-documented in @ref step_9
"step-9", @ref step_13
"step-13" and @ref step_32
"step-32" among others.
1773 * Finally, assuming that @f$\mathbf{x}_i@f$ is a support
point at the boundary,
1774 * the (nodal) normals are defined as:
1779 * \widehat{\boldsymbol{\nu}}_i \dealcoloneq
1780 * \frac{\int_{\partial\Omega} \phi_i \widehat{\boldsymbol{\nu}} \,
1781 * \, \mathrm{
d}\mathbf{s}}{\big|\int_{\partial\Omega} \phi_i
1782 * \widehat{\boldsymbol{\nu}} \, \mathrm{
d}\mathbf{s}\big|}
1787 * We will compute the numerator of
this expression
first and store it in
1788 * <code>OfflineData<dim>::BoundaryNormalMap</code>. We will normalize these
1789 * vectors in a posterior
loop.
1795 *
template <
int dim>
1796 *
void OfflineData<dim>::assemble()
1798 * lumped_mass_matrix = 0.;
1800 *
for (
auto &matrix : cij_matrix)
1802 *
for (
auto &matrix : nij_matrix)
1805 *
unsigned int dofs_per_cell =
1806 * discretization->finite_element.n_dofs_per_cell();
1807 *
unsigned int n_q_points = discretization->quadrature.size();
1811 * What follows is the initialization of the scratch data required by
1819 * discretization->mapping,
1820 * discretization->finite_element,
1821 * discretization->quadrature,
1824 * discretization->face_quadrature,
1830 *
"offline_data - assemble lumped mass matrix, and c_ij");
1832 *
const auto local_assemble_system =
1835 * CopyData<dim> &
copy) {
1836 *
copy.is_artificial = cell->is_artificial();
1837 *
if (
copy.is_artificial)
1840 *
copy.local_boundary_normal_map.clear();
1841 *
copy.cell_lumped_mass_matrix.reinit(dofs_per_cell, dofs_per_cell);
1842 *
for (
auto &matrix :
copy.cell_cij_matrix)
1845 *
const auto &fe_values = scratch.reinit(cell);
1847 *
copy.local_dof_indices.resize(dofs_per_cell);
1848 * cell->get_dof_indices(
copy.local_dof_indices);
1850 * std::transform(
copy.local_dof_indices.begin(),
1851 *
copy.local_dof_indices.end(),
1852 *
copy.local_dof_indices.begin(),
1854 * return partitioner->global_to_local(index);
1859 * We compute the local contributions
for the lumped mass
matrix
1860 * entries @f$m_i@f$ and and vectors @f$c_{ij}@f$ in the usual fashion:
1863 *
for (
unsigned int q_point = 0; q_point < n_q_points; ++q_point)
1865 *
const auto JxW = fe_values.JxW(q_point);
1867 *
for (
unsigned int j = 0; j < dofs_per_cell; ++j)
1869 *
const auto value_JxW =
1870 * fe_values.shape_value(j, q_point) * JxW;
1871 *
const auto grad_JxW = fe_values.shape_grad(j, q_point) * JxW;
1873 *
copy.cell_lumped_mass_matrix(j, j) += value_JxW;
1875 *
for (
unsigned int i = 0; i < dofs_per_cell; ++i)
1877 *
const auto value = fe_values.shape_value(i, q_point);
1878 *
for (
unsigned int d = 0;
d < dim; ++
d)
1879 *
copy.cell_cij_matrix[d](i, j) +=
value * grad_JxW[
d];
1887 * Now we have to compute the boundary normals. Note that the
1888 * following
loop does not
do much unless the element has faces on
1889 * the boundary of the domain.
1892 *
for (
const auto f : cell->face_indices())
1894 * const auto face = cell->face(f);
1895 *
const auto id = face->boundary_id();
1897 *
if (!face->at_boundary())
1900 *
const auto &fe_face_values = scratch.reinit(cell, f);
1902 *
const unsigned int n_face_q_points =
1903 * fe_face_values.get_quadrature().size();
1905 *
for (
unsigned int j = 0; j < dofs_per_cell; ++j)
1907 *
if (!discretization->finite_element.has_support_on_face(j, f))
1912 * Note that
"normal" will only represent the contributions
1913 * from one of the faces in the support of the shape
1914 * function phi_j. So we cannot normalize
this local
1915 * contribution right here, we have to take it
"as is",
1916 * store it and pass it to the
copy data routine. The
1917 * proper normalization
requires an additional
loop on
1918 * nodes. This is done in the
copy function below.
1922 *
if (
id == Boundaries::free_slip)
1924 *
for (
unsigned int q = 0; q < n_face_q_points; ++q)
1925 * normal += fe_face_values.normal_vector(q) *
1926 * fe_face_values.shape_value(j, q);
1929 *
const auto index =
copy.local_dof_indices[j];
1933 * if (cell->vertex_dof_index(v, 0) ==
1934 * partitioner->local_to_global(
index))
1936 * position = cell->vertex(v);
1940 *
const auto old_id =
1941 * std::get<1>(
copy.local_boundary_normal_map[index]);
1942 *
copy.local_boundary_normal_map[
index] =
1943 * std::make_tuple(normal,
std::max(old_id,
id), position);
1950 * Last, we provide a copy_local_to_global function as required
for
1954 *
const auto copy_local_to_global = [&](
const CopyData<dim> &
copy) {
1955 *
if (
copy.is_artificial)
1958 *
for (
const auto &it :
copy.local_boundary_normal_map)
1960 *
std::get<0>(boundary_normal_map[it.
first]) +=
1962 * std::get<1>(boundary_normal_map[it.first]) =
1963 *
std::max(std::get<1>(boundary_normal_map[it.first]),
1964 * std::get<1>(it.second));
1965 * std::get<2>(boundary_normal_map[it.first]) = std::get<2>(it.second);
1968 * lumped_mass_matrix.add(
copy.local_dof_indices,
1969 *
copy.cell_lumped_mass_matrix);
1971 *
for (
int k = 0; k < dim; ++k)
1973 * cij_matrix[k].add(
copy.local_dof_indices,
copy.cell_cij_matrix[k]);
1974 * nij_matrix[k].add(
copy.local_dof_indices,
copy.cell_cij_matrix[k]);
1979 * dof_handler.end(),
1980 * local_assemble_system,
1981 * copy_local_to_global,
1988 * At
this point in time we are done with the computation of @f$m_i@f$ and
1989 * @f$\mathbf{c}_{ij}@f$, but so far the matrix <code>nij_matrix</code>
1990 * contains just a
copy of the matrix <code>cij_matrix</code>.
1991 * That
's not what we really want: we have to normalize its entries. In
1992 * addition, we have not filled the entries of the matrix
1993 * <code>norm_matrix</code> and the vectors stored in the map
1994 * <code>OfflineData<dim>::BoundaryNormalMap</code> are not normalized.
1998 * In principle, this is just offline data, it doesn't make much sense
1999 * to over-optimize their computation, since their cost will get amortized
2000 * over the many time steps that we are going to use. However,
2001 * computing/storing the entries of the
matrix
2002 * <code>norm_matrix</code> and the normalization of <code>nij_matrix</code>
2003 * are perfect to illustrate thread-
parallel node-loops:
2004 * - we want to visit every node @f$i@f$ in the mesh/sparsity graph,
2005 * - and
for every such node we want to visit to every @f$j@f$ such that
2006 * @f$\mathbf{c}_{ij} \not \equiv 0@f$.
2010 * From an algebraic
point of view,
this is equivalent to: visiting
2011 * every row in the
matrix and
for each one of these rows execute a
loop on
2012 * the columns. Node-loops is a core theme of
this tutorial step (see
2013 * the pseudo-code in the introduction) that will repeat over and over
2014 * again. That
's why this is the right time to introduce them.
2018 * We have the thread parallelization capability
2019 * parallel::apply_to_subranges() that is somehow more general than the
2020 * WorkStream framework. In particular, parallel::apply_to_subranges() can
2021 * be used for our node-loops. This functionality requires four input
2022 * arguments which we explain in detail (for the specific case of our
2023 * thread-parallel node loops):
2024 * - The iterator <code>indices.begin()</code> points to a row index.
2025 * - The iterator <code>indices.end()</code> points to a numerically higher
2027 * - The function <code>on_subranges(index_begin, index_end)</code>
2028 * (where <code>index_begin</code> and <code>index_end</code>
2029 * define a sub-range within the range spanned by
2030 * the begin and end iterators defined in the two previous bullets)
2031 * applies an operation to every iterator in such subrange. We may as
2032 * well call <code>on_subranges</code> the "worker".
2033 * - Grainsize: minimum number of iterators (in this case representing
2034 * rows) processed by each thread. We decided for a minimum of 4096
2039 * A minor caveat here is that the iterators <code>indices.begin()</code>
2040 * and <code>indices.end()</code> supplied to
2041 * parallel::apply_to_subranges() have to be random access iterators:
2042 * internally, parallel::apply_to_subranges() will break the range
2043 * defined by the <code>indices.begin()</code> and
2044 * <code>indices.end()</code> iterators into subranges (we want to be
2045 * able to read any entry in those subranges with constant complexity).
2046 * In order to provide such iterators we resort to
2047 * std_cxx20::ranges::iota_view.
2051 * The bulk of the following piece of code is spent defining
2052 * the "worker" <code>on_subranges</code>: i.e. the operation applied at
2053 * each row of the sub-range. Given a fixed <code>row_index</code>
2054 * we want to visit every column/entry in such row. In order to execute
2055 * such columns-loops we use
2056 * <a href="http://www.cplusplus.com/reference/algorithm/for_each/">
2058 * from the standard library, where:
2059 * - <code>sparsity_pattern.begin(row_index)</code>
2060 * gives us an iterator starting at the first column of the row,
2061 * - <code>sparsity_pattern.end(row_index)</code> is an iterator pointing
2062 * at the last column of the row,
2063 * - the last argument required by `std::for_each` is the operation
2064 * applied at each nonzero entry (a lambda expression in this case)
2069 * We note that, parallel::apply_to_subranges() will operate on
2070 * disjoint sets of rows (the subranges) and our goal is to write into
2071 * these rows. Because of the simple nature of the operations we want
2072 * to carry out (computation and storage of normals, and normalization
2073 * of the @f$\mathbf{c}_{ij}@f$ of entries) threads cannot conflict
2074 * attempting to write the same entry (we do not need a scheduler).
2078 * TimerOutput::Scope scope(computing_timer,
2079 * "offline_data - compute |c_ij|, and n_ij");
2081 * const std_cxx20::ranges::iota_view<unsigned int, unsigned int> indices(
2082 * 0, n_locally_relevant);
2084 * const auto on_subranges =
2085 * [&](const auto index_begin, const auto index_end) {
2086 * for (const auto row_index :
2087 * std_cxx20::ranges::iota_view<unsigned int, unsigned int>(
2088 * *index_begin, *index_end))
2092 * First column-loop: we compute and store the entries of the
2093 * matrix norm_matrix and write normalized entries into the
2094 * matrix nij_matrix:
2097 * std::for_each(sparsity_pattern.begin(row_index),
2098 * sparsity_pattern.end(row_index),
2099 * [&](const SparsityPatternIterators::Accessor &jt) {
2101 * gather_get_entry(cij_matrix, &jt);
2102 * const double norm = c_ij.norm();
2104 * set_entry(norm_matrix, &jt, norm);
2105 * for (unsigned int j = 0; j < dim; ++j)
2106 * set_entry(nij_matrix[j], &jt, c_ij[j] / norm);
2111 * parallel::apply_to_subranges(indices.begin(),
2118 * Finally, we normalize the vectors stored in
2119 * <code>OfflineData<dim>::BoundaryNormalMap</code>. This operation has
2120 * not been thread parallelized as it would neither illustrate any
2121 * important concept nor lead to any noticeable speed gain.
2124 * for (auto &it : boundary_normal_map)
2126 * auto &normal = std::get<0>(it.second);
2127 * normal /= (normal.norm() + std::numeric_limits<double>::epsilon());
2134 * At this point we are very much done with anything related to offline data.
2139 * <a name="step_69-EquationofstateandapproximateRiemannsolver"></a>
2140 * <h4>Equation of state and approximate Riemann solver</h4>
2144 * In this section we describe the implementation of the class members of
2145 * the <code>ProblemDescription</code> class. Most of the code here is
2146 * specific to the compressible Euler's equations with an ideal gas law.
2147 * If we wanted to re-purpose @ref step_69
"step-69" for a different conservation law
2148 * (say
for: instance the shallow water equation) most of the
2149 * implementation of
this class would have to change. But most of the
2150 * other classes (in particular those defining loop structures) would
2155 * We start by implementing a number of small member
functions for
2156 * computing <code>momentum</code>, <code>internal_energy</code>,
2157 * <code>pressure</code>, <code>speed_of_sound</code>, and the flux
2158 * <code>f</code> of the system. The functionality of each one of these
2159 *
functions is self-explanatory from their names.
2165 *
template <
int dim>
2167 * ProblemDescription<dim>::momentum(
const state_type &U)
2170 * std::copy_n(&U[1], dim, &result[0]);
2174 *
template <
int dim>
2176 * ProblemDescription<dim>::internal_energy(
const state_type &U)
2178 *
const double &rho = U[0];
2179 *
const auto m = momentum(U);
2180 *
const double &
E = U[dim + 1];
2181 *
return E - 0.5 * m.norm_square() / rho;
2184 *
template <
int dim>
2186 * ProblemDescription<dim>::pressure(
const state_type &U)
2188 *
return (gamma - 1.) * internal_energy(U);
2191 *
template <
int dim>
2193 * ProblemDescription<dim>::speed_of_sound(
const state_type &U)
2195 *
const double &rho = U[0];
2196 *
const double p = pressure(U);
2201 *
template <
int dim>
2203 * ProblemDescription<dim>::flux(
const state_type &U)
2205 *
const double &rho = U[0];
2206 *
const auto m = momentum(U);
2207 *
const auto p = pressure(U);
2208 *
const double &
E = U[dim + 1];
2213 *
for (
unsigned int i = 0; i < dim; ++i)
2215 * result[1 + i] = m * m[i] / rho;
2216 * result[1 + i][i] += p;
2218 * result[dim + 1] = m / rho * (
E + p);
2225 * Now we discuss the computation of @f$\lambda_{\text{
max}}
2226 * (\mathbf{U}_i^{n},\mathbf{U}_j^{n}, \textbf{n}_{ij})@f$. The analysis
2227 * and derivation of sharp upper-bounds of maximum wavespeeds of Riemann
2228 * problems is a very technical endeavor and we cannot include an
2229 * advanced discussion about it in
this tutorial. In
this portion of the
2230 * documentation we will limit ourselves to sketch the main functionality
2231 * of our implementation functions and point to specific academic
2232 * references in order to help the (interested) reader
trace the
2233 * source (and proper mathematical justification) of these ideas.
2237 * In
general, obtaining a sharp guaranteed upper-bound on the maximum
2238 * wavespeed
requires solving a quite expensive
scalar nonlinear problem.
2239 * This is typically done with an iterative solver. In order to simplify
2240 * the presentation in
this example step we decided not to include such
2241 * an iterative scheme. Instead, we will just use an
initial guess as a
2242 * guess
for an upper bound on the maximum wavespeed. More precisely,
2243 * equations (2.11) (3.7), (3.8) and (4.3) of @cite GuermondPopov2016b
2244 * are enough to define a guaranteed upper bound on the maximum
2245 * wavespeed. This estimate is returned by a call to the function
2246 * <code>lambda_max_two_rarefaction()</code>. At its core the
2247 * construction of such an upper bound uses the so-called two-rarefaction
2248 * approximation for the intermediate pressure @f$p^*@f$, see for instance
2249 * Equation (4.46), page 128 in @cite Toro2009.
2253 * The estimate returned by <code>lambda_max_two_rarefaction()</code> is
2254 * guaranteed to be an upper bound, it is in general quite sharp, and
2255 * overall sufficient for our purposes. However, for some specific
2256 * situations (in particular when one of states is close to vacuum
2257 * conditions) such an estimate will be overly pessimistic. That's why we
2258 * used a
second estimate to avoid this degeneracy that will be invoked
2259 * by a call to the function <code>lambda_max_expansion()</code>. The most
2260 * important function here is <code>compute_lambda_max()</code> which
2261 * takes the minimum between the estimates returned by
2262 * <code>lambda_max_two_rarefaction()</code> and
2263 * <code>lambda_max_expansion()</code>.
2267 * We start again by defining a couple of helper functions:
2271 * The
first function takes a state <code>U</code> and a unit vector
2272 * <code>n_ij</code> and computes the <i>projected</i> 1d state in
2273 * direction of the unit vector.
2278 *
template <
int dim>
2280 *
const typename ProblemDescription<dim>::state_type U,
2284 * projected_U[0] = U[0];
2288 * For
this, we have to change the momentum to @f$\textbf{m}\cdot
2289 * n_{ij}@f$ and have to subtract the kinetic energy of the
2290 * perpendicular part from the total energy:
2293 *
const auto m = ProblemDescription<dim>::momentum(U);
2294 * projected_U[1] = n_ij * m;
2296 *
const auto perpendicular_m = m - projected_U[1] * n_ij;
2297 * projected_U[2] = U[1 + dim] - 0.5 * perpendicular_m.norm_square() / U[0];
2301 * We
return the 1
d state in <i>primitive</i> variables instead of
2302 * conserved quantities. The
return array consists of density @f$\rho@f$,
2303 * velocity @f$u@f$, pressure @f$p@f$ and local speed of sound @f$a@f$:
2309 *
return {{projected_U[0],
2310 * projected_U[1] / projected_U[0],
2311 * ProblemDescription<1>::pressure(projected_U),
2312 * ProblemDescription<1>::speed_of_sound(projected_U)}};
2317 * At
this point we also define two small
functions that
return the
2337 * Next, we need two local wavenumbers that are defined in terms of a
2338 * primitive state @f$[\rho, u, p, a]@f$ and a given pressure @f$p^\ast@f$
2339 * @cite GuermondPopov2016 Eqn. (3.7):
2342 * \left(\frac{p^\ast-p}{p}\right)_+}
2344 * Here, the @f$(\cdot)_{+}@f$ denotes the
positive part of the given
2352 * lambda1_minus(
const std::array<double, 4> &riemann_data,
2353 *
const double p_star)
2357 *
constexpr double gamma = ProblemDescription<1>::gamma;
2358 *
const auto u = riemann_data[1];
2359 *
const auto p = riemann_data[2];
2360 *
const auto a = riemann_data[3];
2362 *
const double factor = (
gamma + 1.0) / 2.0 / gamma;
2363 *
const double tmp = positive_part((p_star - p) / p);
2364 *
return u - a *
std::sqrt(1.0 + factor * tmp);
2369 * Analougously @cite GuermondPopov2016 Eqn. (3.8):
2372 * \left(\frac{p^\ast-p}{p}\right)_+}
2380 * lambda3_plus(
const std::array<double, 4> &riemann_data,
const double p_star)
2384 *
constexpr double gamma = ProblemDescription<1>::gamma;
2385 *
const auto u = riemann_data[1];
2386 *
const auto p = riemann_data[2];
2387 *
const auto a = riemann_data[3];
2389 *
const double factor = (
gamma + 1.0) / 2.0 / gamma;
2390 *
const double tmp = positive_part((p_star - p) / p);
2391 *
return u + a *
std::sqrt(1.0 + factor * tmp);
2396 * All that is left to
do is to compute the maximum of @f$\lambda^-@f$ and
2397 * @f$\lambda^+@f$ computed from the left and right primitive state
2398 * (@cite GuermondPopov2016 Eqn. (2.11)), where @f$p^\ast@f$ is given by
2399 * @cite GuermondPopov2016 Eqn (4.3):
2406 * lambda_max_two_rarefaction(const
std::array<double, 4> &riemann_data_i,
2407 * const
std::array<double, 4> &riemann_data_j)
2409 * constexpr double
gamma = ProblemDescription<1>::
gamma;
2410 *
const auto u_i = riemann_data_i[1];
2411 *
const auto p_i = riemann_data_i[2];
2412 *
const auto a_i = riemann_data_i[3];
2413 *
const auto u_j = riemann_data_j[1];
2414 *
const auto p_j = riemann_data_j[2];
2415 *
const auto a_j = riemann_data_j[3];
2417 *
const double numerator = a_i + a_j - (
gamma - 1.) / 2. * (u_j - u_i);
2419 *
const double denominator =
2420 * a_i *
std::pow(p_i / p_j, -1. * (gamma - 1.) / 2. / gamma) + a_j * 1.;
2424 *
const double p_star =
2425 * p_j *
std::pow(numerator / denominator, 2. * gamma / (gamma - 1));
2427 *
const double lambda1 = lambda1_minus(riemann_data_i, p_star);
2428 *
const double lambda3 = lambda3_plus(riemann_data_j, p_star);
2432 *
return std::max(positive_part(lambda3), negative_part(lambda1));
2437 * We compute the
second upper bound of the maximal wavespeed that is, in
2438 *
general, not as sharp as the two-rarefaction estimate. But it will
2439 * save the day in the context of near vacuum conditions when the
2440 * two-rarefaction approximation might attain extreme values:
2442 * \lambda_{\text{
exp}} = \max(u_i,u_j) + 5. \max(a_i, a_j).
2444 * @note The
constant 5.0 multiplying the maximum of the sound speeds
2445 * is <i>neither</i> an ad-hoc
constant, <i>nor</i> a tuning parameter.
2446 * It defines an upper bound
for any @f$\gamma \in [0,5/3]@f$. Do not play
2454 * lambda_max_expansion(
const std::array<double, 4> &riemann_data_i,
2455 *
const std::array<double, 4> &riemann_data_j)
2457 *
const auto u_i = riemann_data_i[1];
2458 *
const auto a_i = riemann_data_i[3];
2459 *
const auto u_j = riemann_data_j[1];
2460 *
const auto a_j = riemann_data_j[3];
2468 * The following is the main function that we are going to call in order to
2469 * compute @f$\lambda_{\text{
max}} (\mathbf{U}_i^{n},\mathbf{U}_j^{n},
2470 * \textbf{n}_{ij})@f$. We simply compute both maximal wavespeed estimates
2471 * and
return the minimum.
2477 * template <int dim>
2479 * ProblemDescription<dim>::compute_lambda_max(
const state_type &U_i,
2480 *
const state_type &U_j,
2483 *
const auto riemann_data_i = riemann_data_from_state(U_i, n_ij);
2484 *
const auto riemann_data_j = riemann_data_from_state(U_j, n_ij);
2486 *
const double lambda_1 =
2487 * lambda_max_two_rarefaction(riemann_data_i, riemann_data_j);
2489 *
const double lambda_2 =
2490 * lambda_max_expansion(riemann_data_i, riemann_data_j);
2492 *
return std::min(lambda_1, lambda_2);
2497 * We conclude
this section by defining
static arrays
2498 * <code>component_names</code> that contain strings describing the
2499 * component names of our state vector. We have
template specializations
2500 *
for dimensions one, two and three, that are used later in
DataOut for
2501 * naming the corresponding components:
2508 *
const std::array<std::string, 3> ProblemDescription<1>::component_names{
2509 * {
"rho",
"m",
"E"}};
2512 *
const std::array<std::string, 4> ProblemDescription<2>::component_names{
2513 * {
"rho",
"m_1",
"m_2",
"E"}};
2516 *
const std::array<std::string, 5> ProblemDescription<3>::component_names{
2517 * {
"rho",
"m_1",
"m_2",
"m_3",
"E"}};
2522 * <a name=
"step_69-Initialvalues"></a>
2523 * <h4>Initial values</h4>
2527 * The last preparatory step, before we discuss the implementation of the
2528 * forward Euler scheme, is to briefly implement the `InitialValues`
class.
2532 * In the constructor we initialize all parameters with
default values,
2534 * <code>parse_parameters_call_back</code> slot to the respective signal.
2538 * The <code>parse_parameters_call_back</code> slot will be invoked from
2540 * that regard, its use is appropriate
for situations where the
2541 * parameters have to be postprocessed (in some sense) or some
2542 * consistency condition between the parameters has to be checked.
2548 *
template <
int dim>
2549 * InitialValues<dim>::InitialValues(
const std::string &subsection)
2555 * [&]() { this->parse_parameters_callback(); });
2557 * initial_direction[0] = 1.;
2558 * add_parameter(
"initial direction",
2559 * initial_direction,
2560 *
"Initial direction of the uniform flow field");
2562 * initial_1d_state[0] = ProblemDescription<dim>::gamma;
2563 * initial_1d_state[1] = 3.;
2564 * initial_1d_state[2] = 1.;
2565 * add_parameter(
"initial 1d state",
2567 *
"Initial 1d state (rho, u, p) of the uniform flow field");
2572 * So far the constructor of <code>InitialValues</code> has defined
2573 *
default values
for the two
private members
2574 * <code>initial_direction</code> and <code>initial_1d_state</code> and
2575 * added them to the parameter list. But we have not defined an
2576 * implementation of the only
public member that we really care about,
2577 * which is <code>initial_state()</code> (the function that we are going to
2578 * call to actually evaluate the
initial solution at the mesh nodes). At
2579 * the top of the function, we have to ensure that the provided initial
2580 * direction is not the zero vector.
2584 * @note As commented, we could have avoided
using the method
2585 * <code>parse_parameters_call_back </code> and defined a
class member
2586 * <code>setup()</code> in order to define the implementation of
2587 * <code>initial_state()</code>. But
for illustrative purposes we want to
2588 * document a different way here and use the call back signal from
2595 *
template <
int dim>
2596 *
void InitialValues<dim>::parse_parameters_callback()
2600 *
"Initial shock front direction is set to the zero vector."));
2601 * initial_direction /= initial_direction.norm();
2605 * Next, we implement the <code>initial_state</code> function
object
2606 * with a
lambda function computing a uniform flow field. For
this we
2607 * have to translate a given primitive 1
d state (density @f$\rho@f$,
2608 * velocity @f$u@f$, and pressure @f$p@f$) into a conserved n-dimensional state
2609 * (density @f$\rho@f$, momentum @f$\mathbf{m}@f$, and total energy @f$E@f$).
2615 * initial_state = [
this](
const Point<dim> & ,
double ) {
2616 *
const double rho = initial_1d_state[0];
2617 *
const double u = initial_1d_state[1];
2618 *
const double p = initial_1d_state[2];
2619 *
static constexpr double gamma = ProblemDescription<dim>::gamma;
2624 *
for (
unsigned int i = 0; i < dim; ++i)
2625 * state[1 + i] = rho * u * initial_direction[i];
2627 * state[dim + 1] = p / (
gamma - 1.) + 0.5 * rho * u * u;
2636 * <a name=
"step_69-TheForwardEulerstep"></a>
2637 * <h4>The Forward Euler step</h4>
2641 * The constructor of the <code>%
TimeStepping</code>
class does not contain
2642 * any surprising code:
2648 *
template <
int dim>
2652 *
const OfflineData<dim> &offline_data,
2653 *
const InitialValues<dim> &initial_values,
2654 *
const std::string &subsection )
2656 * , mpi_communicator(mpi_communicator)
2657 * , computing_timer(computing_timer)
2658 * , offline_data(&offline_data)
2659 * , initial_values(&initial_values)
2661 * cfl_update = 0.80;
2662 * add_parameter(
"cfl update",
2664 *
"Relative CFL constant used for update");
2669 * In the
class member <code>prepare()</code> we initialize the temporary
2670 * vector <code>temp</code> and the matrix <code>dij_matrix</code>. The
2671 * vector <code>temp</code> will be used to store the solution update
2672 * temporarily before its contents is swapped with the old vector.
2678 *
template <
int dim>
2679 *
void TimeStepping<dim>::prepare()
2682 *
"time_stepping - prepare scratch space");
2684 *
for (
auto &it : temporary_vector)
2685 * it.
reinit(offline_data->partitioner);
2687 * dij_matrix.reinit(offline_data->sparsity_pattern);
2692 * It is now time to implement the forward Euler step. Given a (writable
2693 * reference) to the old state <code>U</code> at time @f$t@f$ we update the
2694 * state <code>U</code> in place and
return the chosen time-step size. We
2695 *
first declare a number of read-only references to various different
2696 * variables and data structures. We
do this is mainly to have shorter
2697 * variable names (
e.g., <code>sparsity</code> instead of
2698 * <code>offline_data->sparsity_pattern</code>).
2704 *
template <
int dim>
2705 *
double TimeStepping<dim>::make_one_step(vector_type &U,
const double t)
2707 *
const auto &n_locally_owned = offline_data->n_locally_owned;
2708 *
const auto &n_locally_relevant = offline_data->n_locally_relevant;
2711 * indices_owned(0, n_locally_owned);
2713 * indices_relevant(0, n_locally_relevant);
2715 *
const auto &sparsity = offline_data->sparsity_pattern;
2717 *
const auto &lumped_mass_matrix = offline_data->lumped_mass_matrix;
2718 *
const auto &norm_matrix = offline_data->norm_matrix;
2719 *
const auto &nij_matrix = offline_data->nij_matrix;
2720 *
const auto &cij_matrix = offline_data->cij_matrix;
2722 *
const auto &boundary_normal_map = offline_data->boundary_normal_map;
2726 * <
b>Step 1</
b>: Computing the @f$d_{ij}@f$ graph viscosity
matrix.
2730 * It is important to highlight that the viscosity
matrix has to be
2731 *
symmetric, i.e., @f$d_{ij} = d_{ji}@f$. In
this regard we note here that
2732 * @f$\int_{\Omega} \nabla \phi_j \phi_i \, \mathrm{
d}\mathbf{x}= -
2733 * \int_{\Omega} \nabla \phi_i \phi_j \, \mathrm{
d}\mathbf{x}@f$ (or
2734 * equivalently @f$\mathbf{c}_{ij} = - \mathbf{c}_{ji}@f$) provided either
2735 * @f$\mathbf{x}_i@f$ or @f$\mathbf{x}_j@f$ is a support
point located away
2736 * from the boundary. In
this case we can
check that
2737 * @f$\lambda_{\text{
max}} (\mathbf{U}_i^{n}, \mathbf{U}_j^{n},
2738 * \textbf{n}_{ij}) = \lambda_{\text{
max}} (\mathbf{U}_j^{n},
2739 * \mathbf{U}_i^{n},\textbf{n}_{ji})@f$ by construction, which guarantees
2740 * the property @f$d_{ij} = d_{ji}@f$.
2744 * However,
if both support points @f$\mathbf{x}_i@f$ or @f$\mathbf{x}_j@f$
2745 * happen to lie on the boundary, then, the equalities @f$\mathbf{c}_{ij} =
2746 * - \mathbf{c}_{ji}@f$ and @f$\lambda_{\text{
max}} (\mathbf{U}_i^{n},
2747 * \mathbf{U}_j^{n}, \textbf{n}_{ij}) = \lambda_{\text{
max}}
2748 * (\mathbf{U}_j^{n}, \mathbf{U}_i^{n}, \textbf{n}_{ji})@f$
do not
2749 * necessarily hold
true. The only mathematically safe solution
for this
2750 * dilemma is to compute both of them @f$d_{ij}@f$ and @f$d_{ji}@f$ and
2755 * Overall, the computation of @f$d_{ij}@f$ is quite expensive. In
2756 * order to save some computing time we exploit the fact that the viscosity
2758 * the upper-triangular entries of @f$d_{ij}@f$ and
copy the
2759 * corresponding entries to the lower-triangular counterpart.
2764 * loops. Pretty much all the ideas for
parallel traversal that we
2765 * introduced when discussing the assembly of the
matrix
2766 * <code>norm_matrix</code> and the normalization of
2767 * <code>nij_matrix</code> above are used here again.
2771 * We define again a
"worker" function <code>on_subranges</code> that
2772 * computes the viscosity @f$d_{ij}@f$ for a subrange `[*index_begin,
2773 * *index_end)` of column indices:
2778 *
"time_stepping - 1 compute d_ij");
2780 *
const auto on_subranges =
2781 * [&](
const auto index_begin,
const auto index_end) {
2782 *
for (
const auto i :
2784 * *index_begin, *index_end))
2786 * const auto U_i =
gather(U, i);
2790 * For a given column
index i we iterate over the columns of the
2791 * sparsity pattern from <code>sparsity.begin(i)</code> to
2792 * <code>sparsity.end(i)</code>:
2795 *
for (
auto jt = sparsity.begin(i); jt != sparsity.end(i); ++jt)
2797 *
const auto j = jt->column();
2801 * We only compute @f$d_{ij}@f$
if @f$j < i@f$ (upper triangular
2802 * entries) and later
copy the values over to @f$d_{ji}@f$.
2808 *
const auto U_j =
gather(U, j);
2810 *
const auto n_ij = gather_get_entry(nij_matrix, jt);
2811 *
const double norm = get_entry(norm_matrix, jt);
2813 *
const auto lambda_max =
2814 * ProblemDescription<dim>::compute_lambda_max(U_i, U_j, n_ij);
2816 *
double d =
norm * lambda_max;
2820 * If both support points happen to be at the boundary we
2821 * have to compute @f$d_{ji}@f$ as well and then take
2822 * @f$\max(d_{ij},d_{ji})@f$. After
this we can
finally set the
2823 * upper triangular and lower triangular entries.
2826 * if (boundary_normal_map.count(i) != 0 &&
2827 * boundary_normal_map.count(j) != 0)
2829 *
const auto n_ji =
gather(nij_matrix, j, i);
2830 *
const auto lambda_max_2 =
2831 * ProblemDescription<dim>::compute_lambda_max(U_j,
2834 *
const double norm_2 = norm_matrix(j, i);
2836 *
d =
std::max(d, norm_2 * lambda_max_2);
2839 * set_entry(dij_matrix, jt, d);
2840 * dij_matrix(j, i) =
d;
2846 * indices_relevant.end(),
2853 * <
b>Step 2</
b>: Compute
diagonal entries @f$d_{ii}@f$ and
2854 * @f$\tau_{\text{
max}}@f$.
2859 * <code>dij_matrix</code>. We still have to fill its
diagonal entries
2860 * defined as @f$d_{ii}^n = - \sum_{j \in \mathcal{I}(i)\backslash \{i\}}
2862 * purpose. While computing the @f$d_{ii}@f$s we also determine the
2863 * largest admissible time-step, which is defined as
2865 * \tau_n \dealcoloneq c_{\text{cfl}}\,\min_{i\in\mathcal{V}}
2866 * \left(\frac{m_i}{-2\,d_{ii}^{n}}\right) \, .
2868 * Note that the operation @f$\min_{i \in \mathcal{V}}@f$ is intrinsically
2869 * global, it operates on all nodes:
first we have to take the minimum
2870 * over all threads (of a given node) and then we have to take the
2871 * minimum over all
MPI processes. In the current implementation:
2872 * - We store <code>tau_max</code> (per node) as
2874 * href=
"http://www.cplusplus.com/reference/atomic/atomic/"><code>std::atomic<double></code></a>.
2875 * The
internal implementation of <code>std::atomic</code> will take
2876 * care of guarding any possible race condition when more than one
2877 * thread attempts to read and/or write <code>tau_max</code> at the
2879 * - In order to take the minimum over all
MPI process we use the utility
2886 * std::atomic<double> tau_max{std::numeric_limits<double>::infinity()};
2890 *
"time_stepping - 2 compute d_ii, and tau_max");
2894 * on_subranges() will be executed on every thread individually. The
2895 * variable <code>tau_max_on_subrange</code> is thus stored thread
2902 * const auto on_subranges =
2903 * [&](const auto index_begin, const auto index_end) {
2904 *
double tau_max_on_subrange = std::numeric_limits<double>::infinity();
2906 *
for (
const auto i :
2908 * *index_begin, *index_end))
2910 * double d_sum = 0.;
2912 *
for (
auto jt = sparsity.begin(i); jt != sparsity.end(i); ++jt)
2914 *
const auto j = jt->column();
2919 * d_sum -= get_entry(dij_matrix, jt);
2924 * We store the
negative sum of the d_ij entries at the
2928 * dij_matrix.diag_element(i) = d_sum;
2931 * and compute the maximal local time-step size
2935 *
const double mass = lumped_mass_matrix.diag_element(i);
2936 *
const double tau = cfl_update * mass / (-2. * d_sum);
2937 * tau_max_on_subrange =
std::min(tau_max_on_subrange, tau);
2942 * <code>tau_max_on_subrange</code> contains the largest possible
2943 * time-step size computed
for the (thread local) subrange. At
this
2944 *
point we have to synchronize the
value over all threads. This is
2945 * were we use the <a
2946 * href=
"http://www.cplusplus.com/reference/atomic/atomic/"><code>std::atomic<double></code></a>
2947 * <i>compare exchange</i> update mechanism:
2950 *
double current_tau_max = tau_max.load();
2951 *
while (current_tau_max > tau_max_on_subrange &&
2952 * !tau_max.compare_exchange_weak(current_tau_max,
2953 * tau_max_on_subrange))
2958 * indices_relevant.end(),
2964 * After all threads have finished we can simply synchronize the
2975 * This is a good
point to verify that the computed
2976 * <code>tau_max</code> is indeed a
valid floating
point number.
2980 * !std::isnan(tau_max.load()) && !std::isinf(tau_max.load()) &&
2981 * tau_max.load() > 0.,
2983 *
"I'm sorry, Dave. I'm afraid I can't do that. - We crashed."));
2988 * <
b>Step 3</
b>: Perform update.
2992 * At
this point, we have computed all viscosity coefficients @f$d_{ij}@f$
2993 * and we know the maximal admissible time-step size
2994 * @f$\tau_{\text{
max}}@f$. This means we can now compute the update:
2999 * \mathbf{U}_i^{n+1} = \mathbf{U}_i^{n} - \frac{\tau_{\text{
max}} }{m_i}
3000 * \sum_{j \in \mathcal{I}(i)} (\mathbb{f}(\mathbf{U}_j^{n}) -
3001 * \mathbb{f}(\mathbf{U}_i^{n})) \cdot \mathbf{c}_{ij} - d_{ij}
3002 * (\mathbf{U}_j^{n} - \mathbf{U}_i^{n})
3007 * This update formula is slightly different from what was discussed in
3008 * the introduction (in the pseudo-code). However, it can be shown that
3009 * both equations are algebraically equivalent (they will produce the
3010 * same numerical values). We favor
this second formula since it has
3011 * natural cancellation properties that might help avoid numerical
3020 *
"time_stepping - 3 perform update");
3022 *
const auto on_subranges =
3023 * [&](
const auto index_begin,
const auto index_end) {
3024 *
for (
const auto i :
3027 *
Assert(i < n_locally_owned, ExcInternalError());
3029 *
const auto U_i =
gather(U, i);
3031 *
const auto f_i = ProblemDescription<dim>::flux(U_i);
3032 *
const double m_i = lumped_mass_matrix.diag_element(i);
3034 *
auto U_i_new = U_i;
3036 *
for (
auto jt = sparsity.begin(i); jt != sparsity.end(i); ++jt)
3038 *
const auto j = jt->column();
3040 *
const auto U_j =
gather(U, j);
3041 *
const auto f_j = ProblemDescription<dim>::flux(U_j);
3043 *
const auto c_ij = gather_get_entry(cij_matrix, jt);
3044 *
const auto d_ij = get_entry(dij_matrix, jt);
3046 *
for (
unsigned int k = 0; k < n_solution_variables; ++k)
3050 * (-(f_j[k] - f_i[k]) * c_ij + d_ij * (U_j[k] - U_i[k]));
3054 *
scatter(temporary_vector, U_i_new, i);
3059 * indices_owned.end(),
3066 * <
b>Step 4</
b>: Fix up boundary states.
3070 * As a last step in the Forward Euler method, we have to fix up all
3071 * boundary states. As discussed in the intro we
3072 * -
advance in time satisfying no boundary condition at all,
3073 * - at the
end of the time step enforce boundary conditions strongly
3074 * in a post-processing step.
3078 * Here, we compute the correction
3080 * \mathbf{m}_i \dealcoloneq \mathbf{m}_i - (\boldsymbol{\nu}_i \cdot
3081 * \mathbf{m}_i) \boldsymbol{\nu}_i,
3083 * which removes the normal component of @f$\mathbf{m}@f$.
3091 *
"time_stepping - 4 fix boundary states");
3093 *
for (
const auto &it : boundary_normal_map)
3095 * const auto i = it.
first;
3099 * We only iterate over the locally owned subset:
3102 *
if (i >= n_locally_owned)
3105 *
const auto &normal = std::get<0>(it.second);
3106 *
const auto &
id = std::get<1>(it.second);
3107 *
const auto &position = std::get<2>(it.second);
3109 *
auto U_i =
gather(temporary_vector, i);
3113 * On
free slip boundaries we remove the normal component of the
3117 *
if (
id == Boundaries::free_slip)
3119 *
auto m = ProblemDescription<dim>::momentum(U_i);
3120 * m -= (m * normal) * normal;
3121 *
for (
unsigned int k = 0; k < dim; ++k)
3122 * U_i[k + 1] = m[k];
3127 * On Dirichlet boundaries we enforce
initial conditions
3131 *
else if (
id == Boundaries::dirichlet)
3133 * U_i = initial_values->initial_state(position, t + tau_max);
3136 *
scatter(temporary_vector, U_i, i);
3142 * <
b>Step 5</
b>: We now update the ghost layer over all
MPI ranks,
3143 *
swap the temporary vector with the solution vector <code>U</code>
3144 * (that will get returned by reference) and
return the chosen
3145 * time-step size @f$\tau_{\text{
max}}@f$:
3151 *
for (
auto &it : temporary_vector)
3152 * it.update_ghost_values();
3154 * U.swap(temporary_vector);
3162 * <a name=
"step_69-Schlierenpostprocessing"></a>
3163 * <h4>Schlieren postprocessing</h4>
3167 * At various intervals we will output the current state <code>U</code>
3168 * of the solution together with a so-called Schlieren plot.
3169 * The constructor of the <code>SchlierenPostprocessor</code>
class again
3170 * contains no surprises. We simply supply
default values to and
register
3173 * is an ad-hoc
positive amplification factor in order to enhance the
3174 * contrast in the visualization. Its actual
value is a matter of
3176 * - schlieren_index: is an integer indicating which component of the
3177 * state @f$[\rho, \mathbf{m},
E]@f$ are we going to use in order to generate
3178 * the visualization.
3184 *
template <
int dim>
3185 * SchlierenPostprocessor<dim>::SchlierenPostprocessor(
3188 *
const OfflineData<dim> &offline_data,
3189 *
const std::string &subsection )
3191 * , mpi_communicator(mpi_communicator)
3192 * , computing_timer(computing_timer)
3193 * , offline_data(&offline_data)
3195 * schlieren_beta = 10.;
3196 * add_parameter(
"schlieren beta",
3198 *
"Beta factor used in Schlieren-type postprocessor");
3200 * schlieren_index = 0;
3201 * add_parameter(
"schlieren index",
3203 *
"Use the corresponding component of the state vector for the "
3204 *
"schlieren plot");
3209 * Again, the <code>prepare()</code> function initializes two temporary
3210 * the vectors (<code>r</code> and <code>schlieren</code>).
3216 *
template <
int dim>
3217 *
void SchlierenPostprocessor<dim>::prepare()
3220 *
"schlieren_postprocessor - prepare scratch space");
3222 * r.reinit(offline_data->n_locally_relevant);
3223 * schlieren.reinit(offline_data->partitioner);
3228 * We now discuss the implementation of the
class member
3229 * <code>SchlierenPostprocessor<dim>::compute_schlieren()</code>, which
3230 * basically takes a component of the state vector <code>U</code> and
3231 * computes the Schlieren indicator
for such component (the formula of the
3232 * Schlieren indicator can be found just before the declaration of the
class
3233 * <code>SchlierenPostprocessor</code>). We start by noting
3234 * that
this formula
requires the
"nodal gradients" @f$\nabla r_j@f$.
3235 * However, nodal values of
gradients are not defined
for @f$\mathcal{
C}^0@f$
3236 * finite element
functions. More generally, pointwise values of
3238 * simplest technique we can use to recover gradients at nodes is
3239 * weighted-averaging i.e.
3243 * \f[ \nabla r_j \dealcoloneq \frac{1}{\int_{S_i} \omega_i(\mathbf{x}) \,
3244 * \mathrm{
d}\mathbf{x}}
3245 * \int_{S_i} r_h(\mathbf{x}) \omega_i(\mathbf{x}) \, \mathrm{
d}\mathbf{x}
3246 * \ \ \ \ \ \mathbf{(*)} \f]
3250 * where @f$S_i@f$ is the support of the shape function @f$\phi_i@f$, and
3251 * @f$\omega_i(\mathbf{x})@f$ is the weight. The weight could be any
3252 * positive function such as
3253 * @f$\omega_i(\mathbf{x}) \equiv 1@f$ (that would allow us to recover the usual
3254 * notion of mean value). But as usual, the goal is to reuse the off-line
3255 * data as much as possible. In
this sense, the most natural
3256 * choice of weight is @f$\omega_i = \phi_i@f$. Inserting
this choice of
3257 * weight and the expansion @f$r_h(\mathbf{x}) = \sum_{j \in \mathcal{V}}
3258 * r_j \phi_j(\mathbf{x})@f$ into @f$\mathbf{(*)}@f$ we get :
3262 * \f[ \nabla r_j \dealcoloneq \frac{1}{m_i} \sum_{j \in \mathcal{I}(i)} r_j
3263 * \mathbf{c}_{ij} \ \ \ \ \ \mathbf{(**)} \, . \f]
3267 * Using
this last formula we can recover averaged nodal
gradients without
3268 * resorting to any form of quadrature. This idea aligns quite well with
3269 * the whole spirit of edge-based schemes (or algebraic schemes) where
3270 * we want to operate on matrices and vectors as directly as
3271 * it could be possible avoiding by all means assembly of bilinear
3272 * forms, cell-loops, quadrature, or any other
3273 * intermediate construct/operation between the input arguments (the state
3274 * from the previous time-step) and the actual matrices and vectors
3275 * required to compute the update.
3279 * The
second thing to note is that we have to compute global minimum and
3280 * maximum @f$\max_j |\nabla r_j|@f$ and @f$\min_j |\nabla r_j|@f$. Following the
3281 * same ideas used to compute the time step size in the
class member
3282 * <code>%
TimeStepping\<dim>::%step()</code> we define @f$\max_j |\nabla r_j|@f$
3283 * and @f$\min_j |\nabla r_j|@f$ as atomic doubles in order to resolve any
3284 * conflicts between threads. As usual, we use
3287 * among all
MPI processes.
3291 * Finally, it is not possible to compute the Schlieren indicator in a single
3292 *
loop over all nodes. The entire operation
requires two loops over nodes:
3296 * - The
first loop computes @f$|\nabla r_i|@f$
for all @f$i \in \mathcal{V}@f$ in
3297 * the mesh, and the bounds @f$\max_j |\nabla r_j|@f$ and
3298 * @f$\min_j |\nabla r_j|@f$.
3299 * - The
second loop finally computes the Schlieren indicator
using the
3304 * \f[ \text{schlieren}[i] =
e^{\beta \frac{ |\nabla r_i|
3305 * - \min_j |\nabla r_j| }{\max_j |\nabla r_j| - \min_j |\nabla r_j| } }
3310 * This means that we will have to define two workers
3311 * <code>on_subranges</code>
for each one of these stages.
3317 *
template <
int dim>
3318 *
void SchlierenPostprocessor<dim>::compute_schlieren(
const vector_type &U)
3321 * computing_timer,
"schlieren_postprocessor - compute schlieren plot");
3323 *
const auto &sparsity = offline_data->sparsity_pattern;
3324 *
const auto &lumped_mass_matrix = offline_data->lumped_mass_matrix;
3325 *
const auto &cij_matrix = offline_data->cij_matrix;
3326 *
const auto &boundary_normal_map = offline_data->boundary_normal_map;
3327 *
const auto &n_locally_owned = offline_data->n_locally_owned;
3329 *
const auto indices =
3335 * We define the r_i_max and r_i_min in the current
MPI process as
3336 * atomic doubles in order to avoid race conditions between threads:
3339 * std::atomic<double> r_i_max{0.};
3340 * std::atomic<double> r_i_min{std::numeric_limits<double>::infinity()};
3344 * First
loop: compute the averaged
gradient at each node and the
3345 * global maxima and minima of the
gradients.
3349 *
const auto on_subranges =
3350 * [&](
const auto index_begin,
const auto index_end) {
3351 *
double r_i_max_on_subrange = 0.;
3352 *
double r_i_min_on_subrange = std::numeric_limits<double>::infinity();
3354 *
for (
const auto i :
3357 *
Assert(i < n_locally_owned, ExcInternalError());
3361 *
for (
auto jt = sparsity.begin(i); jt != sparsity.end(i); ++jt)
3363 *
const auto j = jt->column();
3368 *
const auto U_js = U[schlieren_index].local_element(j);
3369 *
const auto c_ij = gather_get_entry(cij_matrix, jt);
3370 * r_i += c_ij * U_js;
3375 * We fix up the
gradient r_i at
free slip boundaries similarly to
3376 * how we fixed up boundary states in the forward Euler step.
3377 * This avoids sharp, artificial
gradients in the Schlieren
3378 * plot at
free slip boundaries and is a purely cosmetic choice.
3384 *
const auto bnm_it = boundary_normal_map.find(i);
3385 *
if (bnm_it != boundary_normal_map.end())
3387 *
const auto &normal = std::get<0>(bnm_it->second);
3388 *
const auto &
id = std::get<1>(bnm_it->second);
3390 *
if (
id == Boundaries::free_slip)
3391 * r_i -= 1. * (r_i * normal) * normal;
3398 * We remind the reader that we are not interested in the nodal
3399 *
gradients per se. We only want their norms in order to
3400 * compute the Schlieren indicator (weighted with the lumped
3401 * mass matrix @f$m_i@f$):
3404 * const double m_i = lumped_mass_matrix.diag_element(i);
3405 * r[i] = r_i.norm() / m_i;
3406 * r_i_max_on_subrange =
std::max(r_i_max_on_subrange, r[i]);
3407 * r_i_min_on_subrange =
std::min(r_i_min_on_subrange, r[i]);
3412 * We compare the current_r_i_max and current_r_i_min (in the
3413 * current subrange) with r_i_max and r_i_min (
for the current
MPI
3414 * process) and update them
if necessary:
3420 *
double current_r_i_max = r_i_max.load();
3421 *
while (current_r_i_max < r_i_max_on_subrange &&
3422 * !r_i_max.compare_exchange_weak(current_r_i_max,
3423 * r_i_max_on_subrange))
3426 *
double current_r_i_min = r_i_min.load();
3427 *
while (current_r_i_min > r_i_min_on_subrange &&
3428 * !r_i_min.compare_exchange_weak(current_r_i_min,
3429 * r_i_min_on_subrange))
3441 * And synchronize <code>r_i_max</code> and <code>r_i_min</code> over
3442 * all
MPI processes.
3453 * Second
loop: we now have the vector <code>r</code> and the scalars
3454 * <code>r_i_max</code> and <code>r_i_min</code> at our disposal. We
3455 * are thus in a position to actually compute the Schlieren indicator.
3462 *
const auto on_subranges =
3463 * [&](
const auto index_begin,
const auto index_end) {
3464 *
for (
const auto i :
3467 *
Assert(i < n_locally_owned, ExcInternalError());
3469 * schlieren.local_element(i) =
3470 * 1. -
std::exp(-schlieren_beta * (r[i] - r_i_min) /
3471 * (r_i_max - r_i_min));
3483 * And
finally, exchange ghost elements.
3486 * schlieren.update_ghost_values();
3492 * <a name=
"step_69-Themainloop"></a>
3493 * <h4>The main
loop</h4>
3497 * With all classes implemented it is time to create an instance of
3498 * <code>Discretization<dim></code>, <code>OfflineData<dim></code>,
3499 * <code>InitialValues<dim></code>, <code>%
TimeStepping\<dim></code>, and
3500 * <code>SchlierenPostprocessor<dim></code>, and
run the forward Euler
3505 * In the constructor of <code>MainLoop<dim></code> we now initialize an
3506 * instance of all classes, and declare a number of parameters
3507 * controlling output. Most notable, we declare a
boolean parameter
3508 * <code>resume</code> that will control whether the program attempts to
3509 * restart from an interrupted computation, or not.
3515 *
template <
int dim>
3516 * MainLoop<dim>::MainLoop(
const MPI_Comm mpi_communicator)
3518 * , mpi_communicator(mpi_communicator)
3519 * , computing_timer(mpi_communicator,
3524 * , discretization(mpi_communicator, computing_timer,
"B - Discretization")
3525 * , offline_data(mpi_communicator,
3528 *
"C - OfflineData")
3529 * , initial_values(
"D - InitialValues")
3530 * , time_stepping(mpi_communicator,
3534 *
"E - TimeStepping")
3535 * , schlieren_postprocessor(mpi_communicator,
3538 *
"F - SchlierenPostprocessor")
3540 * base_name =
"test";
3541 * add_parameter(
"basename", base_name,
"Base name for all output files");
3544 * add_parameter(
"final time", t_final,
"Final time");
3546 * output_granularity = 0.02;
3547 * add_parameter(
"output granularity",
3548 * output_granularity,
3549 *
"time interval for output");
3551 * asynchronous_writeback =
true;
3552 * add_parameter(
"asynchronous writeback",
3553 * asynchronous_writeback,
3554 *
"Write out solution in a background thread performing IO");
3557 * add_parameter(
"resume", resume,
"Resume an interrupted computation.");
3562 * We start by implementing a helper function <code>print_head()</code>
3563 * in an anonymous
namespace that is used to output messages in the
3564 * terminal with some nice formatting.
3573 *
const std::string &header,
3574 *
const std::string &secondary =
"")
3576 *
const auto header_size = header.size();
3577 *
const auto padded_header = std::string((34 - header_size) / 2,
' ') +
3579 * std::string((35 - header_size) / 2,
' ');
3581 *
const auto secondary_size = secondary.size();
3582 *
const auto padded_secondary =
3583 * std::string((34 - secondary_size) / 2,
' ') + secondary +
3584 * std::string((35 - secondary_size) / 2,
' ');
3587 * pcout << std::endl;
3588 * pcout <<
" ####################################################" << std::endl;
3589 * pcout <<
" ######### #########" << std::endl;
3590 * pcout <<
" #########" << padded_header <<
"#########" << std::endl;
3591 * pcout <<
" #########" << padded_secondary <<
"#########" << std::endl;
3592 * pcout <<
" ######### #########" << std::endl;
3593 * pcout <<
" ####################################################" << std::endl;
3594 * pcout << std::endl;
3601 * With <code>print_head</code> in place it is now time to implement the
3602 * <code>MainLoop<dim>::run()</code> that contains the main
loop of our
3609 *
template <
int dim>
3610 *
void MainLoop<dim>::run()
3614 * We start by reading in parameters and initializing all objects. We
3616 * all parameters from the parameter file (whose name is given as a
3619 * declarations
for all
class instances that are derived from
3620 * ParameterAceptor. The call to initialize enters the subsection
for
3621 * each each derived
class, and sets all variables that were added
3628 * pcout <<
"Reading parameters and allocating objects... " << std::flush;
3631 * pcout <<
"done" << std::endl;
3636 * scratch space, and initialize the
DataOut<dim> object. All of these
3637 * operations are pretty standard and discussed in detail in the
3638 * Discretization and OfflineData classes.
3645 * print_head(pcout,
"create triangulation");
3647 * discretization.setup();
3650 * discretization.triangulation.load(base_name +
"-checkpoint.mesh");
3652 * discretization.triangulation.refine_global(discretization.refinement);
3654 * pcout <<
"Number of active cells: "
3655 * << discretization.triangulation.n_global_active_cells()
3658 * print_head(pcout,
"compute offline data");
3659 * offline_data.setup();
3660 * offline_data.assemble();
3662 * pcout <<
"Number of degrees of freedom: "
3663 * << offline_data.dof_handler.n_dofs() << std::endl;
3665 * print_head(pcout,
"set up time step");
3666 * time_stepping.prepare();
3667 * schlieren_postprocessor.prepare();
3672 * We will store the current time and state in the variable
3673 * <code>t</code> and vector <code>U</code>:
3680 *
unsigned int output_cycle = 0;
3683 *
for (
auto &it : U)
3684 * it.
reinit(offline_data.partitioner);
3689 * <a name=
"step_69-Resume"></a>
3694 * By
default the boolean <code>resume</code> is
set to
false, i.e. the
3695 * following code snippet is not
run. However,
if
3696 * <code>resume==
true</code> we indicate that we have indeed an
3697 * interrupted computation and the program shall restart by reading in
3698 * an old state consisting of <code>t</code>,
3699 * <code>output_cycle</code>, and the state vector <code>U</code> from
3704 * A
this point we have already read in the stored refinement history
3705 * of our
parallel distributed mesh. What is missing are the actual
3706 * state vector <code>U</code>, the time and output cycle. We use the
3708 * distributed::Triangulation::load() /
3709 * distributed::Triangulation::save() mechanism to read in the state
3710 * vector. A separate <code>
boost::archive</code> is used to retrieve
3711 * <code>t</code> and <code>output_cycle</code>. The checkpoint files
3712 * will be created in the <code>output()</code> routine discussed
3721 * print_head(pcout,
"resume interrupted computation");
3725 * solution_transfer(offline_data.dof_handler);
3727 * std::vector<LinearAlgebra::distributed::Vector<double> *> vectors;
3728 * std::transform(U.begin(),
3730 * std::back_inserter(vectors),
3731 * [](
auto &it) { return ⁢ });
3732 * solution_transfer.deserialize(vectors);
3734 *
for (
auto &it : U)
3735 * it.update_ghost_values();
3737 * std::ifstream file(base_name +
"-checkpoint.metadata",
3738 * std::ios::binary);
3740 * boost::archive::binary_iarchive ia(file);
3741 * ia >> t >> output_cycle;
3745 * print_head(pcout,
"interpolate initial values");
3746 * U = interpolate_initial_values();
3751 * With either the
initial state
set up, or an interrupted state
3752 * restored it is time to enter the main
loop:
3758 * output(U, base_name, t, output_cycle++);
3760 * print_head(pcout,
"enter main loop");
3762 *
unsigned int timestep_number = 1;
3763 *
while (t < t_final)
3767 * We
first print an informative status message
3773 * std::ostringstream head;
3774 * std::ostringstream secondary;
3778 * << std::fixed << std::setprecision(1) << t / t_final * 100
3780 * secondary <<
"at time t = " << std::setprecision(8) << std::fixed << t;
3782 * print_head(pcout, head.str(), secondary.str());
3786 * and then perform a single forward Euler step. Note that the
3787 * state vector <code>U</code> is updated in place and that
3788 * <code>time_stepping.make_one_step()</code> returns the chosen step
3795 * t += time_stepping.make_one_step(U, t);
3799 * Post processing, generating output and writing out the current
3800 * state is a CPU and IO intensive task that we cannot afford to
do
3801 * every time step - in particular with
explicit time stepping. We
3802 * thus only schedule output by calling the <code>output()</code>
3803 * function
if we are past a threshold
set by
3804 * <code>output_granularity</code>.
3810 *
if (t > output_cycle * output_granularity)
3812 * checkpoint(U, base_name, t, output_cycle);
3813 * output(U, base_name, t, output_cycle);
3817 * ++timestep_number;
3822 * We wait
for any remaining background output thread to finish before
3823 * printing a summary and exiting.
3826 *
if (background_thread_state.valid())
3827 * background_thread_state.wait();
3829 * computing_timer.print_summary();
3830 * pcout << timer_output.str() << std::endl;
3835 * The <code>interpolate_initial_values</code> takes an
initial time
"t"
3836 * as input argument and populates a state vector <code>U</code> with the
3837 * help of the <code>InitialValues<dim>::initial_state</code>
object.
3843 *
template <
int dim>
3844 *
typename MainLoop<dim>::vector_type
3845 * MainLoop<dim>::interpolate_initial_values(
const double t)
3847 * pcout <<
"MainLoop<dim>::interpolate_initial_values(t = " << t <<
')'
3850 *
"main_loop - setup scratch space");
3854 *
for (
auto &it : U)
3855 * it.
reinit(offline_data.partitioner);
3857 *
constexpr auto n_solution_variables =
3858 * ProblemDescription<dim>::n_solution_variables;
3862 * The function signature of
3863 * <code>InitialValues<dim>::initial_state</code> is not quite right
3865 * creating a
lambda function that
for a given position <code>x</code>
3866 * returns just the
value of the <code>i</code>th component. This
3871 *
for (
unsigned int i = 0; i < n_solution_variables; ++i)
3875 * return initial_values.initial_state(x, t)[i];
3879 *
for (
auto &it : U)
3880 * it.update_ghost_values();
3888 * <a name=
"step_69-Outputandcheckpointing"></a>
3889 * <h5>Output and checkpointing</h5>
3893 * We checkpoint the current state by doing the precise inverse
3894 * operation to what we discussed
for the <a href=
"Resume">resume
3901 *
template <
int dim>
3902 *
void MainLoop<dim>::checkpoint(
const typename MainLoop<dim>::vector_type &U,
3903 *
const std::string &name,
3905 *
const unsigned int cycle)
3907 * print_head(pcout,
"checkpoint computation");
3911 * solution_transfer(offline_data.dof_handler);
3913 * std::vector<const LinearAlgebra::distributed::Vector<double> *> vectors;
3914 * std::transform(U.begin(),
3916 * std::back_inserter(vectors),
3917 * [](
auto &it) { return ⁢ });
3919 * solution_transfer.prepare_for_serialization(vectors);
3921 * discretization.triangulation.save(name +
"-checkpoint.mesh");
3925 * std::ofstream file(name +
"-checkpoint.metadata", std::ios::binary);
3926 * boost::archive::binary_oarchive oa(file);
3933 * Writing out the
final vtk files is quite an IO intensive task that can
3934 * stall the main
loop for a
while. In order to avoid
this we use an <a
3935 * href=
"https://en.wikipedia.org/wiki/Asynchronous_I/O">asynchronous
3936 * IO</a> strategy by creating a background thread that will perform IO
3937 *
while the main
loop is allowed to
continue. In order
for this to work
3938 * we have to be mindful of two things:
3939 * - Before running the <code>output_worker</code> thread, we have to create
3940 * a
copy of the state vector <code>U</code>. We store it in the
3941 * vector <code>output_vector</code>.
3942 * - We have to avoid any
MPI communication in the background thread,
3943 * otherwise the program might deadlock. This implies that we have to
3944 *
run the postprocessing
outside of the worker thread.
3950 *
template <
int dim>
3951 *
void MainLoop<dim>::output(
const typename MainLoop<dim>::vector_type &U,
3952 *
const std::string &name,
3954 *
const unsigned int cycle)
3956 * pcout <<
"MainLoop<dim>::output(t = " << t <<
')' << std::endl;
3960 * If the asynchronous writeback option is
set we launch a background
3961 * thread performing all the slow IO to disc. In that
case we have to
3962 * make sure that the background thread actually finished running. If
3963 * not, we have to wait to
for it to finish. We launch said background
3965 * href=
"https://en.cppreference.com/w/cpp/thread/async"><code>std::async()</code></a>
3967 * href=
"https://en.cppreference.com/w/cpp/thread/future"><code>std::future</code></a>
3968 *
object. This <code>std::future</code>
object contains the
return
3969 *
value of the function, which is in our
case simply
3970 * <code>
void</code>.
3976 *
if (background_thread_state.valid())
3979 * background_thread_state.wait();
3982 *
constexpr auto n_solution_variables =
3983 * ProblemDescription<dim>::n_solution_variables;
3987 * At
this point we make a
copy of the state vector,
run the schlieren
3989 * output code is standard: We create a
DataOut instance, attach all
3990 * data vectors we want to output and call
3991 *
DataOut<dim>::build_patches(). There is one twist, however. In order
3992 * to perform asynchronous IO on a background thread we create the
3993 *
DataOut<dim>
object as a shared pointer that we pass on to the
3994 * worker thread to ensure that once we exit this function and the
3995 * worker thread finishes the
DataOut<dim>
object gets destroyed again.
4001 * for (
unsigned int i = 0; i < n_solution_variables; ++i)
4003 * output_vector[i] = U[i];
4004 * output_vector[i].update_ghost_values();
4007 * schlieren_postprocessor.compute_schlieren(output_vector);
4009 * std::unique_ptr<DataOut<dim>> data_out = std::make_unique<DataOut<dim>>();
4012 *
for (
unsigned int i = 0; i < n_solution_variables; ++i)
4013 * data_out->add_data_vector(output_vector[i],
4014 * ProblemDescription<dim>::component_names[i]);
4016 * data_out->add_data_vector(schlieren_postprocessor.schlieren,
4017 *
"schlieren_plot");
4019 * data_out->build_patches(discretization.mapping,
4020 * discretization.finite_element.degree - 1);
4024 * Next we create a
lambda function
for the background thread. We <a
4025 * href=
"https://en.cppreference.com/w/cpp/language/lambda">capture</a>
4026 * the <code>
this</code> pointer as well as most of the arguments of
4027 * the output function by
value so that we have access to them
inside
4032 * The
first capture argument of the
lambda function, `data_out_copy`
4033 * in essence creates a local variable
inside the
lambda function into
4034 * which we
"move" the `data_out` variable from above. The way
this works
4035 * is that we create a `std::unique_ptr` above that points to the
DataOut
4036 *
object. But we have no use
for it any more after
this point: We really
4037 * just want to move ownership from the current function to the
lambda
4038 * function implemented in the following few lines. We could have done
4039 *
this by
using a `std::shared_ptr` above and giving the
lambda function
4040 * a
copy of that shared pointer; once the current function returns (but
4041 * maybe
while the lambda function is still running), our local shared
4042 * pointer would go out of scope and stop pointing at the actual
4043 * object, at which
point the
lambda function simply becomes the sole
4044 * owner. But
using the `std::unique_ptr` is conceptually cleaner as it
4045 * makes it clear that the current function
's `data_out` variable isn't
4046 * even pointing to the
object any more.
4049 *
auto output_worker =
4050 * [data_out_copy = std::move(data_out),
this, name, t, cycle]() {
4053 * data_out_copy->set_flags(flags);
4055 * data_out_copy->write_vtu_with_pvtu_record(
4056 *
"", name +
"-solution", cycle, mpi_communicator, 6);
4061 * If the asynchronous writeback option is
set we launch a
new
4062 * background thread with the help of
4064 * href=
"https://en.cppreference.com/w/cpp/thread/async"><code>std::async</code></a>
4065 * function. The function returns a <a
4066 * href=
"https://en.cppreference.com/w/cpp/thread/future"><code>std::future</code></a>
4067 *
object that we can use to query the status of the background thread.
4068 * At
this point we can
return from the <code>output()</code> function
4069 * and resume with the time stepping in the main
loop - the thread will
4070 *
run in the background.
4073 *
if (asynchronous_writeback)
4075 * background_thread_state =
4076 * std::async(std::launch::async, std::move(output_worker));
4088 * And
finally, the main function.
4094 *
int main(
int argc,
char *argv[])
4098 *
constexpr int dim = 2;
4100 *
using namespace dealii;
4101 *
using namespace Step69;
4105 *
MPI_Comm mpi_communicator(MPI_COMM_WORLD);
4106 * MainLoop<dim> main_loop(mpi_communicator);
4110 *
catch (std::exception &exc)
4112 * std::cerr << std::endl
4114 * <<
"----------------------------------------------------"
4116 * std::cerr <<
"Exception on processing: " << std::endl
4117 * << exc.what() << std::endl
4118 * <<
"Aborting!" << std::endl
4119 * <<
"----------------------------------------------------"
4125 * std::cerr << std::endl
4127 * <<
"----------------------------------------------------"
4129 * std::cerr <<
"Unknown exception!" << std::endl
4130 * <<
"Aborting!" << std::endl
4131 * <<
"----------------------------------------------------"
4137<a name=
"step_69-Results"></a><h1>Results</h1>
4140Running the program with
default parameters in release mode takes about 1
4141minute on a 4 core machine (with hyperthreading):
4143# mpirun -np 4 ./step-69 | tee output
4144Reading parameters and allocating objects... done
4146 ####################################################
4150 ####################################################
4152Number of active cells: 36864
4154 ####################################################
4156 ######### compute offline data #########
4158 ####################################################
4160Number of degrees of freedom: 37376
4162 ####################################################
4164 #########
set up time step #########
4166 ####################################################
4168 ####################################################
4173 ####################################################
4175TimeLoop<dim>::interpolate_initial_values(t = 0)
4176TimeLoop<dim>::output(t = 0, checkpoint = 0)
4178 ####################################################
4180 ######### enter main
loop #########
4183 ####################################################
4185 ####################################################
4187 ######### Cycle 000001 (0.0%) #########
4188 ######### at time t = 0.00000000 #########
4190 ####################################################
4194 ####################################################
4196 ######### Cycle 007553 (100.0%) #########
4197 ######### at time t = 3.99984036 #########
4199 ####################################################
4201TimeLoop<dim>::output(t = 4.00038, checkpoint = 1)
4203+------------------------------------------------------------------------+------------+------------+
4204| Total CPU time elapsed since start | 357s | |
4206| Section | no. calls | CPU time | % of total |
4207+------------------------------------------------------------+-----------+------------+------------+
4208| discretization - setup | 1 | 0.113s | 0% |
4209| offline_data -
assemble lumped mass
matrix, and c_ij | 1 | 0.167s | 0% |
4210| offline_data - compute |c_ij|, and n_ij | 1 | 0.00255s | 0% |
4211| offline_data - create sparsity pattern and
set up matrices | 1 | 0.0224s | 0% |
4212| offline_data - distribute dofs | 1 | 0.0617s | 0% |
4213| offline_data - fix slip boundary c_ij | 1 | 0.0329s | 0% |
4214| schlieren_postprocessor - compute schlieren plot | 201 | 0.811s | 0.23% |
4215| schlieren_postprocessor - prepare scratch space | 1 | 7.6e-05s | 0% |
4216| time_loop - setup scratch space | 1 | 0.127s | 0% |
4217| time_loop - stalled output | 200 | 0.000685s | 0% |
4218| time_step - 1 compute d_ij | 7553 | 240s | 67% |
4219| time_step - 2 compute d_ii, and tau_max | 7553 | 11.5s | 3.2% |
4220| time_step - 3 perform update | 7553 | 101s | 28% |
4221| time_step - 4 fix boundary states | 7553 | 0.724s | 0.2% |
4222| time_step - prepare scratch space | 1 | 0.00245s | 0% |
4223+------------------------------------------------------------+-----------+------------+------------+
4226One thing that becomes evident is the fact that the program spends two
4227thirds of the execution time computing the graph viscosity d_ij and about a
4228third of the execution time in performing the update, where computing the
4229flux @f$f(U)@f$ is the expensive operation. The preset default resolution is
4230about 37k gridpoints, which amounts to about 148k spatial degrees of
4231freedom in 2D. An animated schlieren plot of the solution looks as follows:
4233<img src=
"https://www.dealii.org/images/steps/developer/step-69.coarse.gif" alt=
"" height=
"300">
4235It is evident that 37k gridpoints for the
first-order method is nowhere
4236near the resolution needed to resolve any flow features. For comparison,
4237here is a
"reference" computation with a
second-order method and about 9.5M
4238gridpoints (<a href=
"https://github.com/conservation-laws/ryujin">github
4241<img src=
"https://www.dealii.org/images/steps/developer/step-69.2nd-order.t400.jpg" alt=
"" height=
"300">
4243So, we give the
first-order method a
second chance and
run it with about
42442.4M gridpoints on a small compute server:
4247# mpirun -np 16 ./step-69 | tee output
4251 ####################################################
4253 ######### Cycle 070216 (100.0%) #########
4254 ######### at time t = 3.99999231 #########
4256 ####################################################
4258TimeLoop<dim>::output(t = 4.00006, checkpoint = 1)
4262+------------------------------------------------------------------------+------------+------------+
4263| Total wallclock time elapsed since start | 6.75e+03s | |
4265| Section | no. calls | wall time | % of total |
4266+------------------------------------------------------------+-----------+------------+------------+
4267| discretization - setup | 1 | 1.97s | 0% |
4268| offline_data -
assemble lumped mass
matrix, and c_ij | 1 | 1.19s | 0% |
4269| offline_data - compute |c_ij|, and n_ij | 1 | 0.0172s | 0% |
4270| offline_data - create sparsity pattern and
set up matrices | 1 | 0.413s | 0% |
4271| offline_data - distribute dofs | 1 | 1.05s | 0% |
4272| offline_data - fix slip boundary c_ij | 1 | 0.252s | 0% |
4273| schlieren_postprocessor - compute schlieren plot | 201 | 1.82s | 0% |
4274| schlieren_postprocessor - prepare scratch space | 1 | 0.000497s | 0% |
4275| time_loop - setup scratch space | 1 | 1.45s | 0% |
4276| time_loop - stalled output | 200 | 0.00342s | 0% |
4277| time_step - 1 compute d_ij | 70216 | 4.38e+03s | 65% |
4278| time_step - 2 compute d_ii, and tau_max | 70216 | 419s | 6.2% |
4279| time_step - 3 perform update | 70216 | 1.87e+03s | 28% |
4280| time_step - 4 fix boundary states | 70216 | 24s | 0.36% |
4281| time_step - prepare scratch space | 1 | 0.0227s | 0% |
4282+------------------------------------------------------------+-----------+------------+------------+
4285And with the following result:
4287<img src=
"https://www.dealii.org/images/steps/developer/step-69.fine.gif" alt=
"" height=
"300">
4289That
's substantially better, although of course at the price of having run
4290the code for roughly 2 hours on 16 cores.
4294<a name="step-69-extensions"></a>
4295<a name="step_69-Possibilitiesforextensions"></a><h3>Possibilities for extensions</h3>
4298The program showcased here is really only first-order accurate, as
4299discussed above. The pictures above illustrate how much diffusion that
4300introduces and how far the solution is from one that actually resolves
4301the features we care about.
4303This can be fixed, but it would exceed what a *tutorial* is about.
4304Nevertheless, it is worth showing what one can achieve by adding a
4305second-order scheme. For example, here is a video computed with <a
4306href=https://conservation-laws.org/>the following research code</a>
4307that shows (with a different color scheme) a 2d simulation that corresponds
4308to the cases shown above:
4312 <iframe width="560" height="315" src="https://www.youtube.com/embed/xIwJZlsXpZ4"
4314 allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture"
4315 allowfullscreen></iframe>
4319This simulation was done with 38 million degrees of freedom
4320(continuous @f$Q_1@f$ finite elements) per component of the solution
4321vector. The exquisite detail of the solution is remarkable for these
4322kinds of simulations, including in the sub-sonic region behind the
4325One can also with relative ease further extend this to the 3d case:
4329 <iframe width="560" height="315" src="https://www.youtube.com/embed/vBCRAF_c8m8"
4331 allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture"
4332 allowfullscreen></iframe>
4336Solving this becomes expensive, however: The simulation was done with
43371,817 million degrees of freedom (continuous @f$Q_1@f$ finite elements)
4338per component (for a total of 9.09 billion spatial degrees of freedom)
4339and ran on 30,720 MPI ranks. The code achieved an average throughput of
4340969M grid points per second (0.04M gridpoints per second per CPU). The
4341front and back wall show a "Schlieren plot": the magnitude of the
4342gradient of the density on an exponential scale from white (low) to
4343black (high). All other cutplanes and the surface of the obstacle show
4344the magnitude of the vorticity on a white (low) - yellow (medium) -
4345red (high) scale. (The scales of the individual cutplanes have been
4346adjusted for a nicer visualization.)
4349<a name="step_69-PlainProg"></a>
4350<h1> The plain program</h1>
4351@include "step-69.cc"
void attach_dof_handler(const DoFHandler< dim, spacedim > &)
virtual void build_patches(const unsigned int n_subdivisions=0)
static void initialize(const std::string &filename="", const std::string &output_filename="", const ParameterHandler::OutputStyle output_style_for_output_filename=ParameterHandler::Short, ParameterHandler &prm=ParameterAcceptor::prm, const ParameterHandler::OutputStyle output_style_for_filename=ParameterHandler::DefaultStyle)
boost::signals2::signal< void()> parse_parameters_call_back
void add_parameter(const std::string &entry, ParameterType ¶meter, const std::string &documentation="", ParameterHandler &prm_=prm, const Patterns::PatternBase &pattern= *Patterns::Tools::Convert< ParameterType >::to_pattern())
#define DEAL_II_ALWAYS_INLINE
__global__ void set(Number *val, const Number s, const size_type N)
#define Assert(cond, exc)
#define AssertThrow(cond, exc)
typename ActiveSelector::cell_iterator cell_iterator
void loop(IteratorType begin, std_cxx20::type_identity_t< IteratorType > end, DOFINFO &dinfo, INFOBOX &info, const std::function< void(std_cxx20::type_identity_t< DOFINFO > &, typename INFOBOX::CellInfo &)> &cell_worker, const std::function< void(std_cxx20::type_identity_t< DOFINFO > &, typename INFOBOX::CellInfo &)> &boundary_worker, const std::function< void(std_cxx20::type_identity_t< DOFINFO > &, std_cxx20::type_identity_t< DOFINFO > &, typename INFOBOX::CellInfo &, typename INFOBOX::CellInfo &)> &face_worker, AssemblerType &assembler, const LoopControl &lctrl=LoopControl())
@ update_values
Shape function values.
@ update_normal_vectors
Normal vectors.
@ update_JxW_values
Transformed quadrature weights.
@ update_gradients
Shape function gradients.
@ update_quadrature_points
Transformed quadrature points.
IteratorRange< BaseIterator > make_iterator_range(const BaseIterator &begin, const std_cxx20::type_identity_t< BaseIterator > &end)
@ valid
Iterator points to a valid object.
@ matrix
Contents is actually a matrix.
@ symmetric
Matrix is symmetric.
@ diagonal
Matrix is diagonal.
@ general
No special properties.
double norm(const FEValuesBase< dim > &fe, const ArrayView< const std::vector< Tensor< 1, dim > > > &Du)
Point< spacedim > point(const gp_Pnt &p, const double tolerance=1e-10)
SymmetricTensor< 2, dim, Number > C(const Tensor< 2, dim, Number > &F)
SymmetricTensor< 2, dim, Number > E(const Tensor< 2, dim, Number > &F)
SymmetricTensor< 2, dim, Number > e(const Tensor< 2, dim, Number > &F)
Tensor< 2, dim, Number > l(const Tensor< 2, dim, Number > &F, const Tensor< 2, dim, Number > &dF_dt)
SymmetricTensor< 2, dim, Number > b(const Tensor< 2, dim, Number > &F)
SymmetricTensor< 2, dim, Number > d(const Tensor< 2, dim, Number > &F, const Tensor< 2, dim, Number > &dF_dt)
VectorType::value_type * end(VectorType &V)
VectorType::value_type * begin(VectorType &V)
T sum(const T &t, const MPI_Comm mpi_communicator)
T max(const T &t, const MPI_Comm mpi_communicator)
T min(const T &t, const MPI_Comm mpi_communicator)
unsigned int this_mpi_process(const MPI_Comm mpi_communicator)
T scatter(const MPI_Comm comm, const std::vector< T > &objects_to_send, const unsigned int root_process=0)
std::string int_to_string(const unsigned int value, const unsigned int digits=numbers::invalid_unsigned_int)
void run(const Iterator &begin, const std_cxx20::type_identity_t< Iterator > &end, Worker worker, Copier copier, const ScratchData &sample_scratch_data, const CopyData &sample_copy_data, const unsigned int queue_length, const unsigned int chunk_size)
void run(const std::vector< std::vector< Iterator > > &colored_iterators, Worker worker, Copier copier, const ScratchData &sample_scratch_data, const CopyData &sample_copy_data, const unsigned int queue_length=2 *MultithreadInfo::n_threads(), const unsigned int chunk_size=8)
bool check(const ConstraintKinds kind_in, const unsigned int dim)
long double gamma(const unsigned int n)
void copy(const T *begin, const T *end, U *dest)
int(& functions)(const void *v1, const void *v2)
void assemble(const MeshWorker::DoFInfoBox< dim, DOFINFO > &dinfo, A *assembler)
void reinit(MatrixBlock< MatrixType > &v, const BlockSparsityPattern &p)
void apply_to_subranges(const tbb::blocked_range< Iterator > &range, const Function &f)
void apply_to_subranges(const Iterator &begin, const std_cxx20::type_identity_t< Iterator > &end, const Function &f, const unsigned int grainsize)
boost::integer_range< IncrementableType > iota_view
::VectorizedArray< Number, width > exp(const ::VectorizedArray< Number, width > &)
::VectorizedArray< Number, width > min(const ::VectorizedArray< Number, width > &, const ::VectorizedArray< Number, width > &)
::VectorizedArray< Number, width > max(const ::VectorizedArray< Number, width > &, const ::VectorizedArray< Number, width > &)
::VectorizedArray< Number, width > sqrt(const ::VectorizedArray< Number, width > &)
::VectorizedArray< Number, width > pow(const ::VectorizedArray< Number, width > &, const Number p)
::VectorizedArray< Number, width > abs(const ::VectorizedArray< Number, width > &)
const ::parallel::distributed::Triangulation< dim, spacedim > * triangulation
void swap(SmartPointer< T, P > &t1, SmartPointer< T, Q > &t2)
DEAL_II_HOST constexpr Number trace(const SymmetricTensor< 2, dim2, Number > &)
void advance(std::tuple< I1, I2 > &t, const unsigned int n)
void gather(VectorizedArray< Number, width > &out, const std::array< Number *, width > &ptrs, const unsigned int offset)