From: Martin Kronbichler Date: Thu, 6 Jun 2019 10:00:04 +0000 (+0200) Subject: Add changelog and link in tutorial X-Git-Tag: v9.2.0-rc1~1428^2~2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fd6880b8f28048b3857364e8bb64307c521efd83;p=dealii.git Add changelog and link in tutorial --- diff --git a/doc/doxygen/tutorial/tutorial.h.in b/doc/doxygen/tutorial/tutorial.h.in index 390b4154c5..256136ef94 100644 --- a/doc/doxygen/tutorial/tutorial.h.in +++ b/doc/doxygen/tutorial/tutorial.h.in @@ -499,12 +499,18 @@ * MGSmootherPrecondition, RelaxationBlock, DoFRenumbering::downstream * * - * + * * step-64 * Solving a Helmholtz problem using matrix-free methods on the GPU * with MPI parallelization. * * + * + * step-65 + * The TransfiniteInterpolationManifold and MappingQCache classes for + * advanced manifold operations. + * + * * * * @@ -685,7 +691,8 @@ * step-10, * step-11, * step-32, - * step-60 + * step-60, + * step-65 * * * @@ -758,7 +765,8 @@ * step-34, * step-38, * step-53, - * step-54 + * step-54, + * step-65 * * * @@ -777,7 +785,8 @@ * * step-37, * step-48, - * step-59 + * step-59, + * step-64 * * * @@ -787,7 +796,8 @@ * * step-49, * step-53, - * step-54 + * step-54, + * step-65 * * * diff --git a/doc/news/changes/major/20190606MartinKronbichler b/doc/news/changes/major/20190606MartinKronbichler new file mode 100644 index 0000000000..f8ee6b4f63 --- /dev/null +++ b/doc/news/changes/major/20190606MartinKronbichler @@ -0,0 +1,6 @@ +New: The step-65 tutorial program presents TransfiniteInterpolationManifold, a +manifold class that can propagate curved boundary information into the +interior of a computational domain, and MappingQCache for fast operations for +expensive manifolds. +
+(Martin Kronbichler, 2019/06/06) diff --git a/doc/news/changes/minor/20190606MartinKronbichler b/doc/news/changes/minor/20190606MartinKronbichler new file mode 100644 index 0000000000..b0768aacbe --- /dev/null +++ b/doc/news/changes/minor/20190606MartinKronbichler @@ -0,0 +1,5 @@ +New: The class MappingQCache implements a cache for the points generated by +MappingQGeneric and derived classes to speed up consumers of the mapping for +expensive manifolds. +
+(Martin Kronbichler, 2019/06/06)