https://mooseframework.inl.gov
BoundaryNodeIntegrityCheckThread.h
Go to the documentation of this file.
1 //* This file is part of the MOOSE framework
2 //* https://mooseframework.inl.gov
3 //*
4 //* All rights reserved, see COPYRIGHT for full restrictions
5 //* https://github.com/idaholab/moose/blob/master/COPYRIGHT
6 //*
7 //* Licensed under LGPL 2.1, please see LICENSE for details
8 //* https://www.gnu.org/licenses/lgpl-2.1.html
9 
10 #pragma once
11 
12 // MOOSE includes
13 #include "MooseMesh.h"
14 #include "ThreadedNodeLoop.h"
15 #include "TheWarehouse.h"
16 #include "AuxKernel.h"
17 
18 class AuxiliarySystem;
19 template <typename>
21 template <typename>
23 
25  : public ThreadedNodeLoop<ConstBndNodeRange, ConstBndNodeRange::const_iterator>
26 {
27 public:
29 
30  // Splitting Constructor
32 
33  virtual void onNode(ConstBndNodeRange::const_iterator & node_it) override;
34 
35  void join(const BoundaryNodeIntegrityCheckThread & /*y*/);
36 
37 protected:
40 
43 
46 
49 
53 
55  const std::map<dof_id_type, std::vector<dof_id_type>> _node_to_elem_map;
56 };
const ExecuteMooseObjectWarehouse< ArrayAuxKernel > & _nodal_array_aux
Nodal auxiliary kernels acting on array field variables.
QueryCache is a convenient way to construct and pass around (possible partially constructed) warehous...
Definition: TheWarehouse.h:208
const AuxiliarySystem & _aux_sys
The auxiliary system to whom we&#39;ll delegate the boundary variable dependency integrity check...
Specialization of SubProblem for solving nonlinear equations plus auxiliary equations.
A class for storing MooseObjects based on execution flag.
const std::map< dof_id_type, std::vector< dof_id_type > > _node_to_elem_map
Node to element map. Used for determining vertex vs. non-vertex nodes.
void join(const BoundaryNodeIntegrityCheckThread &)
const TheWarehouse::Query & _query
A warehouse query that we will use to obtain user objects for boundary variable dependency integrity ...
const ExecuteMooseObjectWarehouse< AuxKernel > & _nodal_aux
Nodal auxiliary kernels acting on standard field variables.
A storage container for MooseObjects that inherit from SetupInterface.
query_obj query
tbb::split split
vec_type::const_iterator const_iterator
BoundaryNodeIntegrityCheckThread(FEProblemBase &fe_problem, const TheWarehouse::Query &query)
const ExecuteMooseObjectWarehouse< VectorAuxKernel > & _nodal_vec_aux
Nodal auxiliary kernels acting on vector field variables.
A system that holds auxiliary variables.
virtual void onNode(ConstBndNodeRange::const_iterator &node_it) override
Called for each node.