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