From: Wolfgang Bangerth Date: Sun, 24 Apr 2011 04:36:29 +0000 (+0000) Subject: A couple more lines. X-Git-Tag: v8.0.0~4116 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=485822748f3698c2db00af2785ef55eb045d7352;p=dealii.git A couple more lines. git-svn-id: https://svn.dealii.org/trunk@23641 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/examples/step-46/step-46.cc b/deal.II/examples/step-46/step-46.cc index eef01a25d5..bf2e6c8202 100644 --- a/deal.II/examples/step-46/step-46.cc +++ b/deal.II/examples/step-46/step-46.cc @@ -76,13 +76,22 @@ using namespace dealii; // There are a few helper functions // (cell_is_in_fluid_domain, // cell_is_in_solid_domain) of - // self-explanatory nature and a few - // functions (make_grid, - // set_active_fe_indices, + // self-explanatory nature (operating on the + // symbolic names for the two subdomains that + // will be used as material_ids for cells + // belonging to the subdomains, as explained + // in the introduction) and a few functions + // (make_grid, set_active_fe_indices, // assemble_interface_terms) that have - // been broken out of other functions and - // will be discussed as we get to their - // implementation. + // been broken out of other functions that + // can be found in many of the other tutorial + // programs and that will be discussed as we + // get to their implementation. + // + // The final set of variables + // (viscosity, lambda, eta) + // describes the material properties used for + // the two physics models. template class FluidStructureProblem { @@ -172,7 +181,7 @@ class StokesBoundaryValues : public Function template double StokesBoundaryValues::value (const Point &p, - const unsigned int component) const + const unsigned int component) const { Assert (component < this->n_components, ExcIndexRange (component, 0, this->n_components));