*
* @ingroup grid
* @author Wolfgang Bangerth, Ralf Hartmann, Guido Kanschat, Stefan
- * Nauber, Joerg Weimar, Yaqi Wang, 1998, 1999, 2000, 2001, 2002,
+ * Nauber, Joerg Weimar, Yaqi Wang, Luca Heltai, 1998, 1999, 2000, 2001, 2002,
* 2003, 2006, 2007.
*/
class GridGenerator
* can read in several example files. If the reader does not grok your files,
* it should be fairly simple to extend it.
*
- * <li> <tt>Gmsh mesh</tt> format: this format is used by the @p GMSH
- * mesh generator (see http://www.geuz.org/gmsh/ ). The documentation
- * in the @p GMSH manual explains how to generate meshes compatible with
- * the deal.II library (i.e. quads rather than triangles).
+ * <li> <tt>Gmsh 1.0 mesh</tt> format: this format is used by the @p
+ * GMSH mesh generator (see http://www.geuz.org/gmsh/ ). The
+ * documentation in the @p GMSH manual explains how to generate meshes
+ * compatible with the deal.II library (i.e. quads rather than
+ * triangles). In order to use this format, Gmsh has to output the
+ * file in the old format 1.0. This is done adding the line
+ * "Mesh.MshFileVersion = 1" to the input file.
*
* <li> <tt>Tecplot</tt> format: this format is used by @p TECPLOT and often
* serves as a basis for data exchange between different applications. Note,
* Cubit at this time. However, Cubit can export in UCD format using a simple
* plugin, and the resulting UCD file can then be read by this class. The
* plugin script can be found on the deal.II wiki page,
- * http://www-dimat.unipv.it/heltai/wikideal/index.php/Main_Page, in the
+ * http://www-dimat.unipv.it/heltai/wikideal/, in the
* section on external tools.
* </ul>
*
*
* @ingroup grid
* @ingroup input
- * @author Wolfgang Bangerth, 1998, 2000, Luca Heltai, 2004
+ * @author Wolfgang Bangerth, 1998, 2000, Luca Heltai, 2004, 2007
*/
template <int dim>
class GridIn
random fixes and enhancements.
<li><em>Luca Heltai:</em>
- Gmsh format mesh reader;
- integration of the function parser library.
+ Gmsh format mesh reader and writer;
+ some of the meshes in the GridGenerator class;
+ generalization of FilteredMatrix;
+ integration of the function parser library;
+ cubit journal file to export to ucd mesh format;
+ FEFunction and ParsedFunction classes;
+ random bug fixes and enhancements.
<li><em>Oliver Kayser-Herold:</em>
Lots of work on hp finite elements;
- integration of PETSc's LU decomposition;  
+ integration of PETSc's LU decomposition;
hanging node constraints for higher order elements in 3d.
<li><em>Benjamin Shelton Kirk:</em>
* The full text can be found at
* <tt>http://scholar.lib.vt.edu/theses/public/etd-12164379662151/etd-title.html</tt>
*
- * @author Thomas Richter, 2000
+ * @author Thomas Richter, 2000, Luca Heltai, 2006
*/
template <class VECTOR = Vector<double> >
class SolverMinRes : public Solver<VECTOR>