/usr/include/deal.II/meshworker/loop.h is in libdeal.ii-dev 8.5.1-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 | // ---------------------------------------------------------------------
//
// Copyright (C) 2006 - 2016 by the deal.II authors
//
// This file is part of the deal.II library.
//
// The deal.II library is free software; you can use it, redistribute
// it, and/or modify it under the terms of the GNU Lesser General
// Public License as published by the Free Software Foundation; either
// version 2.1 of the License, or (at your option) any later version.
// The full text of the license can be found in the file LICENSE at
// the top level of the deal.II distribution.
//
// ---------------------------------------------------------------------
#ifndef dealii__mesh_worker_loop_h
#define dealii__mesh_worker_loop_h
#include <deal.II/base/config.h>
#include <deal.II/base/std_cxx11/function.h>
#include <deal.II/base/work_stream.h>
#include <deal.II/base/template_constraints.h>
#include <deal.II/grid/tria.h>
#include <deal.II/grid/filtered_iterator.h>
#include <deal.II/meshworker/local_integrator.h>
#include <deal.II/meshworker/dof_info.h>
#include <deal.II/meshworker/integration_info.h>
#define DEAL_II_MESHWORKER_PARALLEL 1
DEAL_II_NAMESPACE_OPEN
template <typename> class TriaActiveIterator;
namespace internal
{
/**
* Find out if an iterator supports inactive cells.
*/
template <class DI>
inline bool is_active_iterator(const DI &)
{
return false;
}
template <class ACCESSOR>
inline bool is_active_iterator(const TriaActiveIterator<ACCESSOR> &)
{
return true;
}
template <class ACCESSOR>
inline bool is_active_iterator(const dealii::FilteredIterator<TriaActiveIterator<ACCESSOR> > &)
{
return true;
}
template<int dim, class DOFINFO, class A>
void assemble(const MeshWorker::DoFInfoBox<dim, DOFINFO> &dinfo, A *assembler)
{
dinfo.assemble(*assembler);
}
}
namespace MeshWorker
{
/**
* Collection of parameters for execution of MeshWorker loops.
*/
class LoopControl
{
public:
/**
* Constructor.
*/
LoopControl()
: own_cells(true), ghost_cells(false),
faces_to_ghost(LoopControl::one), own_faces(LoopControl::one),
cells_first(true)
{
}
/**
* Loop over cells owned by this process. Defaults to <code>true</code>.
*/
bool own_cells;
/**
* Loop over cells not owned by this process. Defaults to
* <code>false</code>.
*/
bool ghost_cells;
/**
* Enumeration describing when to do assembly on a face: see, e.g.,
* MeshWorker::LoopControl::faces_to_ghost for an example of how the value
* of this enumeration is interpreted in a particular circumstance.
*/
enum FaceOption
{
/**
* Do not perform assembly on a face.
*/
never,
/**
* Perform assembly on one face.
*/
one,
/**
* Perform assembly on both faces.
*/
both
};
/**
* Loop over faces between a locally owned cell and a ghost cell: - never:
* do not assembly these faces - one: only one of the processes will
* assemble these faces ( from the finer side or the process with the
* lower mpi rank) - both: both processes will assemble these faces Note
* that these faces are never assembled from both sides on a single
* process. Default is one.
*/
FaceOption faces_to_ghost;
/**
* Loop over faces between two locally owned cells: - never: do not
* assemble face terms - one: assemble once (always coming from the finer
* side) - both: assemble each face twice (not implemented for hanging
* nodes!) Default is one.
*/
FaceOption own_faces;
/**
* Flag to determine if cells integrals should be done before or after
* face integrals. Default is t
*/
bool cells_first;
};
/**
* The function called by loop() to perform the required actions on a cell
* and its faces. The three functions <tt>cell_worker</tt>,
* <tt>boundary_worker</tt> and <tt>face_worker</tt> are the same ones
* handed to loop(). While there we only run the loop over all cells, here,
* we do a single cell and, if necessary, its faces, interior and boundary.
*
* Upon return, the DoFInfo objects in the DoFInfoBox are filled with the
* data computed on the cell and each of the faces. Thus, after the
* execution of this function, we are ready to call DoFInfoBox::assemble()
* to distribute the local data into global data.
*
* @param cell is the cell we work on
* @param dof_info is the object into which local results are entered. It is
* expected to have been set up for the right types of data.
* @param info is the object containing additional data only needed for
* internal processing.
* @param cell_worker defines the local action on each cell.
* @param boundary_worker defines the local action on boundary faces
* @param face_worker defines the local action on interior faces.
* @param loop_control control structure to specify what actions should be
* performed.
*
* @ingroup MeshWorker
* @author Guido Kanschat
* @date 2010
*/
template<class INFOBOX, class DOFINFO, int dim, int spacedim, class ITERATOR>
void cell_action(
ITERATOR cell,
DoFInfoBox<dim, DOFINFO> &dof_info,
INFOBOX &info,
const std_cxx11::function<void (DOFINFO &, typename INFOBOX::CellInfo &)> &cell_worker,
const std_cxx11::function<void (DOFINFO &, typename INFOBOX::CellInfo &)> &boundary_worker,
const std_cxx11::function<void (DOFINFO &, DOFINFO &,
typename INFOBOX::CellInfo &,
typename INFOBOX::CellInfo &)> &face_worker,
const LoopControl &loop_control)
{
const bool ignore_subdomain = (cell->get_triangulation().locally_owned_subdomain()
== numbers::invalid_subdomain_id);
types::subdomain_id csid = (cell->is_level_cell())
? cell->level_subdomain_id()
: cell->subdomain_id();
const bool own_cell = ignore_subdomain || (csid == cell->get_triangulation().locally_owned_subdomain());
dof_info.reset();
if ((!ignore_subdomain) && (csid == numbers::artificial_subdomain_id))
return;
dof_info.cell.reinit(cell);
dof_info.cell_valid = true;
const bool integrate_cell = (cell_worker != 0);
const bool integrate_boundary = (boundary_worker != 0);
const bool integrate_interior_face = (face_worker != 0);
if (integrate_cell)
info.cell.reinit(dof_info.cell);
// Execute this, if cells
// have to be dealt with
// before faces
if (integrate_cell && loop_control.cells_first &&
((loop_control.own_cells && own_cell) || (loop_control.ghost_cells && !own_cell)))
cell_worker(dof_info.cell, info.cell);
// Call the callback function in
// the info box to do
// computations between cell and
// face action.
info.post_cell(dof_info);
if (integrate_interior_face || integrate_boundary)
for (unsigned int face_no=0; face_no < GeometryInfo<ITERATOR::AccessorType::Container::dimension>::faces_per_cell; ++face_no)
{
typename ITERATOR::AccessorType::Container::face_iterator face = cell->face(face_no);
if (cell->at_boundary(face_no) && !cell->has_periodic_neighbor(face_no))
{
// only integrate boundary faces of own cells
if (integrate_boundary && own_cell)
{
dof_info.interior_face_available[face_no] = true;
dof_info.interior[face_no].reinit(cell, face, face_no);
info.boundary.reinit(dof_info.interior[face_no]);
boundary_worker(dof_info.interior[face_no], info.boundary);
}
}
else if (integrate_interior_face)
{
// Interior face
TriaIterator<typename ITERATOR::AccessorType> neighbor = cell->neighbor_or_periodic_neighbor(face_no);
types::subdomain_id neighbid = numbers::artificial_subdomain_id;
if (neighbor->is_level_cell())
neighbid = neighbor->level_subdomain_id();
//subdomain id is only valid for active cells
else if (neighbor->active())
neighbid = neighbor->subdomain_id();
const bool own_neighbor = ignore_subdomain ||
(neighbid == cell->get_triangulation().locally_owned_subdomain());
// skip all faces between two ghost cells
if (!own_cell && !own_neighbor)
continue;
// skip if the user doesn't want faces between own cells
if (own_cell && own_neighbor && loop_control.own_faces==LoopControl::never)
continue;
// skip face to ghost
if (own_cell != own_neighbor && loop_control.faces_to_ghost==LoopControl::never)
continue;
// Deal with refinement edges from the refined side. Assuming one-irregular
// meshes, this situation should only occur if both cells are active.
const bool periodic_neighbor = cell->has_periodic_neighbor(face_no);
if ((!periodic_neighbor && cell->neighbor_is_coarser(face_no))
|| (periodic_neighbor && cell->periodic_neighbor_is_coarser(face_no)))
{
Assert(!cell->has_children(), ExcInternalError());
Assert(!neighbor->has_children(), ExcInternalError());
// skip if only one processor needs to assemble the face
// to a ghost cell and the fine cell is not ours.
if (!own_cell
&& loop_control.faces_to_ghost == LoopControl::one)
continue;
const std::pair<unsigned int, unsigned int> neighbor_face_no
= periodic_neighbor?
cell->periodic_neighbor_of_coarser_periodic_neighbor(face_no):
cell->neighbor_of_coarser_neighbor(face_no);
const typename ITERATOR::AccessorType::Container::face_iterator nface
= neighbor->face(neighbor_face_no.first);
dof_info.interior_face_available[face_no] = true;
dof_info.exterior_face_available[face_no] = true;
dof_info.interior[face_no].reinit(cell, face, face_no);
info.face.reinit(dof_info.interior[face_no]);
dof_info.exterior[face_no].reinit(
neighbor, nface, neighbor_face_no.first, neighbor_face_no.second);
info.subface.reinit(dof_info.exterior[face_no]);
face_worker(dof_info.interior[face_no], dof_info.exterior[face_no],
info.face, info.subface);
}
else
{
// If iterator is active and neighbor is refined, skip
// internal face.
if (internal::is_active_iterator(cell) && neighbor->has_children())
{
Assert(loop_control.own_faces != LoopControl::both, ExcMessage(
"Assembling from both sides for own_faces is not "
"supported with hanging nodes!"));
continue;
}
// Now neighbor is on same level, double-check this:
Assert(cell->level()==neighbor->level(), ExcInternalError());
// If we own both cells only do faces from one side (unless
// LoopControl says otherwise). Here, we rely on cell comparison
// that will look at cell->index().
if (own_cell && own_neighbor
&& loop_control.own_faces == LoopControl::one
&& (neighbor < cell))
continue;
// independent of loop_control.faces_to_ghost,
// we only look at faces to ghost on the same level once
// (only where own_cell=true and own_neighbor=false)
if (!own_cell)
continue;
// now only one processor assembles faces_to_ghost. We let the
// processor with the smaller (level-)subdomain id assemble the
// face.
if (own_cell && !own_neighbor
&& loop_control.faces_to_ghost == LoopControl::one
&& (neighbid < csid))
continue;
const unsigned int neighbor_face_no = periodic_neighbor?
cell->periodic_neighbor_face_no(face_no):
cell->neighbor_face_no(face_no);
Assert (periodic_neighbor || neighbor->face(neighbor_face_no) == face, ExcInternalError());
// Regular interior face
dof_info.interior_face_available[face_no] = true;
dof_info.exterior_face_available[face_no] = true;
dof_info.interior[face_no].reinit(cell, face, face_no);
info.face.reinit(dof_info.interior[face_no]);
dof_info.exterior[face_no].reinit(
neighbor, neighbor->face(neighbor_face_no), neighbor_face_no);
info.neighbor.reinit(dof_info.exterior[face_no]);
face_worker(dof_info.interior[face_no], dof_info.exterior[face_no],
info.face, info.neighbor);
}
}
} // faces
// Call the callback function in
// the info box to do
// computations between face and
// cell action.
info.post_faces(dof_info);
// Execute this, if faces
// have to be handled first
if (integrate_cell && !loop_control.cells_first &&
((loop_control.own_cells && own_cell) || (loop_control.ghost_cells && !own_cell)))
cell_worker(dof_info.cell, info.cell);
}
/**
* The main work function of this namespace. It is a loop over all cells in
* an iterator range, in which cell_action() is called for each cell.
* Unilaterally refined interior faces are handled automatically by the
* loop. Most of the work in this loop is done in cell_action(), which also
* receives most of the parameters of this function. See the documentation
* there for more details.
*
* If you don't want anything to be done on cells, interior or boundary
* faces to happen, simply pass the Null pointer to one of the function
* arguments.
*
* @ingroup MeshWorker
* @author Guido Kanschat, 2009
*/
template<int dim, int spacedim, class DOFINFO, class INFOBOX, class ASSEMBLER, class ITERATOR>
void loop(ITERATOR begin,
typename identity<ITERATOR>::type end,
DOFINFO &dinfo,
INFOBOX &info,
const std_cxx11::function<void (DOFINFO &, typename INFOBOX::CellInfo &)> &cell_worker,
const std_cxx11::function<void (DOFINFO &, typename INFOBOX::CellInfo &)> &boundary_worker,
const std_cxx11::function<void (DOFINFO &, DOFINFO &,
typename INFOBOX::CellInfo &,
typename INFOBOX::CellInfo &)> &face_worker,
ASSEMBLER &assembler,
const LoopControl &lctrl = LoopControl())
{
DoFInfoBox<dim, DOFINFO> dof_info(dinfo);
assembler.initialize_info(dof_info.cell, false);
for (unsigned int i=0; i<GeometryInfo<dim>::faces_per_cell; ++i)
{
assembler.initialize_info(dof_info.interior[i], true);
assembler.initialize_info(dof_info.exterior[i], true);
}
// Loop over all cells
#ifdef DEAL_II_MESHWORKER_PARALLEL
WorkStream::run(begin, end,
std_cxx11::bind(&cell_action<INFOBOX, DOFINFO, dim, spacedim, ITERATOR>,
std_cxx11::_1, std_cxx11::_3, std_cxx11::_2,
cell_worker, boundary_worker, face_worker, lctrl),
std_cxx11::bind(&internal::assemble<dim,DOFINFO,ASSEMBLER>, std_cxx11::_1, &assembler),
info, dof_info);
#else
for (ITERATOR cell = begin; cell != end; ++cell)
{
cell_action<INFOBOX,DOFINFO,dim,spacedim>(cell, dof_info,
info, cell_worker,
boundary_worker, face_worker,
lctrl);
dof_info.assemble(assembler);
}
#endif
}
/**
* Simplified interface for loop() if specialized for integration, using the
* virtual functions in LocalIntegrator.
*
* @ingroup MeshWorker
* @author Guido Kanschat, 2009
*/
template<int dim, int spacedim, class ITERATOR, class ASSEMBLER>
void integration_loop(ITERATOR begin,
typename identity<ITERATOR>::type end,
DoFInfo<dim, spacedim> &dof_info,
IntegrationInfoBox<dim, spacedim> &box,
const LocalIntegrator<dim, spacedim> &integrator,
ASSEMBLER &assembler,
const LoopControl &lctrl = LoopControl())
{
std_cxx11::function<void (DoFInfo<dim>&, IntegrationInfo<dim, spacedim>&)> cell_worker;
std_cxx11::function<void (DoFInfo<dim>&, IntegrationInfo<dim, spacedim>&)> boundary_worker;
std_cxx11::function<void (DoFInfo<dim> &, DoFInfo<dim> &,
IntegrationInfo<dim, spacedim> &,
IntegrationInfo<dim, spacedim> &)> face_worker;
if (integrator.use_cell)
cell_worker = std_cxx11::bind(&LocalIntegrator<dim, spacedim>::cell, &integrator, std_cxx11::_1, std_cxx11::_2);
if (integrator.use_boundary)
boundary_worker = std_cxx11::bind(&LocalIntegrator<dim, spacedim>::boundary, &integrator, std_cxx11::_1, std_cxx11::_2);
if (integrator.use_face)
face_worker = std_cxx11::bind(&LocalIntegrator<dim, spacedim>::face, &integrator, std_cxx11::_1, std_cxx11::_2, std_cxx11::_3, std_cxx11::_4);
loop<dim, spacedim>
(begin, end,
dof_info,
box,
cell_worker,
boundary_worker,
face_worker,
assembler,
lctrl);
}
}
DEAL_II_NAMESPACE_CLOSE
#endif
|