From: hartmann
Changed:
+ Fixed: The linking of PETSc libraries into the static
+ libpetsc.g.a and libpetsc.a libraries
+ (located in deal.II/lib) has now been fixed.
+ New:
The step-18 example program shows how to solve a quasi-static elasticity
problem with moving meshes, and this all in parallel.
@@ -301,7 +309,7 @@ inconvenience this causes.
Changed: Multigrid
::Multigrid
receives an argument
- determining the type of multigrid cycle istead of the minimum
+ determining the type of multigrid cycle instead of the minimum
and maximum levels. The latter were rarely used anyway and can
be modified by set_minlevel()
and
set_maxlevel()
@@ -153,6 +153,14 @@ inconvenience this causes.
(WB 2005/09/09)
+ (RH 2005/08/26)
+ ParameterHandler::get_bool()
only accepted
"true" or "false" as boolean values, now it also considers "yes"
- and "no" as "true" and "false" respectively.
+ and "no" as "true" and "false", respectively.
(Ralf B. Schulz, 2005/07/19)
- Improved: The QProjector
has functions
- project_to_face
and
- project_to_subface
- returning a Quadrature
object
+ Improved: The QProjector
now has
+ functions project_to_face
and project_to_subface
returning a Quadrature
object
(GK, 2005/07/12)
Fixed: The PETScWrappers::MPI::SparseMatrix
class had functions that allow to take a pre-existing sparsity pattern
- as the basis for entry allocation. These function had an option to
+ as the basis for entry allocation. These functions had an option to
allow pre-setting these entries in the underlying data structures, but
this option was disabled by default because of unresolved questions
about its effectiveness. This has now been fixed: The code now properly
@@ -672,11 +680,12 @@ inconvenience this causes.
Fixed: It was possible to compare iterators into different
- DoFHandler
objects for equality and inequality as long as
- the underlying triangulation object was the same. This doesn't make much
- sense, however, and even sometimes declared to iterators equal if only
- they had the same triangulation, refinement level, and index. Comparing
- iterators into different containers is now completely disallowed.
+ DoFHandler
objects for equality and
+ inequality as long as the underlying triangulation object was
+ the same. This doesn't make much sense, however, and even
+ sometimes declared to iterators equal if only they had the same
+ triangulation, refinement level, and index. Comparing iterators
+ into different containers is now completely disallowed.
(WB, 2005/08/08)
Triangulation<3>
::create_triangulation
now checks that all
- cell have positive volume. If not, an exception is thrown. In
+ cells have positive volume. If not, an exception is thrown. In
that case use the GridReordering
::invert_all_cells_of_negative_grid
@@ -842,7 +851,7 @@ inconvenience this causes.
- New: The DataOut
+ New: The DataOut
class
now supports Eulerian Mappings. If a solution is computed
on a deformed mesh, the output file generated by the DataOut
now shows the solution also on the deformed mesh. This
@@ -853,10 +862,11 @@ inconvenience this causes.
- New: The MappingQ1Eulerian
- can now cope with different vector types fot the Euler vector.
- This is useful if it should be used with the PetSC wrapper classes.
- The desired vector type can be specified as template parameter.
+ New: The MappingQ1Eulerian
class can
+ now cope with different vector types for the Euler vector.
+ This is useful if it should be used with the PETSc wrapper
+ classes. The desired vector type can be specified as template
+ parameter.
(Oliver Kayser-Herold, 2005/05/31)