Nalu
Nalu: a generalized unstructured massively parallel low Mach flow code designed to support a variety of energy applications of interest (most notably Wind ECP) built on the Sierra Toolkit and Trilinos solver Tpetra/Epetra stack. The open source BSD, clause 3 license model has been chosen for the code base. See LICENSE for more information. http://NaluCFD.org
AssembleElemSolverAlgorithm.h
Go to the documentation of this file.
1 /*------------------------------------------------------------------------*/
2 /* Copyright 2014 Sandia Corporation. */
3 /* This software is released under the license detailed */
4 /* in the file, LICENSE, which is located in the top-level Nalu */
5 /* directory structure */
6 /*------------------------------------------------------------------------*/
7 
8 
9 #ifndef AssembleElemSolverAlgorithm_h
10 #define AssembleElemSolverAlgorithm_h
11 
12 #include<SolverAlgorithm.h>
13 #include<ElemDataRequests.h>
14 #include<FieldTypeDef.h>
15 
16 namespace stk {
17 namespace mesh {
18 class Part;
19 class Topology;
20 }
21 }
22 
23 namespace sierra{
24 namespace nalu{
25 
26 class Realm;
27 class MasterElement;
28 
30 {
31 public:
33  Realm &realm,
34  stk::mesh::Part *part,
35  EquationSystem *eqSystem,
36  const stk::topology &theTopo,
37  bool interleaveMeViews = true);
39  virtual void initialize_connectivity();
40  virtual void execute();
41 
42  // topo and master element for this instance
43  stk::topology topo_;
46 
48  int rhsSize_;
49  const bool interleaveMEViews_;
50 };
51 
52 } // namespace nalu
53 } // namespace Sierra
54 
55 #endif
56 
MasterElement * meSCV_
Definition: AssembleElemSolverAlgorithm.h:45
Definition: ABLForcingAlgorithm.C:26
Definition: MasterElement.h:53
Definition: ElemDataRequests.h:66
Definition: SolverAlgorithm.h:24
Definition: Algorithm.h:14
const bool interleaveMEViews_
Definition: AssembleElemSolverAlgorithm.h:49
Base class representation of a PDE.
Definition: EquationSystem.h:46
ElemDataRequests dataNeededByKernels_
Definition: AssembleElemSolverAlgorithm.h:47
MasterElement * meSCS_
Definition: AssembleElemSolverAlgorithm.h:44
Definition: UnitTestMasterElements.C:367
stk::topology topo_
Definition: AssembleElemSolverAlgorithm.h:43
Definition: Realm.h:82
virtual ~AssembleElemSolverAlgorithm()
Definition: AssembleElemSolverAlgorithm.h:38
Definition: AssembleElemSolverAlgorithm.h:29
int rhsSize_
Definition: AssembleElemSolverAlgorithm.h:48