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
AssembleMomentumElemOpenSolverAlgorithm.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 AssembleMomentumElemOpenSolverAlgorithm_h
10 #define AssembleMomentumElemOpenSolverAlgorithm_h
11 
12 #include<SolverAlgorithm.h>
13 #include<FieldTypeDef.h>
14 
15 namespace stk {
16 namespace mesh {
17 class Part;
18 }
19 }
20 
21 namespace sierra{
22 namespace nalu{
23 
24 class Realm;
25 class PecletFunction;
26 
28 {
29 public:
30 
32  Realm &realm,
33  stk::mesh::Part *part,
34  EquationSystem *eqSystem);
36  virtual void initialize_connectivity();
37  virtual void execute();
38 
39  const double includeDivU_;
40  const bool meshMotion_;
41 
51 
52  // peclet function specifics
54 };
55 
56 } // namespace nalu
57 } // namespace Sierra
58 
59 #endif
const bool meshMotion_
Definition: AssembleMomentumElemOpenSolverAlgorithm.h:40
Definition: ABLForcingAlgorithm.C:26
ScalarFieldType * density_
Definition: AssembleMomentumElemOpenSolverAlgorithm.h:46
stk::mesh::Field< double, stk::mesh::SimpleArrayTag > GenericFieldType
Definition: FieldTypeDef.h:27
const double includeDivU_
Definition: AssembleMomentumElemOpenSolverAlgorithm.h:39
GenericFieldType * exposedAreaVec_
Definition: AssembleMomentumElemOpenSolverAlgorithm.h:48
VectorFieldType * coordinates_
Definition: AssembleMomentumElemOpenSolverAlgorithm.h:45
Definition: SolverAlgorithm.h:24
Definition: Algorithm.h:14
stk::mesh::Field< double, stk::mesh::Cartesian > VectorFieldType
Definition: FieldTypeDef.h:24
Definition: AssembleMomentumElemOpenSolverAlgorithm.h:27
Base class representation of a PDE.
Definition: EquationSystem.h:46
PecletFunction * pecletFunction_
Definition: AssembleMomentumElemOpenSolverAlgorithm.h:53
stk::mesh::Field< double > ScalarFieldType
Definition: FieldTypeDef.h:19
VectorFieldType * velocityRTM_
Definition: AssembleMomentumElemOpenSolverAlgorithm.h:42
ScalarFieldType * viscosity_
Definition: AssembleMomentumElemOpenSolverAlgorithm.h:47
GenericFieldType * openMassFlowRate_
Definition: AssembleMomentumElemOpenSolverAlgorithm.h:49
VectorFieldType * velocityBc_
Definition: AssembleMomentumElemOpenSolverAlgorithm.h:50
Definition: Realm.h:82
GenericFieldType * dudx_
Definition: AssembleMomentumElemOpenSolverAlgorithm.h:44
Definition: PecletFunction.h:15
VectorFieldType * velocity_
Definition: AssembleMomentumElemOpenSolverAlgorithm.h:43