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
AssembleContinuityInflowSolverAlgorithm.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 AssembleContinuityInflowSolverAlgorithm_h
10 #define AssembleContinuityInflowSolverAlgorithm_h
11 
12 #include <SolverAlgorithm.h>
13 #include <FieldTypeDef.h>
14 
15 namespace sierra{
16 namespace nalu{
17 
18 class Realm;
19 
21 {
22 public:
23 
25  Realm &realm,
26  stk::mesh::Part *part,
27  EquationSystem *eqSystem,
28  bool useShifted = false);
30  virtual void initialize_connectivity();
31  virtual void execute();
32 
33  const bool useShifted_;
34 
38 };
39 
40 } // namespace nalu
41 } // namespace Sierra
42 
43 #endif
const bool useShifted_
Definition: AssembleContinuityInflowSolverAlgorithm.h:33
virtual void initialize_connectivity()
Definition: AssembleContinuityInflowSolverAlgorithm.C:59
Definition: ABLForcingAlgorithm.C:26
stk::mesh::Field< double, stk::mesh::SimpleArrayTag > GenericFieldType
Definition: FieldTypeDef.h:27
virtual void execute()
Definition: AssembleContinuityInflowSolverAlgorithm.C:68
virtual ~AssembleContinuityInflowSolverAlgorithm()
Definition: AssembleContinuityInflowSolverAlgorithm.h:29
Definition: SolverAlgorithm.h:24
stk::mesh::Field< double, stk::mesh::Cartesian > VectorFieldType
Definition: FieldTypeDef.h:24
Base class representation of a PDE.
Definition: EquationSystem.h:46
stk::mesh::Field< double > ScalarFieldType
Definition: FieldTypeDef.h:19
AssembleContinuityInflowSolverAlgorithm(Realm &realm, stk::mesh::Part *part, EquationSystem *eqSystem, bool useShifted=false)
Definition: AssembleContinuityInflowSolverAlgorithm.C:36
ScalarFieldType * densityBC_
Definition: AssembleContinuityInflowSolverAlgorithm.h:37
VectorFieldType * velocityBC_
Definition: AssembleContinuityInflowSolverAlgorithm.h:36
GenericFieldType * exposedAreaVec_
Definition: AssembleContinuityInflowSolverAlgorithm.h:35
Definition: Realm.h:82
Definition: AssembleContinuityInflowSolverAlgorithm.h:20