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
InversePropAlgorithm.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 InversePropAlgorithm_h
10 #define InversePropAlgorithm_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 
27 {
28 public:
29 
31  Realm & realm,
32  stk::mesh::Part * part,
33  stk::mesh::FieldBase * prop,
34  stk::mesh::FieldBase * indVar,
35  const double primary,
36  const double secondary);
37 
38  virtual ~InversePropAlgorithm();
39 
40  virtual void execute();
41 
42  stk::mesh::FieldBase *prop_;
43  stk::mesh::FieldBase *indVar_;
44  const double primary_;
45  const double secondary_;
46 
47 };
48 
49 } // namespace nalu
50 } // namespace Sierra
51 
52 #endif
Definition: ABLForcingAlgorithm.C:26
Definition: Algorithm.h:14
const double secondary_
Definition: InversePropAlgorithm.h:45
Definition: Algorithm.h:28
stk::mesh::FieldBase * indVar_
Definition: InversePropAlgorithm.h:43
Definition: InversePropAlgorithm.h:26
const double primary_
Definition: InversePropAlgorithm.h:44
Definition: Realm.h:82
stk::mesh::FieldBase * prop_
Definition: InversePropAlgorithm.h:42