www.mooseframework.org
ComputeNodalAuxBcsThread.h
Go to the documentation of this file.
1 //* This file is part of the MOOSE framework
2 //* https://www.mooseframework.org
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 
16 // Forward declarations
17 template <typename T>
19 
20 template <typename AuxKernelType>
22  : public ThreadedNodeLoop<ConstBndNodeRange, ConstBndNodeRange::const_iterator>
23 {
24 public:
26  const MooseObjectWarehouse<AuxKernelType> & storage);
27 
28  // Splitting Constructor
30 
31  virtual void onNode(ConstBndNodeRange::const_iterator & node_it) override;
32 
33  void join(const ComputeNodalAuxBcsThread & /*y*/);
34 
35 protected:
37  void printGeneralExecutionInformation() const override;
38 
40 
43 };
const MooseObjectWarehouse< AuxKernelType > & _storage
Storage object containing active AuxKernel objects.
A storage container for MooseObjects that inherit from SetupInterface.
Specialization of SubProblem for solving nonlinear equations plus auxiliary equations.
ComputeNodalAuxBcsThread(FEProblemBase &fe_problem, const MooseObjectWarehouse< AuxKernelType > &storage)
void join(const ComputeNodalAuxBcsThread &)
tbb::split split
void printGeneralExecutionInformation() const override
Print information about the loop, mostly order of execution of objects.
virtual void onNode(ConstBndNodeRange::const_iterator &node_it) override
Called for each node.
A system that holds auxiliary variables.