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
AssembleMomentumEdgeWallFunctionSolverAlgorithm.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 AssembleMomentumEdgeWallFunctionSolverAlgorithm_h
10 #define AssembleMomentumEdgeWallFunctionSolverAlgorithm_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 
27 {
28 public:
29 
31  Realm &realm,
32  stk::mesh::Part *part,
33  EquationSystem *eqSystem);
35  virtual void initialize_connectivity();
36  virtual void execute();
37 
38  const double yplusCrit_;
39  const double elog_;
40  const double kappa_;
41 
49 };
50 
51 } // namespace nalu
52 } // namespace Sierra
53 
54 #endif
VectorFieldType * velocity_
Definition: AssembleMomentumEdgeWallFunctionSolverAlgorithm.h:42
Definition: ABLForcingAlgorithm.C:26
stk::mesh::Field< double, stk::mesh::SimpleArrayTag > GenericFieldType
Definition: FieldTypeDef.h:27
Definition: SolverAlgorithm.h:24
Definition: Algorithm.h:14
stk::mesh::Field< double, stk::mesh::Cartesian > VectorFieldType
Definition: FieldTypeDef.h:24
GenericFieldType * exposedAreaVec_
Definition: AssembleMomentumEdgeWallFunctionSolverAlgorithm.h:46
Base class representation of a PDE.
Definition: EquationSystem.h:46
const double yplusCrit_
Definition: AssembleMomentumEdgeWallFunctionSolverAlgorithm.h:38
stk::mesh::Field< double > ScalarFieldType
Definition: FieldTypeDef.h:19
GenericFieldType * wallNormalDistanceBip_
Definition: AssembleMomentumEdgeWallFunctionSolverAlgorithm.h:48
const double elog_
Definition: AssembleMomentumEdgeWallFunctionSolverAlgorithm.h:39
VectorFieldType * bcVelocity_
Definition: AssembleMomentumEdgeWallFunctionSolverAlgorithm.h:43
Definition: AssembleMomentumEdgeWallFunctionSolverAlgorithm.h:26
const double kappa_
Definition: AssembleMomentumEdgeWallFunctionSolverAlgorithm.h:40
ScalarFieldType * viscosity_
Definition: AssembleMomentumEdgeWallFunctionSolverAlgorithm.h:45
GenericFieldType * wallFrictionVelocityBip_
Definition: AssembleMomentumEdgeWallFunctionSolverAlgorithm.h:47
ScalarFieldType * density_
Definition: AssembleMomentumEdgeWallFunctionSolverAlgorithm.h:44
Definition: Realm.h:82
virtual ~AssembleMomentumEdgeWallFunctionSolverAlgorithm()
Definition: AssembleMomentumEdgeWallFunctionSolverAlgorithm.h:34