]> https://gitweb.dealii.org/ - dealii.git/commitdiff
Added comment and entry to changes.h.
authorLuca Heltai <luca.heltai@sissa.it>
Sat, 9 Apr 2016 12:48:24 +0000 (14:48 +0200)
committerLuca Heltai <luca.heltai@sissa.it>
Mon, 11 Apr 2016 07:42:38 +0000 (09:42 +0200)
doc/news/changes.h
source/grid/manifold_lib.cc

index eb6858df677886931a7b30f2763b7e4ad4c3f008..c9b229c73ba816a219b6082522013aa2b73bb7d4 100644 (file)
@@ -38,6 +38,13 @@ inconvenience this causes.
 </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
@@ -108,6 +115,13 @@ inconvenience this causes.
  (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.
index 16ab8980c729f10fc334a1a59276336eea873b2c..dd95f0a80cb64479431d1fc32be17f6c86fae562 100644 (file)
@@ -36,7 +36,9 @@ Tensor<1,spacedim>
 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;
 }
 

In the beginning the Universe was created. This has made a lot of people very angry and has been widely regarded as a bad move.

Douglas Adams


Typeset in Trocchi and Trocchi Bold Sans Serif.