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
AssembleOversetSolverConstraintAlgorithm.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 AssembleOversetSolverConstraintAlgorithm_h
10 #define AssembleOversetSolverConstraintAlgorithm_h
11 
12 #include<SolverAlgorithm.h>
13 #include<FieldTypeDef.h>
14 
15 namespace stk {
16 namespace mesh {
17 class Part;
18 class FieldBase;
19 }
20 }
21 
22 namespace sierra{
23 namespace nalu{
24 
25 class Realm;
26 
28 {
29 public:
30 
32  Realm &realm,
33  stk::mesh::Part *part,
34  EquationSystem *eqSystem,
35  stk::mesh::FieldBase *fieldQ);
37  virtual void initialize_connectivity();
38  virtual void execute();
39  virtual void prepare_constraints();
40 
41  // interface assumes that the correct state was provided
42  stk::mesh::FieldBase *fieldQ_;
43 
44  std::vector< const stk::mesh::FieldBase *> ghostFieldVec_;
45 };
46 
47 } // namespace nalu
48 } // namespace Sierra
49 
50 #endif
Definition: ABLForcingAlgorithm.C:26
std::vector< const stk::mesh::FieldBase * > ghostFieldVec_
Definition: AssembleOversetSolverConstraintAlgorithm.h:44
Definition: SolverAlgorithm.h:24
Definition: Algorithm.h:14
Definition: AssembleOversetSolverConstraintAlgorithm.h:27
Base class representation of a PDE.
Definition: EquationSystem.h:46
virtual ~AssembleOversetSolverConstraintAlgorithm()
Definition: AssembleOversetSolverConstraintAlgorithm.h:36
stk::mesh::FieldBase * fieldQ_
Definition: AssembleOversetSolverConstraintAlgorithm.h:42
Definition: Realm.h:82