From: Rene Gassmoeller Date: Thu, 26 Oct 2017 16:43:02 +0000 (-0600) Subject: Update documentation X-Git-Tag: v9.0.0-rc1~865^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F5261%2Fhead;p=dealii.git Update documentation --- diff --git a/include/deal.II/base/data_out_base.h b/include/deal.II/base/data_out_base.h index 857c9e1c6e..994fae56d6 100644 --- a/include/deal.II/base/data_out_base.h +++ b/include/deal.II/base/data_out_base.h @@ -1214,7 +1214,9 @@ namespace DataOutBase * Filter duplicate vertices and associated values. This will drastically * reduce the output data size but will result in an output file that * does not faithfully represent the actual data if the data corresponds - * to discontinuous fields. + * to discontinuous fields. In particular, along subdomain boundaries + * the data will still be discontinuous, while it will look like a + * continuous field inside of the subdomain. */ bool filter_duplicate_vertices; diff --git a/source/base/data_out_base.cc b/source/base/data_out_base.cc index 4200ca4441..6ac99bf6c1 100644 --- a/source/base/data_out_base.cc +++ b/source/base/data_out_base.cc @@ -1890,7 +1890,10 @@ namespace DataOutBase "produced by entirely different means), then the data in the " "output file no longer faithfully represents the underlying data " "because the discontinuous field has been replaced by a " - "continuous one." + "continuous one. Note also that the filtering can not occur " + "on processor boundaries. Thus, a filtered discontinuous field " + "looks like a continuous field inside of a subdomain, " + "but like a discontinuous field at the subdomain boundary." "\n\n" "In any case, filtering results in drastically smaller output " "files (smaller by about a factor of 2^dim).");