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
AssembleNodalGradAlgorithmDriver.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 AssembleNodalGradAlgorithmDriver_h
10 #define AssembleNodalGradAlgorithmDriver_h
11 
12 #include <AlgorithmDriver.h>
13 #include <string>
14 
15 namespace sierra{
16 namespace nalu{
17 
18 class Realm;
19 
21 {
22 public:
23 
25  Realm &realm,
26  const std::string & scalarQName,
27  const std::string & dqdxName);
29 
30  void pre_work();
31  void post_work();
32 
33  const std::string scalarQName_;
34  const std::string dqdxName_;
35 
36 };
37 
38 
39 } // namespace nalu
40 } // namespace Sierra
41 
42 #endif
Definition: ABLForcingAlgorithm.C:26
const std::string scalarQName_
Definition: AssembleNodalGradAlgorithmDriver.h:33
Definition: AssembleNodalGradAlgorithmDriver.h:20
const std::string dqdxName_
Definition: AssembleNodalGradAlgorithmDriver.h:34
AssembleNodalGradAlgorithmDriver(Realm &realm, const std::string &scalarQName, const std::string &dqdxName)
Definition: AssembleNodalGradAlgorithmDriver.C:37
~AssembleNodalGradAlgorithmDriver()
Definition: AssembleNodalGradAlgorithmDriver.C:51
void pre_work()
Definition: AssembleNodalGradAlgorithmDriver.C:60
Definition: AlgorithmDriver.h:22
void post_work()
Definition: AssembleNodalGradAlgorithmDriver.C:102
Definition: Realm.h:82