#include <ComputeBoundaryInitialConditionThread.h>
|
| const std::set< VariableName > * | _target_vars = nullptr |
| | the names of target variables for which the initial conditions are applied
|
| |
◆ ComputeBoundaryInitialConditionThread() [1/3]
| ComputeBoundaryInitialConditionThread::ComputeBoundaryInitialConditionThread |
( |
FEProblemBase & |
fe_problem | ) |
|
◆ ComputeBoundaryInitialConditionThread() [2/3]
◆ ComputeBoundaryInitialConditionThread() [3/3]
| ComputeBoundaryInitialConditionThread::ComputeBoundaryInitialConditionThread |
( |
FEProblemBase & |
fe_problem, |
|
|
const std::set< VariableName > * |
target_vars |
|
) |
| |
|
private |
◆ caughtMooseException()
Called if a MooseException is caught anywhere during the computation.
The single input parameter taken is a MooseException object.
Definition at line 56 of file ThreadedNodeLoop.h.
57 {
59
60 std::string what(e.
what());
62 };
static Threads::spin_mutex threaded_node_mutex
virtual void setException(const std::string &message)
Set an exception, which is stored at this point by toggling a member variable in this class,...
virtual const char * what() const
Get out the error message.
FEProblemBase & _fe_problem
◆ join()
◆ keepGoing()
Whether or not the loop should continue.
- Returns
- true to keep going, false to stop.
Definition at line 69 of file ThreadedNodeLoop.h.
virtual bool hasException()
Whether or not an exception has occurred.
◆ onNode() [1/2]
Definition at line 39 of file ComputeBoundaryInitialConditionThread.C.
40{
42
43 Node * node = bnode->
_node;
45
48
50
52 {
54 for (const auto & ic : ics)
55 {
56
57 const auto & var_name = ic->variable().name();
59 continue;
60
62 ic->computeNodal(*node);
63 }
64 }
65}
boundary_id_type BoundaryID
const InitialConditionWarehouse & getInitialConditionWarehouse() const
Return InitialCondition storage.
Warehouse for storing initial conditions.
const std::map< BoundaryID, std::vector< std::shared_ptr< T > > > & getActiveBoundaryObjects(THREAD_ID tid=0) const
bool hasActiveBoundaryObjects(THREAD_ID tid=0) const
processor_id_type processor_id() const
IntRange< T > make_range(T beg, T end)
BoundaryID _bnd_id
boundary id for the node
libMesh::Node * _node
pointer to the node
◆ onNode() [2/2]
◆ operator()()
Definition at line 28 of file ThreadedNodeLoop.h.
95{
96 try
97 {
100
103
104 for (IteratorType nd = range.
begin(); nd != range.
end(); ++nd)
105 {
107 break;
108
110
112 }
113
115 }
117 {
119 }
120}
Provides a way for users to bail out of the current solve.
virtual void printGeneralExecutionInformation() const
Print information about the loop, mostly order of execution of objects.
virtual void postNode(ConstBndNodeRange::const_iterator &node_it)
Called after the node assembly is done (including surface assembling)
virtual void onNode(ConstBndNodeRange::const_iterator &node_it)
Called for each node.
virtual bool keepGoing()
Whether or not the loop should continue.
virtual void pre()
Called before the node range loop.
virtual void post()
Called after the node range loop.
virtual void caughtMooseException(MooseException &e)
Called if a MooseException is caught anywhere during the computation.
const_iterator begin() const
const_iterator end() const
◆ post()
◆ postNode()
Called after the node assembly is done (including surface assembling)
- Parameters
-
Definition at line 50 of file ThreadedNodeLoop.h.
◆ pre()
◆ printGeneralExecutionInformation()
|
|
inlineprotectedvirtualinherited |
◆ FEProblemBase
◆ _fe_problem
◆ _target_vars
| const std::set<VariableName>* ComputeBoundaryInitialConditionThread::_target_vars = nullptr |
|
private |
◆ _tid
The documentation for this class was generated from the following files: