https://mooseframework.inl.gov
ComputeMortarNodalAuxBndThread.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 #include "ThreadedNodeLoop.h"
13 
14 // Forward declarations
15 template <typename T>
17 class AuxiliarySystem;
18 
22 template <typename AuxKernelType>
24  : public ThreadedNodeLoop<ConstBndNodeRange, ConstBndNodeRange::const_iterator>
25 {
26 public:
29  BoundaryID bnd_id,
30  std::size_t object_container_index);
31  // Splitting Constructor
33 
34  void onNode(ConstBndNodeRange::const_iterator & node_it) override;
35  void join(const ComputeMortarNodalAuxBndThread & /*y*/);
36 
37 protected:
40 
43 
46 
49  const std::size_t _object_container_index;
50 };
void join(const ComputeMortarNodalAuxBndThread &)
This class evaluates a single mortar nodal aux kernel.
ComputeMortarNodalAuxBndThread(FEProblemBase &fe_problem, const MooseObjectWarehouse< AuxKernelType > &storage, BoundaryID bnd_id, std::size_t object_container_index)
A storage container for MooseObjects that inherit from SetupInterface.
Specialization of SubProblem for solving nonlinear equations plus auxiliary equations.
const std::size_t _object_container_index
The index at which we should index the aux kernel containers, e.g.
boundary_id_type BoundaryID
tbb::split split
const MooseObjectWarehouse< AuxKernelType > & _storage
Storage object containing active AuxKernel objects.
vec_type::const_iterator const_iterator
const BoundaryID _bnd_id
The boundary ID for whose nodes we will evaluate the aux kernel on.
AuxiliarySystem & _aux_sys
The auxiliary system.
A system that holds auxiliary variables.
void onNode(ConstBndNodeRange::const_iterator &node_it) override
Called for each node.