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