https://mooseframework.inl.gov
Loading...
Searching...
No Matches
ComputeUserObjectsThread.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 "ThreadedElementLoop.h"
14#include "ExecFlagEnum.h"
15#include "AuxiliarySystem.h"
16
17#include "libmesh/elem_range.h"
18
19#include <map>
20
26
27// libMesh forward declarations
28namespace libMesh
29{
30template <typename T>
31class NumericVector;
32}
33
37class ComputeUserObjectsThread : public ThreadedElementLoop<ConstElemRange>
38{
39public:
41 // Splitting Constructor
43
45
46 virtual void onElement(const Elem * elem) override;
47 virtual void onBoundary(const Elem * elem,
48 unsigned int side,
49 BoundaryID bnd_id,
50 const Elem * lower_d_elem = nullptr) override;
51 virtual void onInternalSide(const Elem * elem, unsigned int side) override;
52 virtual void onExternalSide(const Elem * elem, unsigned int side) override;
53 virtual void onInterface(const Elem * elem, unsigned int side, BoundaryID bnd_id) override;
54 virtual void post() override;
55 virtual void subdomainChanged() override;
56
57 void join(const ComputeUserObjectsThread & /*y*/);
58
59protected:
61 void printGeneralExecutionInformation() const override;
62
64 void printBlockExecutionInformation() const override;
65
67 template <typename T>
68 void printVectorOrdering(std::vector<T *> uos, const std::string & name) const;
69
70private:
71 template <typename T>
72 void querySubdomain(Interfaces iface, std::vector<T> & results)
73 {
74 _query_subdomain.queryInto(results, _tid, _subdomain, iface);
75 }
76 template <typename T>
77 void queryBoundary(Interfaces iface, BoundaryID bnd, std::vector<T> & results)
78 {
79 _query_boundary.queryInto(results, _tid, std::make_tuple(bnd, false), iface);
80 }
81
83 {
84 std::deque<MaterialBase *> face_materials;
85 std::deque<MaterialBase *> boundary_materials;
86 };
87
90 SubdomainID subdomain_id);
91
95 std::vector<InternalSideUserObject *> _internal_side_objs;
96 std::vector<InterfaceUserObject *> _interface_user_objects;
97 std::vector<ElementUserObject *> _element_objs;
98 std::vector<ShapeElementUserObject *> _shape_element_objs;
99 std::vector<DomainUserObject *> _domain_objs;
100 std::vector<DomainUserObject *> _all_domain_objs;
101
103
104 // Exact material sets required for each boundary/subdomain pair. This cache is valid only for
105 // this ComputeUserObjectsThread mesh traversal; a new ComputeUserObjectsThread, and therefore a
106 // new cache, is created for each computeUserObjectsInternal() execution.
107 std::map<std::pair<BoundaryID, SubdomainID>, BoundaryMaterialReinitCache>
109};
110
111// determine when we need to run user objects based on whether any initial conditions or aux
112// kernels depend on the user objects. If so we need to run them either before ics, before aux
113// kernels, or after aux kernels (if nothing depends on them). Mark/store this information as
114// attributes in the warehouse for later reference.
115template <typename T>
116void
118 AuxiliarySystem & aux,
119 const ExecFlagEnum & execute_flags,
120 const std::vector<T *> & objs,
121 const std::set<std::string> & ic_deps)
122{
123 // These flags indicate when a user object will be executed for a given exec flag time.
124 // The attributes are set by this function and their values are queried in
125 // FEProblemBase::computeUserObjectsInternal(). If a UO is found to be in one of the
126 // three groups: PRE_IC, PRE_AUX, or POST_AUX, then that UO is executed with that group.
127 //
128 // PRE_IC objects are run before initial conditions during the "INITIAL" exec flag time.
129 // On any other exec flag time, they are run in POST_AUX by default or if there is
130 // an dependency for some exec flag or if force_preaux is set, they are run in
131 // PRE_AUX
132 //
133 // PRE_AUX objects are run before the dependent AuxKernels exec flag
134 //
135 // POST_AUX objects are run after AuxKernels on any given exec flag time, and is the
136 // default group for UOs. Dependencies that would otherwise move a UO into the
137 // PRE_AUX group can be overridden by specifying the parameter force_postaux
138 //
139 // This function attempts to sort a UO based on any ICs or AuxKernels which depend on
140 // it. Alternatively, a user may select which group to execute their object with by
141 // controlling the force_preic, force_preaux and force_postaux input parameters.
142 //
143
144 std::map<T *, std::set<int>> pre_aux_dependencies;
145 std::map<T *, std::set<int>> post_aux_dependencies;
146 // This map is used to indicate, after all dependencies have
147 // been looked through, whether the UO has been flagged to
148 // execute on EXEC_INITIAL, either through a dependency or
149 // because force_preic was indicated. If neither of these
150 // are true, the UO needs to be run in POST_AUX for EXEC_INITIAL
151 std::map<T *, bool> is_pre_ic;
152
153 for (const auto obj : objs)
154 is_pre_ic[obj] = false;
155
156 for (const ExecFlagType & flag : execute_flags.items())
157 {
158 std::set<std::string> depend_objects_aux = aux.getDependObjects(flag);
159 for (const auto obj : objs)
160 {
161 if (depend_objects_aux.count(obj->name()) > 0)
162 {
163 pre_aux_dependencies[obj].insert(flag);
164 if (flag == EXEC_INITIAL)
165 is_pre_ic.at(obj) = true;
166 }
167 else if (flag != EXEC_INITIAL)
168 // default is for UO to be post_aux. If EXEC_INITIAL, check first if UO
169 // will be dependent on IC or have force_preic before deciding to put in
170 // post_aux
171 post_aux_dependencies[obj].insert(flag);
172 }
173 }
174
175 for (const auto obj : objs)
176 {
177 if (ic_deps.count(obj->name()) > 0 ||
178 (obj->isParamValid("force_preic") && obj->template getParam<bool>("force_preic")))
179 {
180 w.update(obj, AttribPreIC(w, true));
181 is_pre_ic.at(obj) = true;
182 }
183
184 if ((obj->isParamValid("force_preaux") && obj->template getParam<bool>("force_preaux")))
185 {
186 post_aux_dependencies[obj].clear();
187 for (const ExecFlagType & flag : execute_flags.items())
188 pre_aux_dependencies[obj].insert(flag);
189 }
190 else if (obj->isParamValid("force_postaux") && obj->template getParam<bool>("force_postaux"))
191 {
192 pre_aux_dependencies[obj].clear();
193 for (const ExecFlagType & flag : execute_flags.items())
194 post_aux_dependencies[obj].insert(flag);
195 }
196 else
197 {
198 // If at this point, then check if the UO has already been set to execute
199 // by either the force_preic param, an IC dependency, or a dependency
200 // already found for exec flage EXEC_INITIAL. If none of these are true,
201 // then is_pre_ic.at(obj) is false and the UO is added to the default
202 // post_aux group for the EXEC_INITIAL flag
203 if (!is_pre_ic.at(obj))
204 post_aux_dependencies[obj].insert(EXEC_INITIAL);
205 }
206 }
207
208 for (auto & item : pre_aux_dependencies)
209 w.update(item.first, AttribPreAux(w, item.second));
210
211 for (auto & item : post_aux_dependencies)
212 w.update(item.first, AttribPostAux(w, item.second));
213}
Interfaces
Definition Attributes.h:21
boundary_id_type BoundaryID
subdomain_id_type SubdomainID
void groupUserObjects(TheWarehouse &w, AuxiliarySystem &aux, const ExecFlagEnum &execute_flags, const std::vector< T * > &objs, const std::set< std::string > &ic_deps)
const ExecFlagType EXEC_INITIAL
Definition Moose.C:31
TODO: delete this later - it is a temporary hack for dealing with inter-system dependencies.
Definition Attributes.h:346
TODO: delete this later - it is a temporary hack for dealing with inter-system dependencies.
Definition Attributes.h:315
TODO: delete this later - it is a temporary hack for dealing with inter-system dependencies.
Definition Attributes.h:296
A system that holds auxiliary variables.
std::set< std::string > getDependObjects(ExecFlagType type)
Get a list of dependent UserObjects for this exec type.
Class for threaded computation of UserObjects.
std::vector< DomainUserObject * > _all_domain_objs
std::vector< ElementUserObject * > _element_objs
virtual void post() override
Called after the element range loop.
virtual void onInternalSide(const Elem *elem, unsigned int side) override
Called when doing internal edge assembling.
const TheWarehouse::Query _query
virtual void onElement(const Elem *elem) override
Assembly of the element (not including surface assembly)
virtual void onInterface(const Elem *elem, unsigned int side, BoundaryID bnd_id) override
Called when doing interface assembling.
virtual void onBoundary(const Elem *elem, unsigned int side, BoundaryID bnd_id, const Elem *lower_d_elem=nullptr) override
Called when doing boundary assembling.
TheWarehouse::QueryCache< AttribThread, AttribBoundaries, AttribInterfaces > _query_boundary
void printBlockExecutionInformation() const override
Print information about the loop, mostly order of execution of particular objects.
std::vector< InterfaceUserObject * > _interface_user_objects
void queryBoundary(Interfaces iface, BoundaryID bnd, std::vector< T > &results)
void printGeneralExecutionInformation() const override
Print general information about the loop, like the ordering of class of objects.
void join(const ComputeUserObjectsThread &)
const BoundaryMaterialReinitCache & getBoundaryMaterialReinitCache(BoundaryID bnd_id, SubdomainID subdomain_id)
Return the exact face and boundary materials required while executing on this boundary.
void printVectorOrdering(std::vector< T * > uos, const std::string &name) const
Format output of vector of UOs.
std::map< std::pair< BoundaryID, SubdomainID >, BoundaryMaterialReinitCache > _boundary_material_reinit_cache
virtual void onExternalSide(const Elem *elem, unsigned int side) override
Called when iterating over external sides (no side neighbor)
std::vector< ShapeElementUserObject * > _shape_element_objs
TheWarehouse::QueryCache< AttribThread, AttribSubdomains, AttribInterfaces > _query_subdomain
void querySubdomain(Interfaces iface, std::vector< T > &results)
std::vector< DomainUserObject * > _domain_objs
virtual void subdomainChanged() override
Called every time the current subdomain changes (i.e.
std::vector< InternalSideUserObject * > _internal_side_objs
This user object allows related evaluations on elements, boundaries, internal sides,...
A MultiMooseEnum object to hold "execute_on" flags.
const std::set< ExecFlagType > & items() const
Reference the all the available items.
Specialization of SubProblem for solving nonlinear equations plus auxiliary equations.
Base class for implementing interface user objects.
Base class for user objects executed on all element sides internal to one or more blocks,...
Class for containing MooseEnum item information.
ElementUserObject class in which the _phi and _grad_phi shape function data is available and correctl...
QueryCache is a convenient way to construct and pass around (possible partially constructed) warehous...
std::vector< T * > & queryInto(std::vector< T * > &results, Args &&... args)
queryInto executes the query and stores the results in the given vector.
TheWarehouse is a container for MooseObjects that allows querying/filtering over various customizeabl...
void update(MooseObject *obj)
update updates the metadata/attribute-info stored for the given object obj that must already exists i...
SubdomainID _subdomain
The subdomain for the current element.
Base class for assembly-like calculations.
query_obj query
The following methods are specializations for using the libMesh::Parallel::packed_range_* routines fo...