</p>
<ol>
+ <li> Changed: FlatManifold takes as argument a periodicity option. This
+ used to be a Point<dim>, but it should have been a Tensor<1,dim>. This
+ is now changed.
+ <br>
+ (Luca Heltai, 2016/04/09)
+ </li>
+
<li> Changed: The default nodal point distribution of FE_Q, FE_DGQ,
FE_Q_DG0, FE_Q_Bubbles, and FE_TraceQ has been changed from equidistant
points to the node points of the corresponding Gauss-Lobatto quadrature
(Luca Heltai, Wolfgang Bangerth, 2016/04/08)
</li>
+ <li> New: Added CompositionManifold to create new manifolds from two
+ ChartManifold objects. This can be used, for example, to rotate a
+ cylindrical Manifold, or to make a cylinders with parabolic sides.
+ <br>
+ (Luca Heltai, 2016/04/09)
+ </li>
+
<li> New: Added GridGenerator::torus() to generate the volume mesh of a
torus in three dimensions and a manifold description TorusManifold to
go with it.
SphericalManifold<dim,spacedim>::get_periodicity()
{
Tensor<1,spacedim> periodicity;
- periodicity[spacedim-1] = 2*numbers::PI; // theta and phi period.
+ // In two dimensions, theta is periodic. In three dimensions the variable
+ // that is periodic is phi. We have no periodicity in theta in 3d.
+ periodicity[spacedim-1] = 2*numbers::PI;
return periodicity;
}