https://mooseframework.inl.gov
BoundaryElemIntegrityCheckThread.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 "TheWarehouse.h"
15 #include "AuxKernel.h"
16 
17 class AuxiliarySystem;
18 template <typename>
20 template <typename>
22 class IntegratedBCBase;
23 
28 void boundaryIntegrityCheckError(const MooseObject & object,
29  const std::set<MooseVariableFieldBase *> & variables,
30  const BoundaryName & boundary_name);
31 
33 {
34 public:
36 
37  // Splitting Constructor
39 
40  void operator()(const ConstBndElemRange & range);
41 
42  void join(const BoundaryElemIntegrityCheckThread & /*y*/);
43 
44 protected:
47 
50 
53 
56 
59 
63 };
const AuxiliarySystem & _aux_sys
The auxiliary system to whom we&#39;ll delegate the boundary variable dependency integrity check...
BoundaryElemIntegrityCheckThread(FEProblemBase &fe_problem, const TheWarehouse::Query &query)
void join(const BoundaryElemIntegrityCheckThread &)
QueryCache is a convenient way to construct and pass around (possible partially constructed) warehous...
Definition: TheWarehouse.h:208
const TheWarehouse::Query & _query
A warehouse query that we will use to obtain user objects for boundary variable dependency integrity ...
void operator()(const ConstBndElemRange &range)
Specialization of SubProblem for solving nonlinear equations plus auxiliary equations.
A class for storing MooseObjects based on execution flag.
const ExecuteMooseObjectWarehouse< AuxKernel > & _elem_aux
Elemental auxiliary kernels acting on standard field variables.
Every object that can be built by the factory should be derived from this class.
Definition: MooseObject.h:28
void boundaryIntegrityCheckError(const MooseObject &object, const std::set< MooseVariableFieldBase *> &variables, const BoundaryName &boundary_name)
Compose boundary restricted error message for the provided object, variables, and boundary_name if th...
A storage container for MooseObjects that inherit from SetupInterface.
FEProblemBase & _fe_problem
the finite element (or volume) problem
const ExecuteMooseObjectWarehouse< VectorAuxKernel > & _elem_vec_aux
Elemental auxiliary kernels acting on vector field variables.
query_obj query
const ExecuteMooseObjectWarehouse< ArrayAuxKernel > & _elem_array_aux
Elemental auxiliary kernels acting on array field variables.
tbb::split split
Base class for deriving any boundary condition of a integrated type.
A system that holds auxiliary variables.