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
AssembleNodalGradNonConformalAlgorithm.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 AssembleNodalGradNonConformalAlgorithm_h
10 #define AssembleNodalGradNonConformalAlgorithm_h
11 
12 #include<Algorithm.h>
13 #include<FieldTypeDef.h>
14 
15 // stk
16 #include <stk_mesh/base/Part.hpp>
17 
18 namespace sierra{
19 namespace nalu{
20 
21 class Realm;
22 
24 {
25 public:
26 
28  Realm &realm,
29  stk::mesh::Part *part,
30  ScalarFieldType *scalarQ,
31  VectorFieldType *dqdx);
32 
34 
35  void execute();
36 
39 
42 
43  std::vector< const stk::mesh::FieldBase *> ghostFieldVec_;
44 };
45 
46 } // namespace nalu
47 } // namespace Sierra
48 
49 #endif
Definition: ABLForcingAlgorithm.C:26
stk::mesh::Field< double, stk::mesh::SimpleArrayTag > GenericFieldType
Definition: FieldTypeDef.h:27
std::vector< const stk::mesh::FieldBase * > ghostFieldVec_
Definition: AssembleNodalGradNonConformalAlgorithm.h:43
stk::mesh::Field< double, stk::mesh::Cartesian > VectorFieldType
Definition: FieldTypeDef.h:24
Definition: AssembleNodalGradNonConformalAlgorithm.h:23
void execute()
Definition: AssembleNodalGradNonConformalAlgorithm.C:75
stk::mesh::Field< double > ScalarFieldType
Definition: FieldTypeDef.h:19
ScalarFieldType * dualNodalVolume_
Definition: AssembleNodalGradNonConformalAlgorithm.h:40
~AssembleNodalGradNonConformalAlgorithm()
Definition: AssembleNodalGradNonConformalAlgorithm.C:66
GenericFieldType * exposedAreaVec_
Definition: AssembleNodalGradNonConformalAlgorithm.h:41
VectorFieldType * dqdx_
Definition: AssembleNodalGradNonConformalAlgorithm.h:38
ScalarFieldType * scalarQ_
Definition: AssembleNodalGradNonConformalAlgorithm.h:37
Definition: Algorithm.h:28
Definition: Realm.h:82
AssembleNodalGradNonConformalAlgorithm(Realm &realm, stk::mesh::Part *part, ScalarFieldType *scalarQ, VectorFieldType *dqdx)
Definition: AssembleNodalGradNonConformalAlgorithm.C:40