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
AssembleNodalGradBoundaryAlgorithm.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 AssembleNodalGradBoundaryAlgorithm_h
10 #define AssembleNodalGradBoundaryAlgorithm_h
11 
12 #include<Algorithm.h>
13 #include<FieldTypeDef.h>
14 
15 namespace sierra{
16 namespace nalu{
17 
18 class Realm;
19 
21 {
22 public:
24  Realm &realm,
25  stk::mesh::Part *part,
26  ScalarFieldType *scalarQ,
27  VectorFieldType *dqdx,
28  const bool useShifted);
30 
31  virtual void execute();
32 
35  const bool useShifted_;
36 
37 };
38 
39 } // namespace nalu
40 } // namespace Sierra
41 
42 #endif
virtual void execute()
Definition: AssembleNodalGradBoundaryAlgorithm.C:55
Definition: ABLForcingAlgorithm.C:26
VectorFieldType * dqdx_
Definition: AssembleNodalGradBoundaryAlgorithm.h:34
stk::mesh::Field< double, stk::mesh::Cartesian > VectorFieldType
Definition: FieldTypeDef.h:24
Definition: AssembleNodalGradBoundaryAlgorithm.h:20
stk::mesh::Field< double > ScalarFieldType
Definition: FieldTypeDef.h:19
Definition: Algorithm.h:28
AssembleNodalGradBoundaryAlgorithm(Realm &realm, stk::mesh::Part *part, ScalarFieldType *scalarQ, VectorFieldType *dqdx, const bool useShifted)
Definition: AssembleNodalGradBoundaryAlgorithm.C:37
const bool useShifted_
Definition: AssembleNodalGradBoundaryAlgorithm.h:35
Definition: Realm.h:82
ScalarFieldType * scalarQ_
Definition: AssembleNodalGradBoundaryAlgorithm.h:33
virtual ~AssembleNodalGradBoundaryAlgorithm()
Definition: AssembleNodalGradBoundaryAlgorithm.h:29