From: bangerth Date: Sat, 28 Jun 2008 23:56:25 +0000 (+0000) Subject: Fix a place where we incorrectly passed a cell diameter rather than a face diameter. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=faac48007b16b1eb6089fabafc4d26fd520579db;p=dealii-svn.git Fix a place where we incorrectly passed a cell diameter rather than a face diameter. git-svn-id: https://svn.dealii.org/trunk@16391 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/doc/news/changes.h b/deal.II/doc/news/changes.h index f4e7062431..c1b26f949c 100644 --- a/deal.II/doc/news/changes.h +++ b/deal.II/doc/news/changes.h @@ -38,6 +38,16 @@ inconvenience this causes.

General

    +
  1. +

    + Fixed: In the new @ref step_33 "step-33" tutorial program there was + a place where we incorrectly passed the diameter of a cell, rather + than a face, to a function. This is now fixed. +
    + (Chih-Che Chueh, WB 2008/06/28) +

    +
  2. +
  3. Fixed: The new @ref step_33 "step-33" tutorial program had a place where diff --git a/deal.II/examples/step-33/step-33.cc b/deal.II/examples/step-33/step-33.cc index eab22fb815..6790863775 100644 --- a/deal.II/examples/step-33/step-33.cc +++ b/deal.II/examples/step-33/step-33.cc @@ -2065,7 +2065,7 @@ void ConservationLaw::assemble_system () dof_indices_neighbor, false, numbers::invalid_unsigned_int, - neighbor_child->diameter()); + neighbor_child->face(neighbor2)->diameter()); } }