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
GenericPropAlgorithm.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 GenericPropAlgorithm_h
10 #define GenericPropAlgorithm_h
11 
12 #include <Algorithm.h>
13 
14 namespace stk {
15 namespace mesh {
16 class FieldBase;
17 class Part;
18 }
19 }
20 
21 namespace sierra{
22 namespace nalu{
23 
24 class Realm;
25 class PropertyEvaluator;
26 
28 {
29 public:
30 
32  Realm & realm,
33  stk::mesh::Part * part,
34  stk::mesh::FieldBase * prop,
35  PropertyEvaluator *propEvaluator);
36 
37  virtual ~GenericPropAlgorithm() {}
38 
39  virtual void execute();
40 
41  stk::mesh::FieldBase *prop_;
43 
44 };
45 
46 } // namespace nalu
47 } // namespace Sierra
48 
49 #endif
PropertyEvaluator * propEvaluator_
Definition: GenericPropAlgorithm.h:42
Definition: ABLForcingAlgorithm.C:26
virtual ~GenericPropAlgorithm()
Definition: GenericPropAlgorithm.h:37
Definition: Algorithm.h:14
stk::mesh::FieldBase * prop_
Definition: GenericPropAlgorithm.h:41
Definition: GenericPropAlgorithm.h:27
Definition: Algorithm.h:28
Definition: PropertyEvaluator.h:19
Definition: Realm.h:82