From: Ralf Hartmann Date: Fri, 29 Oct 2004 09:20:26 +0000 (+0000) Subject: DataOutBase<2,3>::write_tecplot did not write the variable name z. This is now fixed. X-Git-Tag: v8.0.0~14740 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2317b6d256f5d0aefa16d35be39bdd5ca88f043f;p=dealii.git DataOutBase<2,3>::write_tecplot did not write the variable name z. This is now fixed. git-svn-id: https://svn.dealii.org/trunk@9732 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/base/source/data_out_base.cc b/deal.II/base/source/data_out_base.cc index 80e046616f..47f8f42bb8 100644 --- a/deal.II/base/source/data_out_base.cc +++ b/deal.II/base/source/data_out_base.cc @@ -2,7 +2,7 @@ // $Id$ // Version: $Name$ // -// Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003 by the deal.II authors +// Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004 by the deal.II authors // // This file is subject to QPL and may not be distributed // without copyright and license information. Please refer @@ -2811,7 +2811,7 @@ void DataOutBase::write_tecplot (const std::vector > &patche out << "Variables="; - switch (dim) + switch (spacedim) { case 1: out << "\"x\""; diff --git a/deal.II/doc/news/c-5.0.html b/deal.II/doc/news/c-5.0.html index 95def95d42..6054d308bd 100644 --- a/deal.II/doc/news/c-5.0.html +++ b/deal.II/doc/news/c-5.0.html @@ -114,11 +114,20 @@ inconvenience this causes.
    -
  1. New: a class template VectorSlice allows - access to consecutive portions of a vector. -
    - (GK 2004/09/16) -

    +
  2. + Fixed: DataOutBase<2,3>::write_tecplot did not + write the variable name z. This is now fixed. +
    + (RH 2004/10/29) +

    + +
  3. + New: a class template VectorSlice + allows access to consecutive portions of a vector. +
    + (GK 2004/09/16) +

  4. New: The classes TableIndices<N> and