From: Wolfgang Bangerth Date: Wed, 15 Sep 2010 11:09:41 +0000 (+0000) Subject: Add warning that the order of FE_Nedelec has changed. X-Git-Tag: v8.0.0~5498 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6f2e8daade9ab217d54bb23a845156741812aaee;p=dealii.git Add warning that the order of FE_Nedelec has changed. git-svn-id: https://svn.dealii.org/trunk@21975 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/doc/news/changes.h b/deal.II/doc/news/changes.h index 35974ff674..fb7822eafb 100644 --- a/deal.II/doc/news/changes.h +++ b/deal.II/doc/news/changes.h @@ -31,6 +31,15 @@ inconvenience this causes.
    +
  1. The FE_Nedelec class had previously implemented the lowest order +when the value 1 was passed to the constructor. This has now been +adjusted: the lowest order now results from passing 0, making this +consistent with the FE_RaviartThomas class and following the convention +used in by Brezzi and Raviart (though not in the original paper of +Nedelec). +
    +(Markus Bürg 2010/09/14)
  2. +
  3. The fields DoFHandler::tria and DoFHandler::selected_fe are now private instead of protected. Inheriting classes can only access them through DoFHandler::get_tria() and DoFHandler::get_fe(), respectively.