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
AssembleNodalGradUAlgorithmDriver.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 AssembleNodalGradUAlgorithmDriver_h
10 #define AssembleNodalGradUAlgorithmDriver_h
11 
12 #include<AlgorithmDriver.h>
13 
14 namespace sierra{
15 namespace nalu{
16 
17 class Realm;
18 
20 {
21 public:
22 
24  Realm &realm,
25  const std::string dudxName);
27 
28  virtual void pre_work();
29  virtual void post_work();
30 
31  const std::string dudxName_;
32 };
33 
34 } // namespace nalu
35 } // namespace Sierra
36 
37 #endif
Definition: ABLForcingAlgorithm.C:26
const std::string dudxName_
Definition: AssembleNodalGradUAlgorithmDriver.h:31
AssembleNodalGradUAlgorithmDriver(Realm &realm, const std::string dudxName)
Definition: AssembleNodalGradUAlgorithmDriver.C:35
virtual void post_work()
Definition: AssembleNodalGradUAlgorithmDriver.C:91
virtual ~AssembleNodalGradUAlgorithmDriver()
Definition: AssembleNodalGradUAlgorithmDriver.h:26
virtual void pre_work()
Definition: AssembleNodalGradUAlgorithmDriver.C:48
Definition: AssembleNodalGradUAlgorithmDriver.h:19
Definition: AlgorithmDriver.h:22
Definition: Realm.h:82